Compare commits

..

No commits in common. "4b1bdea7edaf8ccb0731a0adca2dcc17375cc990" and "cdf8b10769ffe93a5f7cb577250e745df736b807" have entirely different histories.

3 changed files with 1 additions and 10 deletions

View File

@ -820,8 +820,6 @@ This file tracks completed features, fixes, and milestones.
- ✅ Added unit selector for manual video bitrate entry
- ✅ Reset now restores full default convert settings even with no config file
- ✅ Reset now forces resolution and frame rate back to Source
- ✅ Fixed reset handler scope for convert tabs
- ✅ Restored 25%/33%/50%/75% target size reduction presets
- ✅ Stabilized video seeking and embedded rendering
- ✅ Improved player window positioning
- ✅ Fixed clear video functionality

View File

@ -53,8 +53,6 @@ This file tracks upcoming features, improvements, and known issues.
- Manual video bitrate uses a unit selector (KB/MB/GB)
- Reset restores full default convert settings
- Reset forces resolution/frame rate back to Source
- Reset handler scope fixed for convert tabs
- Target size reduction presets restored (25/33/50/75%)
## Priority Features for dev20+

View File

@ -5283,7 +5283,6 @@ func buildConvertView(state *appState, src *videoSource) fyne.CanvasObject {
bitrateContainer *fyne.Container
targetSizeContainer *fyne.Container
resetConvertDefaults func()
tabs *container.AppTabs
)
var (
updateEncodingControls func()
@ -6208,7 +6207,6 @@ func buildConvertView(state *appState, src *videoSource) fyne.CanvasObject {
srcSizeMB := float64(srcSize) / (1024 * 1024)
// Calculate smart reductions
size25 := int(srcSizeMB * 0.75) // 25% reduction
size33 := int(srcSizeMB * 0.67) // 33% reduction
size50 := int(srcSizeMB * 0.50) // 50% reduction
size75 := int(srcSizeMB * 0.25) // 75% reduction
@ -6224,9 +6222,6 @@ func buildConvertView(state *appState, src *videoSource) fyne.CanvasObject {
if size33 > 15 {
options = append(options, fmt.Sprintf("%dMB (33%% smaller)", size33))
}
if size25 > 20 {
options = append(options, fmt.Sprintf("%dMB (25%% smaller)", size25))
}
// Add common sizes
options = append(options, "25MB", "50MB", "100MB", "200MB", "500MB", "1GB")
@ -6915,7 +6910,7 @@ func buildConvertView(state *appState, src *videoSource) fyne.CanvasObject {
updateQualityVisibility()
}
tabs = container.NewAppTabs(
tabs := container.NewAppTabs(
container.NewTabItem("Simple", simpleScrollBox),
container.NewTabItem("Advanced", advancedScrollBox),
)