Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/rust-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
toolchain: stable
components: clippy,rustfmt
override: true
- uses: Swatinem/rust-cache@v1
- uses: Swatinem/rust-cache@v2
- run: cargo install clippy-sarif sarif-fmt
- name: Print versions
run: |
Expand All @@ -34,6 +34,6 @@ jobs:
run: cargo clippy --all-targets --all-features --message-format=json | clippy-sarif | tee results.sarif | sarif-fmt

- name: Upload SARIF file
uses: github/codeql-action/upload-sarif@v1
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: results.sarif
3 changes: 0 additions & 3 deletions .gitmodules

This file was deleted.

18 changes: 17 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.3.0]

### Added

- New `/rendered` endpoints, rendering the first instance in the requested media type.
- Supported rendered media types are:
- `image/jpeg` (default)
- `image/png`
- Support for the `quality` query parameter to control the compression for lossy formats like JPEG.
- Support for the `window` query parameter for windowing.
- Support for the `viewport` query parameter for cropping and scaling.
- New `/metadata` endpoints for returning metadata for a given DICOM instance.

## [0.2.1]

### Added
Expand Down Expand Up @@ -61,4 +74,7 @@ It includes basic support for QIDO-RS, WADO-RS and STOW-RS for the DIMSE backend
- Implement STOW-RS using the C-STORE protocol

[0.2.0]: https://github.com/UMEssen/DICOM-RST/releases/tag/v0.2.0
[0.2.1]: https://github.com/UMEssen/DICOM-RST/releases/tag/v0.2.1

[0.2.1]: https://github.com/UMEssen/DICOM-RST/releases/tag/v0.2.1

[0.3.0]: https://github.com/UMEssen/DICOM-RST/releases/tag/v0.3.0
Loading
Loading