Skip to content

Commit

Permalink
Changelog and if
Browse files Browse the repository at this point in the history
  • Loading branch information
qarmin committed Oct 6, 2024
1 parent c5c799d commit 9d2ba04
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:

- name: Prepare files to release
run: |
mv target/x86_64-pc-windows-gnu/release/krokiet.exe windows_krokiet.exe
mv target/x86_64-pc-windows-gnu/release/krokiet.exe windows_krokiet_on_linux.exe
- name: Show console window on windows
run: |
Expand All @@ -62,16 +62,16 @@ jobs:

- name: Prepare files to release
run: |
mv target/x86_64-pc-windows-gnu/release/krokiet.exe windows_krokiet_console.exe
mv target/x86_64-pc-windows-gnu/release/krokiet.exe windows_krokiet_on_linux_console.exe
- name: Release
uses: softprops/action-gh-release@v2
if: ${{ github.ref == 'refs/heads/master' }}
with:
tag_name: "Nightly"
files: |
windows_krokiet.exe
windows_krokiet_console.exe
windows_krokiet_on_linux.exe
windows_krokiet_on_linux_console.exe
token: ${{ secrets.PAT_REPOSITORY }}

krokiet-compiled-on-windows:
Expand Down
5 changes: 5 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@
- Slint 1.8 which Krokiet uses requires femtovg 0.9.2 which broke font
rendering - https://github.com/slint-ui/slint/issues/6298

### CI

- Providing nightly
builds - [#1360](https://github.com/qarmin/czkawka/pull/1360) - https://github.com/qarmin/czkawka/releases/tag/Nightly

### Core

- Removed some unnecessary panics - [#1354](https://github.com/qarmin/czkawka/pull/1354)
Expand Down
6 changes: 3 additions & 3 deletions czkawka_core/src/duplicate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -979,9 +979,9 @@ impl DuplicateFinder {

impl DebugPrint for DuplicateFinder {
fn debug_print(&self) {
// if !cfg!(debug_assertions) {
// return;
// }
if !cfg!(debug_assertions) {
return;
}
println!("---------------DEBUG PRINT---------------");
println!(
"Number of duplicated files by size(in groups) - {} ({})",
Expand Down

0 comments on commit 9d2ba04

Please sign in to comment.