Skip to content

Commit

Permalink
Add new mode, replace unwraps, change sending progress data (#1354)
Browse files Browse the repository at this point in the history
  • Loading branch information
qarmin authored Sep 26, 2024
1 parent 2a32a52 commit 82cfdde
Show file tree
Hide file tree
Showing 101 changed files with 4,768 additions and 3,601 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linux_cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
linux-cli:
strategy:
matrix:
toolchain: [ stable, 1.75.0 ]
toolchain: [ stable, 1.79.0 ]
type: [ release ]
runs-on: ubuntu-20.04
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux_cli_eyra.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

# New versions of nightly rust may call new unimplemented in eyra functions, so use const version
- name: Setup rust version
run: rustup default nightly-2024-02-06
run: rustup default nightly-2024-09-25

- name: Add eyra
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/linux_gui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
linux-krokiet-gui:
strategy:
matrix:
toolchain: [ stable, 1.75.0 ]
toolchain: [ stable, 1.79.0 ]
type: [ release ]
runs-on: ubuntu-20.04
steps:
Expand All @@ -39,7 +39,7 @@ jobs:
linux-krokiet-gui-heif:
strategy:
matrix:
toolchain: [ stable, 1.75.0 ]
toolchain: [ stable, 1.79.0 ]
type: [ release ]
runs-on: ubuntu-22.04
steps:
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
linux-gui:
strategy:
matrix:
toolchain: [ stable, 1.75.0 ]
toolchain: [ stable, 1.79.0 ]
type: [ release ]
runs-on: ubuntu-22.04
steps:
Expand Down
49 changes: 25 additions & 24 deletions .github/workflows/mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,27 +59,28 @@ jobs:
path: target/release/krokiet
if: ${{ matrix.type == 'release' }}

- name: Build Release Heif
run: cargo build --release --features heif
if: ${{ matrix.type == 'release'}}

- name: Store MacOS CLI Heif
uses: actions/upload-artifact@v4
with:
name: czkawka_cli-${{ runner.os }}-${{ matrix.toolchain }}-heif
path: target/release/czkawka_cli
if: ${{ matrix.type == 'release' }}

- name: Store MacOS GUI Heif
uses: actions/upload-artifact@v4
with:
name: czkawka_gui-${{ runner.os }}-${{ matrix.toolchain }}-heif
path: target/release/czkawka_gui
if: ${{ matrix.type == 'release' }}

- name: Store MacOS Krokiet Heif
uses: actions/upload-artifact@v4
with:
name: krokiet-${{ runner.os }}-${{ matrix.toolchain }}-heif
path: target/release/krokiet
if: ${{ matrix.type == 'release' }}
# TODO - compilation is broken, not sure why
# - name: Build Release Heif
# run: cargo build --release --features heif
# if: ${{ matrix.type == 'release'}}
#
# - name: Store MacOS CLI Heif
# uses: actions/upload-artifact@v4
# with:
# name: czkawka_cli-${{ runner.os }}-${{ matrix.toolchain }}-heif
# path: target/release/czkawka_cli
# if: ${{ matrix.type == 'release' }}
#
# - name: Store MacOS GUI Heif
# uses: actions/upload-artifact@v4
# with:
# name: czkawka_gui-${{ runner.os }}-${{ matrix.toolchain }}-heif
# path: target/release/czkawka_gui
# if: ${{ matrix.type == 'release' }}
#
# - name: Store MacOS Krokiet Heif
# uses: actions/upload-artifact@v4
# with:
# name: krokiet-${{ runner.os }}-${{ matrix.toolchain }}-heif
# path: target/release/krokiet
# if: ${{ matrix.type == 'release' }}
Loading

0 comments on commit 82cfdde

Please sign in to comment.