Skip to content

Commit b3202b7

Browse files
authored
Merge pull request #19 from mx1up/feature/update_screenshots
Feature/update screenshots
2 parents 96fa1aa + 87a7fbf commit b3202b7

6 files changed

Lines changed: 25 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 0.4.0+1 - 2025-11-11
4+
5+
* fix cut-off text in preferences dialog
6+
* updated documentation for new preferences
7+
38
## 0.4.0 - 2025-11-11
49

510
* support --noempty, --cache and --symlinks cli option

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ A graphical user interface front end for `fdupes` cli program.
44

55
[Fdupes](https://github.com/adrianlopezroche/fdupes) is a program to detect duplicate files based on content in an efficient way.
66

7-
![screenshot](gfx/screenshot.png)
7+
![screenshot](gfx/screenshot/screenshot_main.png)
88

99
## Getting Started
1010

@@ -47,6 +47,14 @@ The following actions can be performed:
4747

4848
Recalculates duplicates by pressing the 'Refresh' button top right.
4949

50+
## Preferences
51+
52+
![screenshot](gfx/screenshot/screenshot_prefs.png)
53+
54+
* Skip empty files: uses the `--noempty` option. Empty files are not included in results.
55+
* Use cache: uses the `--cache` option. Builds a cache for faster results on next run.
56+
* Follow symlinks: uses `--symlinks` option.
57+
5058
## Config location
5159

5260
* MacOS: `~/Library/Preferences/be.shibby.fdupes-gui.plist`
270 KB
Loading

lib/presentation/prefs_dialog.dart

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,11 @@ class _PreferencesDialogState extends State<PreferencesDialog> {
4343
mainAxisSize: MainAxisSize.min,
4444
children: [
4545
SwitchListTile(
46-
title: const Text('Skip empty files', softWrap: false),
46+
title: const Text(
47+
'Skip empty files',
48+
softWrap: false,
49+
overflow: TextOverflow.visible,
50+
),
4751
value: skipEmpty,
4852
onChanged: (value) {
4953
setState(() {
@@ -54,7 +58,11 @@ class _PreferencesDialogState extends State<PreferencesDialog> {
5458
),
5559
SwitchListTile(
5660
title: const Text('Use cache'),
57-
subtitle: const Text('fdupes 2.3.0+', softWrap: false),
61+
subtitle: const Text(
62+
'fdupes 2.3.0+',
63+
softWrap: false,
64+
overflow: TextOverflow.visible,
65+
),
5866
value: useCache,
5967
onChanged: (value) {
6068
setState(() {

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: fdupes_gui
22
description: fdupes front-end
33
publish_to: 'none'
4-
version: 0.4.0+9
4+
version: 0.4.0+10
55

66
dependency_overrides:
77
# https://github.com/brendan-duncan/image/pull/732

0 commit comments

Comments
 (0)