Skip to content

Commit

Permalink
Poprawki
Browse files Browse the repository at this point in the history
  • Loading branch information
qarmin committed Oct 9, 2024
1 parent 020a4e2 commit 1361696
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 11 deletions.
14 changes: 7 additions & 7 deletions czkawka_core/src/bad_extensions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,14 +73,14 @@ const WORKAROUNDS: &[(&str, &str)] = &[
// Games specific extensions - cannot be used here common extensions like zip
("gz", "h3m"), // Heroes 3
("zip", "hashdb"), // Gog
("zip", "c2"), // King of the Dark Age
("bmp", "c2"), // King of the Dark Age
("avi", "c2"), // King of the Dark Age
("exe", "c2"), // King of the Dark Age
("c2", "zip"), // King of the Dark Age
("c2", "bmp"), // King of the Dark Age
("c2", "avi"), // King of the Dark Age
("c2", "exe"), // King of the Dark Age
// Raw images
("nef", "tif"),
("dng", "tif"),
("arw", "tif"),
("tif", "nef"),
("tif", "dng"),
("tif", "arw"),
// Other
("der", "keystore"), // Godot/Android keystore
("exe", "pyd"), // Python/Mingw
Expand Down
5 changes: 2 additions & 3 deletions krokiet/README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
# Krokiet

Krokiet is new Czkawka frontend written in Slint, which uses Rust in opposite to Gtk 4 frontend which uses mostly
C code.
Krokiet is new Czkawka frontend written in Slint.

![Krokiet](https://github.com/qarmin/czkawka/assets/41945903/52628a29-ecd6-4692-9ee4-8a680c889193)
![Krokiet](https://github.com/user-attachments/assets/531cc479-8900-4db6-aa60-598284e7f815)

Different toolkit means different look, limitations and features, so you should not expect same features like in Gtk 4
frontend(but of course I want implement most of the features from other project).
Expand Down
2 changes: 1 addition & 1 deletion krokiet/src/connect_save.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use crate::{Callabler, GuiState, MainWindow};

pub fn connect_save(app: &MainWindow, shared_models: Arc<Mutex<SharedModels>>) {
let a = app.as_weak();
app.global::<Callabler>().on_rename_files(move || {
app.global::<Callabler>().on_save_results(move || {
let app = a.upgrade().expect("Failed to upgrade app :(");
let active_tab = app.global::<GuiState>().get_active_tab();

Expand Down

0 comments on commit 1361696

Please sign in to comment.