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
TestSuite*
TestSuite*
*.snap

8
Cargo.lock generated
View File

@ -408,7 +408,7 @@ dependencies = [
[[package]]
name = "czkawka_cli"
version = "1.5.0"
version = "1.5.1"
dependencies = [
"czkawka_core",
"structopt",
@ -416,7 +416,7 @@ dependencies = [
[[package]]
name = "czkawka_core"
version = "1.5.0"
version = "1.5.1"
dependencies = [
"audiotags",
"bitflags",
@ -433,7 +433,7 @@ dependencies = [
[[package]]
name = "czkawka_gui"
version = "1.5.0"
version = "1.5.1"
dependencies = [
"chrono",
"crossbeam-channel 0.4.4",
@ -450,7 +450,7 @@ dependencies = [
[[package]]
name = "czkawka_gui_orbtk"
version = "1.5.0"
version = "1.5.1"
dependencies = [
"czkawka_core",
"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
- Added progress bar - [#106](https://github.com/qarmin/czkawka/pull/106)
- Removed unused buttons - [#107](https://github.com/qarmin/czkawka/pull/107)

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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