Skip to content

Commit

Permalink
Release 3.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
qarmin committed Nov 22, 2021
1 parent 09a34ef commit 4a20263
Show file tree
Hide file tree
Showing 13 changed files with 18 additions and 13 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## Version 3.3.1 - 22.11.2021r


## Version 3.3.0 - 20.11.2021r
- Select files by pressing space key [#415](https://github.com/qarmin/czkawka/pull/415)
- Add additional info to printed errors [#446](https://github.com/qarmin/czkawka/pull/446)
Expand Down
2 changes: 1 addition & 1 deletion czkawka_cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "czkawka_cli"
version = "3.3.0"
version = "3.3.1"
authors = ["Rafał Mikrut <[email protected]>"]
edition = "2018"
description = "CLI frontend of Czkawka"
Expand Down
2 changes: 1 addition & 1 deletion czkawka_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "czkawka_core"
version = "3.3.0"
version = "3.3.1"
authors = ["Rafał Mikrut <[email protected]>"]
edition = "2018"
description = "Core of Czkawka app"
Expand Down
2 changes: 1 addition & 1 deletion czkawka_gui/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "czkawka_gui"
version = "3.3.0"
version = "3.3.1"
authors = ["Rafał Mikrut <[email protected]>"]
edition = "2018"
description = "GTK frontend of Czkawka"
Expand Down
2 changes: 2 additions & 0 deletions czkawka_gui/src/connect_button_delete.rs
Original file line number Diff line number Diff line change
Expand Up @@ -448,6 +448,8 @@ pub fn tree_remove(tree_view: &gtk::TreeView, column_file_name: i32, column_path
// TODO, this maybe isn't required if we will be sure that any header cannot be selected
if model.value(&iter, column_color).get::<String>().unwrap() == MAIN_ROW_COLOR {
selection_rows.push(model.path(&iter).unwrap());
} else {
panic!("Header row shouldn't have selected, selection button");
}
}

Expand Down
2 changes: 1 addition & 1 deletion czkawka_gui/ui/about_dialog.glade
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Author: Rafał Mikrut
<property name="window-position">center</property>
<property name="type-hint">dialog</property>
<property name="program-name">Czkawka</property>
<property name="version">3.3.0</property>
<property name="version">3.3.1</property>
<property name="comments" translatable="yes">2020 - 2021 Rafał Mikrut(qarmin)

This program is free to use and will always be.
Expand Down
2 changes: 1 addition & 1 deletion czkawka_gui/ui/main_window.glade
Original file line number Diff line number Diff line change
Expand Up @@ -2244,7 +2244,7 @@ Author: Rafał Mikrut
<property name="can-focus">True</property>
<property name="editable">False</property>
<property name="has-frame">False</property>
<property name="text" translatable="yes">Czkawka 3.3.0</property>
<property name="text" translatable="yes">Czkawka 3.3.1</property>
<property name="xalign">1</property>
<property name="shadow-type">none</property>
<property name="caps-lock-warning">False</property>
Expand Down
2 changes: 1 addition & 1 deletion data/com.github.qarmin.czkawka.metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
</screenshot>
</screenshots>
<releases>
<release version="3.3.0" date="2021-11-20"/>
<release version="3.3.1" date="2021-11-22"/>
</releases>
<content_rating type="oars-1.0"/>
<developer_name>Rafał Mikrut</developer_name>
Expand Down
2 changes: 1 addition & 1 deletion flatpak/com.github.qarmin.czkawka.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ modules:
- cargo-sources.json
- type: git
url: https://github.com/qarmin/czkawka.git
tag: 3.3.0
tag: 3.3.1
2 changes: 1 addition & 1 deletion misc/cargo/PublishCore.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
NUMBER="3.3.0"
NUMBER="3.3.1"
CZKAWKA_PATH="/home/rafal"

cd "$CZKAWKA_PATH"
Expand Down
2 changes: 1 addition & 1 deletion misc/cargo/PublishOther.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
NUMBER="3.3.0"
NUMBER="3.3.1"
CZKAWKA_PATH="/home/rafal"

cd "$CZKAWKA_PATH"
Expand Down
2 changes: 1 addition & 1 deletion snap/snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: czkawka # you probably want to 'snapcraft register <name>'
base: core20 # the base snap is the execution environment for this snap
version: '3.3.0' # just for humans, typically '1.2+git' or '1.3.2'
version: '3.3.1' # just for humans, typically '1.2+git' or '1.3.2'
summary: Czkawka - fast data cleaner written in Rust # 79 char long summary
description: |
Czkawka is very fast and feature rich cleaner which finds file duplicates, empty folders and files, duplicated music, similar images or the biggest files in selected directories.
Expand Down

0 comments on commit 4a20263

Please sign in to comment.