Skip to content

Commit a677385

Browse files
committed
MSG
1 parent 98612a8 commit a677385

2 files changed

Lines changed: 8 additions & 3 deletions

File tree

Changelog.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,25 @@
33
### Core
44
- Converts println/eprintln into log functions - [#1478](https://github.com/qarmin/czkawka/pull/1478)
55
- Speedup a little cache loading/saving - [#1478](https://github.com/qarmin/czkawka/pull/1478)
6+
- Logging logs also to files - [#1508](https://github.com/qarmin/czkawka/pull/1508)
7+
- Added 4GB memory limit when loading/saving cache and avoiding crashes - [#1508](https://github.com/qarmin/czkawka/pull/1508)
68

79
### GTK Gui
810
- Using newly created icons - uglier, but released under really free under the clear CC BY license - [#1478](https://github.com/qarmin/czkawka/pull/1478)
11+
- Fixed crash when removing outdated cache - [#1508](https://github.com/qarmin/czkawka/pull/1508)
912

1013
### Krokiet
1114
- Ability to select multiple items with mouse and keyboard - [#1478](https://github.com/qarmin/czkawka/pull/1478)
1215
- Added sort buttons - [#1501](https://github.com/qarmin/czkawka/pull/1501)
13-
- Remembering window size - [TODO]
16+
- Remembering window size - [#1508](https://github.com/qarmin/czkawka/pull/1508)
17+
- Added tranlations - [#1508](https://github.com/qarmin/czkawka/pull/1508)
1418

1519
### External
1620
– There is a new, unofficial Tauri-based frontend for Czkawka - [Czkawka Tauri](https://github.com/shixinhuang99/czkawka-tauri)
1721

1822
### CI
1923
- Compilation for 32 bit targets is checked in CI
20-
- Czkawka binaries are now checked if are reproducible(currently they are not, due possible bug in rustc - https://github.com/rust-lang/rust/issues/140061)
24+
- Czkawka binaries are now checked if are reproducible(currently they are not, due possible bug in rustc - https://github.com/kellpossible/cargo-i18n/pull/151)
2125

2226
### Prebuild-binaries
2327
- CI now creates linux binaries on ubuntu 22.04 instead 20.04(some types of builds were build on 24.04)

czkawka_core/src/common.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,7 @@ fn filtering_messages(record: &Record) -> bool {
172172
}
173173
}
174174

175+
#[allow(clippy::print_stdout)]
175176
pub fn setup_logger(disabled_terminal_printing: bool, app_name: &str) {
176177
let terminal_log_level = if disabled_terminal_printing { LevelFilter::Off } else { LevelFilter::Info };
177178
let file_log_level = LevelFilter::Debug;
@@ -184,7 +185,7 @@ pub fn setup_logger(disabled_terminal_printing: bool, app_name: &str) {
184185

185186
let combined_logger = (|| {
186187
let Some(config_cache_path) = get_config_cache_path() else {
187-
warn!("No config cache path configured, using default config folder");
188+
println!("No config cache path configured, using default config folder");
188189
return None;
189190
};
190191

0 commit comments

Comments
 (0)