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

Release 1.0.0 version

This commit is contained in:
Rafał Mikrut 2020-10-02 08:58:02 +02:00
parent df065115f6
commit 8d824036b2
8 changed files with 32 additions and 12 deletions

12
Cargo.lock generated
View file

@ -298,14 +298,14 @@ dependencies = [
[[package]]
name = "czkawka_cli"
version = "0.1.4"
version = "1.0.0"
dependencies = [
"czkawka_core",
]
[[package]]
name = "czkawka_core"
version = "0.1.4"
version = "1.0.0"
dependencies = [
"blake3",
"humansize",
@ -313,7 +313,7 @@ dependencies = [
[[package]]
name = "czkawka_gui"
version = "0.1.4"
version = "1.0.0"
dependencies = [
"chrono",
"czkawka_core",
@ -326,7 +326,7 @@ dependencies = [
[[package]]
name = "czkawka_gui_orbtk"
version = "0.1.4"
version = "1.0.0"
dependencies = [
"czkawka_core",
"orbtk",
@ -2145,9 +2145,9 @@ dependencies = [
[[package]]
name = "weezl"
version = "0.1.0"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a3d2f24b6c3aa92fb33279566dbebf1cbe66b03a73f09aa69cf8cf14d2f9feb9"
checksum = "e0e26e7a4d998e3d7949c69444b8b4916bac810da0d3a82ae612c89e952782f4"
[[package]]
name = "winapi"

View file

@ -1,4 +1,9 @@
## Version 0.1.4 dev
## Version 1.0.0 - 02.10.2020r
- Added confirmation button to delete button
- Updated Readme
- Tested a lot app, so I think that it version 1.0.0 can be freely released
## Version 0.1.4 - 01.10.2020r
- Fixes -f default argument
- Added save button to GUI
- Cleaned a little code
@ -10,6 +15,7 @@
- Selective selecting of rows duplicate finder in GUI
- Changed minimum version of GTK to 3.22
- Added save system to GUI
- Added Big, Temporary and Empty folders finder to GUI
## Version 0.1.3 - 27.09.2020r
- Big code refactoring - now is a lot of easier create new modules and maintain old ones

View file

@ -109,7 +109,21 @@ Differences should be more visible when using slower processor or faster disk.
| Non stripped binaries | | X |
| Redundant whitespace | | X |
| Project Activity | High | Very Low |
## Contributions
Contributions to this repository are welcome.
You can help by creating:
- Bug report - memory leaks, unexpected behavior, crashes
- Feature proposals - proposal to change/add/delete some features
- Pull Requests - implementing by yourself a new feature or fixing bugs, but also important is code quality. You should follow the style in other parts of the program, or change it if you create it better.
Code should be clean and pretty formatted (Clippy and fmt are required in each PR).
Code should also be easy to read so please use as much simplest language as possible without magic numbers and variables with strange names, and try to write unit tests/tests if possible.
## Name
Czkawka is a Polish word which means hiccup.
I chose this name because I wanted to hear people speaking other languages pronounce it.

View file

@ -1,6 +1,6 @@
[package]
name = "czkawka_cli"
version = "0.1.4"
version = "1.0.0"
authors = ["Rafał Mikrut <mikrutrafal54@gmail.com>"]
edition = "2018"
description = "CLI frontend of Czkawka"

View file

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

View file

@ -11,4 +11,4 @@ pub mod common_items;
pub mod common_messages;
pub mod common_traits;
pub const CZKAWKA_VERSION: &str = "0.1.4";
pub const CZKAWKA_VERSION: &str = "1.0.0";

View file

@ -1,6 +1,6 @@
[package]
name = "czkawka_gui"
version = "0.1.4"
version = "1.0.0"
authors = ["Rafał Mikrut <mikrutrafal54@gmail.com>"]
edition = "2018"
description = "GTK frontend of Czkawka"

View file

@ -1,6 +1,6 @@
[package]
name = "czkawka_gui_orbtk"
version = "0.1.4"
version = "1.0.0"
authors = ["Rafał Mikrut <mikrutrafal54@gmail.com>"]
edition = "2018"
description = "Orbtk frontend of Czkawka"