Skip to content

Commit

Permalink
Change things
Browse files Browse the repository at this point in the history
  • Loading branch information
qarmin committed Oct 6, 2024
1 parent 8cb33b8 commit a0df42a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
9 changes: 6 additions & 3 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

### Breaking changes

- Due removing image_type from image struct, old cache files are incompatible with new version and should be regenerated
- Due to the removal image_type from image struct, old cache files are incompatible with new version and should be
regenerated
from scratch(it uses new name)

### Core
Expand Down Expand Up @@ -36,7 +37,9 @@
- Fixed problem with loading invalid preset - [#1226](https://github.com/qarmin/czkawka/pull/1226)
- Fixed crash when using 8 hash size with small similarity - [#TODO](https://github.com/qarmin/czkawka/pull/TODO)
- Fixed crash when using 8 hash size with small similarity - [#TODO](https://github.com/qarmin/czkawka/pull/TODO)
- Disabling buttons when no files was found - [#TODO](https://github.com/qarmin/czkawka/pull/TODO)
- Disabling buttons when no files were found - [#TODO](https://github.com/qarmin/czkawka/pull/TODO)
- Changed way to close/open panel at bottom - [#TODO](https://github.com/qarmin/czkawka/pull/TODO)
- Modify logo a little - [#TODO](https://github.com/qarmin/czkawka/pull/TODO)

### GTK GUI

Expand All @@ -50,7 +53,7 @@

- Added options to find/remove images by size - [#1255](https://github.com/qarmin/czkawka/pull/1255)
- Fixed and added more input parameters to the application - [#1354](https://github.com/qarmin/czkawka/pull/1354)
- Fixed crash when stopping scan mutliple times - [#1355](https://github.com/qarmin/czkawka/pull/1355)
- Fixed crash when stopping scan multiple times - [#1355](https://github.com/qarmin/czkawka/pull/1355)
- Print results also in debug build - [#1355](https://github.com/qarmin/czkawka/pull/1355)

## Version 7.0.0 - 19.02.2024r
Expand Down
17 changes: 7 additions & 10 deletions krokiet/ui/action_buttons.slint
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,15 @@ import {MainListModel} from "common.slint";
export component VisibilityButton inherits Button {
in-out property <BottomPanelVisibility> button_visibility;
in-out property <BottomPanelVisibility> bottom_panel_visibility;
enabled: bottom_panel_visibility != button-visibility;
checked: bottom_panel_visibility == button-visibility;
height: 30px;
width: 70px;
clicked => {
bottom-panel-visibility = button_visibility;
if (bottom_panel_visibility == button_visibility) {
bottom_panel_visibility = BottomPanelVisibility.NotVisible;
} else {
bottom_panel_visibility = button_visibility;
}
}
}

Expand Down Expand Up @@ -170,14 +174,7 @@ export component ActionButtons inherits HorizontalLayout {
height: parent.height;
button-visibility: BottomPanelVisibility.TextErrors;
bottom_panel_visibility <=> bottom_panel_visibility;
text: "Text";
}

VisibilityButton {
height: parent.height;
button-visibility: BottomPanelVisibility.NotVisible;
bottom_panel_visibility <=> bottom_panel_visibility;
text: "None";
text: "Output";
}
}
}

0 comments on commit a0df42a

Please sign in to comment.