Skip to content

Commit 490f65d

Browse files
authored
Update video duplicate finder and more (#1425)
1 parent 1c99adb commit 490f65d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+2621
-1231
lines changed

.github/workflows/linux_cli.yml

+9
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,15 @@ jobs:
2323
- name: Enable LTO
2424
run: sed -i 's/#lto = "thin"/lto = "thin"/g' Cargo.toml
2525

26+
- name: Build Release with fast_image_resize
27+
run: cargo build --release --bin czkawka_cli --features "fast_image_resize"
28+
29+
- name: Store Linux CLI fast_image_resize
30+
uses: actions/upload-artifact@v4
31+
with:
32+
name: czkawka_cli-${{ runner.os }}-fast_image_resize
33+
path: target/release/czkawka_cli
34+
2635
- name: Build Release
2736
run: cargo build --release --bin czkawka_cli
2837

.github/workflows/linux_cli_eyra.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
# New versions of nightly rust may call new unimplemented in eyra functions, so use const version
2121
- name: Setup rust version
22-
run: rustup default nightly-2024-09-25
22+
run: rustup default nightly-2025-01-01
2323

2424
- name: Add eyra
2525
run: |

.github/workflows/mac.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ jobs:
1919

2020
- name: Install GTK4
2121
run: |
22-
brew link --overwrite python@3.11
22+
brew link --overwrite python@3.13
2323
brew install rust gtk4 libheif || true
24-
brew link --overwrite python@3.11
24+
brew link --overwrite python@3.13
2525
2626
- name: Setup rust version
2727
run: rustup default stable

.github/workflows/minimial_version.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
run: sudo apt update || true; sudo apt install libgtk-4-dev libheif-dev libraw-dev ffmpeg -y
1919

2020
- name: Setup rust version
21-
run: rustup default 1.80.0
21+
run: rustup default 1.82.0
2222

2323
- name: Build
2424
run: |

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,7 @@ krokiet/target
2222
perf.data
2323
perf.data.old
2424
krokiet/ui/test.slint
25+
26+
misc/*/*.lock
27+
misc/*/target/
28+
misc/*/.idea

.rustfmt.toml

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
newline_style = "Unix"
22
max_width = 180
3-
remove_nested_parens = true
43

54
# Enable only with nightly channel via - cargo +nightly fmt
65
imports_granularity = "Module"

0 commit comments

Comments
 (0)