Skip to content

Commit

Permalink
chore: Update image to 0.25
Browse files Browse the repository at this point in the history
  • Loading branch information
foresterre committed Mar 22, 2024
1 parent 4822d5c commit 04dbe63
Show file tree
Hide file tree
Showing 31 changed files with 1,359 additions and 1,259 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
continue-on-error: true
strategy:
matrix:
build: [ubuntu-stable, macos-stable, win-gnu-stable, win-msvc-stable]
build: [ ubuntu-stable, macos-stable, win-gnu-stable, win-msvc-stable ]
include:
# latest rust stable :: ubuntu
- build: ubuntu-stable
Expand All @@ -82,20 +82,20 @@ jobs:
uses: actions/checkout@v2

- name: install_nasm
if: matrix.build != 'win-msvc'
if: matrix.build != 'win-msvc'
uses: ilammy/setup-nasm@v1

# from rav1e
- name: install_nasm_msvc
if: matrix.build == 'win-msvc'
if: matrix.build == 'win-msvc-stable'
run: |
$NASM_VERSION="2.15.05"
$LINK = "https://www.nasm.us/pub/nasm/releasebuilds/$NASM_VERSION/win64"
$NASM_FILE = "nasm-$NASM_VERSION-win64"
curl --ssl-no-revoke -LO "$LINK/$NASM_FILE.zip"
7z e -y "$NASM_FILE.zip" -o"C:\nasm"
echo "C:\nasm" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
# from rav1e
- name: set_path_msvc_linker
if: matrix.build == 'win-msvc-stable'
Expand Down
19 changes: 12 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,17 @@ It can be used to convert between image formats and manipulate images using imag
It aims to include all primary [image](https://github.com/image-rs/image) functionality, and eventually also
support the most prominent [imageproc](https://github.com/image-rs/imageproc) manipulation routines.

The changelog below lists notable changes for [sic](https://github.com/foresterre/sic). It doesn't list most internal changes.
The changelog below lists notable changes for [sic](https://github.com/foresterre/sic). It doesn't list most internal
changes.

## [Unreleased]

[unreleased]: https://github.com/foresterre/sic/compare/v0.22.4...HEAD

### Removed

- Removed experimental flag `--enable-output-format-decider-fallback`

## [0.22.4] - 2023-09-17

### Notable dependency updates
Expand Down Expand Up @@ -125,7 +130,8 @@ This is intended to be the last update before we port sic to `image 0.24`.

### Added

- Added animated images support: it is now possible to load and save all frames, and apply operations on all frames, of animated images
- Added animated images support: it is now possible to load and save all frames, and apply operations on all frames, of
animated images

### Changed

Expand Down Expand Up @@ -165,12 +171,13 @@ This is intended to be the last update before we port sic to `image 0.24`.

- Image script: add `overlay` operation which can be used to draw one image over another
- `--select-frame` now supports images encoded as APNG
- `--no-skip-unsupported-extensions` CLI flag to enumerate all files when using glob based input; not just files with supported extensions

- `--no-skip-unsupported-extensions` CLI flag to enumerate all files when using glob based input; not just files with
supported extensions

### Changed

- When using glob paths, `--glob-input` and `--glob-output` should now be used instead of `--input` and `--output` combined with `--mode glob`
- When using glob paths, `--glob-input` and `--glob-output` should now be used instead of `--input` and `--output`
combined with `--mode glob`
- Glob based input now skips unsupported files by default (disable with `--no-skip-unsupported-extensions`)

### Removed
Expand All @@ -183,7 +190,6 @@ This is intended to be the last update before we port sic to `image 0.24`.

[0.14.0]: https://github.com/foresterre/sic/compare/v0.12.0...v0.14.0


## [0.12.0] - 2020-06-01

### Added
Expand All @@ -201,7 +207,6 @@ This is intended to be the last update before we port sic to `image 0.24`.
- Changed CLI flag `--set-preserve-aspect-ratio` to `--preserve-aspect-ratio`
- Changed CLI flag ` --set-resize-sampling-filter` to `--sampling-filter`


### Fixed

- Folders are now skipped in `glob` mode
Expand Down
Loading

0 comments on commit 04dbe63

Please sign in to comment.