mirror of
https://github.com/NickeManarin/ScreenToGif.git
synced 2026-04-25 07:05:54 +03:00
[PR #1432] Upgrading KGy SOFT package versions, fixing encoded preview of current frame, zoomable preview #1366
Labels
No labels
copy cats
duplicated
future feature
pull-request
⬜ Accepted
⬜ Completed
⬜ Help Wanted 💪
⬜ In Progress
⬜ Missing Details
⬜ Pending
⬜ Waiting For Answer ⏳
🆕 feature preview
🔷 Bug 🐛
🔷 Out Of Scope
🔷 Out Of Scope
🔷 Question
🔷Enhancement
🔷Enhancement
🔷Invalid / External
🔷Knowledge Base
🔷Won't Fix
🕑 High
🕑 High
🕑 High
🕕 Medium
🕙 Low
🕛 Critical
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/ScreenToGif#1366
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/NickeManarin/ScreenToGif/pull/1432
Author: @koszeggy
Created: 2/1/2026
Status: 🔄 Open
Base:
dev← Head:KGySoftUpgrade📝 Commits (10+)
99784e2Upgrading KGySoft package versions3fd0cdaFixing the binding to update the ExportPanel.CurrentFrame propertyd8b9472KGy SOFT encoder: using the current frame as a preview by defaultcb56425Updating Hungarian resourcesf4201a7Refactoring preview generationef38761Making sure preview is updated even when selected index does not change14bbdc9Making the image preview zoomable in KGy SOFT GIF Encoder settings9c5e4a2Adjusting the quality of the image preview based on the zoom factor6e755e3Constraining max zoom in image preview, redirecting vertical scroll to parent only when self scrollbar is not visible.eb9389aAdding tooltip to ImageViewer in GIF encoder preview📊 Changes
14 files changed (+568 additions, -141 deletions)
View changed files
📝
ScreenToGif.Util/ScreenToGif.Util.csproj(+1 -1)📝
ScreenToGif.ViewModel/EditorViewModel.cs(+10 -1)📝
ScreenToGif.ViewModel/ExportPresets/AnimatedImage/Gif/KGySoftGifPreset.cs(+6 -4)📝
ScreenToGif.ViewModel/ScreenToGif.ViewModel.csproj(+1 -1)📝
ScreenToGif/Resources/Localization/StringResources.en.xaml(+2 -1)📝
ScreenToGif/Resources/Localization/StringResources.hu.xaml(+2 -1)📝
ScreenToGif/ScreenToGif.csproj(+2 -2)➕
ScreenToGif/UserControls/ImageViewer.xaml(+18 -0)➕
ScreenToGif/UserControls/ImageViewer.xaml.cs(+271 -0)📝
ScreenToGif/UserControls/KGySoftGifOptionsPanel.xaml(+8 -2)📝
ScreenToGif/UserControls/KGySoftGifOptionsPanel.xaml.cs(+3 -3)📝
ScreenToGif/ViewModel/KGySoftGifOptionsViewModel.cs(+241 -123)📝
ScreenToGif/Windows/Editor.xaml(+2 -1)📝
ScreenToGif/Windows/Editor.xaml.cs(+1 -1)📄 Description
The following changes have been made:
DataContexttype of a parent binding has been changed some time ago. As part of the fix, I resurrected theEditorViewModel.CurrentIndexproperty, which was out-of-use (its value was always -1, and apparently nothing used this property). Now it's synced with the UI'sFrameListView.SelectedIndex, and triggers the previously broken frame change again. Also, now "Show current frame" is the default setting.ImageViewercontrol with zooming and panning capabilities.Side note:
A couple of times I encountered a random crash from
HwndWrapper.Dispose(I found the workaround you applied for the release build, so I'm not worried too much). Do you have an open issue or discussion for this? I only found the one you filed in the WPF repo, but sadly the conversation is locked for that one.🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.