diff --git a/README.md b/README.md index af9b2e2..82218f7 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,7 @@ - GUI frontend - uses modern GTK 3 and looks similar to FSlint - Rich search option - allows setting absolute included and excluded directories, set of allowed file extensions or excluded items with the `*` wildcard +- No spying - Czkawka does not have access to the Internet, nor does it collect any user information or statistics - Multiple tools to use: - Duplicates - Finds duplicates based on file name, size, hash, hash of just first 1 MB of a file - Empty Folders - Finds empty folders with the help of an advanced algorithm diff --git a/czkawka_gui/src/create_tree_view.rs b/czkawka_gui/src/create_tree_view.rs index ffeb11a..19bedac 100644 --- a/czkawka_gui/src/create_tree_view.rs +++ b/czkawka_gui/src/create_tree_view.rs @@ -19,7 +19,7 @@ pub fn create_tree_view_duplicates(tree_view: &mut gtk::TreeView) { column.pack_start(&renderer, true); column.set_resizable(false); column.set_fixed_width(30); - column.add_attribute(&renderer, "visible", ColumnsDuplicates::VisibleSelectButton as i32); + column.add_attribute(&renderer, "activatable", ColumnsDuplicates::ActivatableSelectButton as i32); column.add_attribute(&renderer, "active", ColumnsDuplicates::ActiveSelectButton as i32); column.add_attribute(&renderer, "cell-background", ColumnsDuplicates::Color as i32); tree_view.append_column(&column); @@ -286,7 +286,7 @@ pub fn create_tree_view_similar_images(tree_view: &mut gtk::TreeView) { column.pack_start(&renderer, true); column.set_resizable(false); column.set_fixed_width(30); - column.add_attribute(&renderer, "visible", ColumnsSimilarImages::VisibleSelectButton as i32); + column.add_attribute(&renderer, "activatable", ColumnsSimilarImages::ActivatableSelectButton as i32); column.add_attribute(&renderer, "active", ColumnsSimilarImages::ActiveSelectButton as i32); column.add_attribute(&renderer, "cell-background", ColumnsSimilarImages::Color as i32); tree_view.append_column(&column); @@ -446,7 +446,7 @@ pub fn create_tree_view_same_music(tree_view: &mut gtk::TreeView) { column.pack_start(&renderer, true); column.set_resizable(false); column.set_fixed_width(30); - column.add_attribute(&renderer, "visible", ColumnsSameMusic::VisibleSelectButton as i32); + column.add_attribute(&renderer, "activatable", ColumnsSameMusic::ActivatableSelectButton as i32); column.add_attribute(&renderer, "active", ColumnsSameMusic::ActiveSelectButton as i32); column.add_attribute(&renderer, "cell-background", ColumnsSameMusic::Color as i32); tree_view.append_column(&column); diff --git a/czkawka_gui/src/help_functions.rs b/czkawka_gui/src/help_functions.rs index e0705cd..7466e32 100644 --- a/czkawka_gui/src/help_functions.rs +++ b/czkawka_gui/src/help_functions.rs @@ -31,7 +31,7 @@ pub enum Message { #[derive(Debug)] pub enum ColumnsDuplicates { // Columns for duplicate treeview - VisibleSelectButton = 0, + ActivatableSelectButton = 0, ActiveSelectButton, Name, Path, @@ -72,7 +72,7 @@ pub enum ColumnsTemporaryFiles { Modification, } pub enum ColumnsSimilarImages { - VisibleSelectButton = 0, + ActivatableSelectButton = 0, ActiveSelectButton, Similarity, Size, @@ -94,7 +94,7 @@ pub enum ColumnsZeroedFiles { Modification, } pub enum ColumnsSameMusic { - VisibleSelectButton = 0, + ActivatableSelectButton = 0, ActiveSelectButton, Size, SizeAsBytes, diff --git a/instructions/Installation.md b/instructions/Installation.md index 6ea581a..a5a5e88 100644 --- a/instructions/Installation.md +++ b/instructions/Installation.md @@ -19,8 +19,7 @@ sudo xbps-install gcc pkg-config alsa-lib-devel ``` ### macOS -Currently, you need to manually install `GTK 3` libraries and the Adwaita theme, because they are dynamically loaded from the OS (*we need -help in using static linking*). One very straight-forward way to do this is by using [Homebrew](https://brew.sh/). Installation in the terminal: +Currently, you need to manually install `GTK 3` libraries and the Adwaita theme, because they are dynamically loaded from the OS (*help in linking statically these things is needed*). One very straight-forward way to do this is by using [Homebrew](https://brew.sh/). Installation in the terminal: ```shell /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" brew install gtk+3 adwaita-icon-theme