1
0
Fork 0
mirror of synced 2024-05-03 12:03:22 +12:00

Release version 1.5.1

This commit is contained in:
Rafał Mikrut 2020-12-08 17:51:18 +01:00
parent c1afbe6b92
commit f0f3073f94
9 changed files with 17 additions and 11 deletions

3
.gitignore vendored
View file

@ -4,4 +4,5 @@
*~ *~
*# *#
results*.txt results*.txt
TestSuite* TestSuite*
*.snap

8
Cargo.lock generated
View file

@ -408,7 +408,7 @@ dependencies = [
[[package]] [[package]]
name = "czkawka_cli" name = "czkawka_cli"
version = "1.5.0" version = "1.5.1"
dependencies = [ dependencies = [
"czkawka_core", "czkawka_core",
"structopt", "structopt",
@ -416,7 +416,7 @@ dependencies = [
[[package]] [[package]]
name = "czkawka_core" name = "czkawka_core"
version = "1.5.0" version = "1.5.1"
dependencies = [ dependencies = [
"audiotags", "audiotags",
"bitflags", "bitflags",
@ -433,7 +433,7 @@ dependencies = [
[[package]] [[package]]
name = "czkawka_gui" name = "czkawka_gui"
version = "1.5.0" version = "1.5.1"
dependencies = [ dependencies = [
"chrono", "chrono",
"crossbeam-channel 0.4.4", "crossbeam-channel 0.4.4",
@ -450,7 +450,7 @@ dependencies = [
[[package]] [[package]]
name = "czkawka_gui_orbtk" name = "czkawka_gui_orbtk"
version = "1.5.0" version = "1.5.1"
dependencies = [ dependencies = [
"czkawka_core", "czkawka_core",
"orbtk", "orbtk",

View file

@ -1,3 +1,8 @@
## Version 1.5.1 - 08.12.2020r
- Fix errors in progress bar caused by dividing by 0 - [#109](https://github.com/qarmin/czkawka/pull/109)
- Add option to save file, store settings and load them - [#108](https://github.com/qarmin/czkawka/pull/108)
- Center dialog to current window - [a04](https://github.com/qarmin/czkawka/commit/a047380dbe8aa4d04f9c482364469e21d231fab2)
## Version 1.5.0 - 02.12.2020r ## Version 1.5.0 - 02.12.2020r
- Added progress bar - [#106](https://github.com/qarmin/czkawka/pull/106) - Added progress bar - [#106](https://github.com/qarmin/czkawka/pull/106)
- Removed unused buttons - [#107](https://github.com/qarmin/czkawka/pull/107) - Removed unused buttons - [#107](https://github.com/qarmin/czkawka/pull/107)

View file

@ -1,6 +1,6 @@
[package] [package]
name = "czkawka_cli" name = "czkawka_cli"
version = "1.5.0" version = "1.5.1"
authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"] authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"]
edition = "2018" edition = "2018"
description = "CLI frontend of Czkawka" description = "CLI frontend of Czkawka"

View file

@ -1,6 +1,6 @@
[package] [package]
name = "czkawka_core" name = "czkawka_core"
version = "1.5.0" version = "1.5.1"
authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"] authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"]
edition = "2018" edition = "2018"
description = "Core of Czkawka app" description = "Core of Czkawka app"

View file

@ -1,6 +1,6 @@
[package] [package]
name = "czkawka_gui" name = "czkawka_gui"
version = "1.5.0" version = "1.5.1"
authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"] authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"]
edition = "2018" edition = "2018"
description = "GTK frontend of Czkawka" description = "GTK frontend of Czkawka"

View file

@ -1,6 +1,6 @@
[package] [package]
name = "czkawka_gui_orbtk" name = "czkawka_gui_orbtk"
version = "1.5.0" version = "1.5.1"
authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"] authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"]
edition = "2018" edition = "2018"
description = "Orbtk frontend of Czkawka" description = "Orbtk frontend of Czkawka"

View file

@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
NUMBER="1.5.0" NUMBER="1.5.1"
CZKAWKA_PATH="/home/rafal" CZKAWKA_PATH="/home/rafal"
cd "$CZKAWKA_PATH" cd "$CZKAWKA_PATH"

View file

@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
NUMBER="1.5.0" NUMBER="1.5.1"
CZKAWKA_PATH="/home/rafal" CZKAWKA_PATH="/home/rafal"
cd "$CZKAWKA_PATH" cd "$CZKAWKA_PATH"