Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/new library #110

Merged
merged 48 commits into from
Sep 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
86a8125
Deleted Benchmarks
SalOne22 Sep 6, 2023
cb1dcc9
Updated dependencies
SalOne22 Sep 6, 2023
49a22c8
Updated readme files
SalOne22 Sep 6, 2023
124b7b3
Deleted all previous library files
SalOne22 Sep 6, 2023
095895c
Added config modules
SalOne22 Sep 6, 2023
3a87c67
Added error module
SalOne22 Sep 6, 2023
6f9d554
Added image module
SalOne22 Sep 6, 2023
90770ac
Added encoder module
SalOne22 Sep 6, 2023
acaee66
Deleted decoder module
SalOne22 Sep 6, 2023
79be34b
Updated library file
SalOne22 Sep 6, 2023
2a2c509
Removed benchmarks
SalOne22 Sep 6, 2023
51f0d4d
Renamed test modules to tests
SalOne22 Sep 6, 2023
36445ea
Updated library for image decoding
SalOne22 Sep 7, 2023
1d535d2
Added more error types
SalOne22 Sep 7, 2023
029fbec
Added image format for decoder
SalOne22 Sep 7, 2023
dfcc908
Added decoder implementation
SalOne22 Sep 7, 2023
e2eeca3
Removed assets
SalOne22 Sep 7, 2023
1880719
Fixed doc tests
SalOne22 Sep 7, 2023
88f6de8
Exported decoder to library
SalOne22 Sep 7, 2023
ef24587
Updated documentation
SalOne22 Sep 7, 2023
890d114
Removed tests
SalOne22 Sep 7, 2023
e3db208
fixed doc tests
SalOne22 Sep 7, 2023
b8088e1
Added tests with exif tags
SalOne22 Sep 7, 2023
1d238cf
Added fix for exif orientation
SalOne22 Sep 7, 2023
287c95c
Added inline for small functions
SalOne22 Sep 7, 2023
17fe1ab
Added decoder tests
SalOne22 Sep 7, 2023
6833bb9
Added jpegxl decoding
SalOne22 Sep 8, 2023
8ceb505
Added jpegxl encoding
SalOne22 Sep 8, 2023
db352fc
Updated readme
SalOne22 Sep 8, 2023
24b5b4b
Updated Readme file
SalOne22 Sep 8, 2023
66d3426
Updated documentation
SalOne22 Sep 8, 2023
0e2036c
Updated workflows
SalOne22 Sep 8, 2023
0b59b1f
Updated issue templates to yml
SalOne22 Sep 8, 2023
06e2c95
Updated contribution guide
SalOne22 Sep 8, 2023
864135f
Removed unused dependencies
SalOne22 Sep 8, 2023
a05e321
Added quantization feature
SalOne22 Sep 8, 2023
e71d18a
Added resizing feature
SalOne22 Sep 8, 2023
1eba6ef
Added oxipng feature
SalOne22 Sep 8, 2023
7fe5821
Added webp feature
SalOne22 Sep 8, 2023
1d0b517
Added avif feature
SalOne22 Sep 8, 2023
9b97279
Added exif feature
SalOne22 Sep 8, 2023
314d095
Added transform feature
SalOne22 Sep 8, 2023
2bfb3b2
Added jxl feature
SalOne22 Sep 8, 2023
52dbf3c
Formatted code
SalOne22 Sep 8, 2023
340e750
Added default features
SalOne22 Sep 8, 2023
1141dd3
Updated rimage ci
SalOne22 Sep 8, 2023
cdb833b
Added nasm installation to workflow
SalOne22 Sep 8, 2023
f35cd3a
Fixed error with fmt
SalOne22 Sep 8, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
33 changes: 0 additions & 33 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

60 changes: 60 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
name: Bug report
description: Create a report to help us improve
title: '[Bug]: <title>'
labels: ['bug']
body:
- type: checkboxes
attributes:
label: Is there an existing issue for this?
description: Please search to see if an issue already exists for the bug you encountered.
options:
- label: I have searched the existing issues
required: true
- type: textarea
attributes:
label: Description
description: A clear and concise description of what the bug is. (e.g., current behavior)
validations:
required: true
- type: textarea
attributes:
label: Expected behavior
description: A clear and concise description of what you expected to happen.
validations:
required: false
- type: dropdown
id: version
attributes:
label: Library Version
description: Specify the version of the library where you encountered the issue
options:
- 0.9.0 (latest)
- 0.8.2
- 0.8.1
- 0.8.0
- 0.7.1
- 0.7.0
- 0.6.0
- < 0.5.1 (old)
validations:
required: false
- type: textarea
attributes:
label: Steps To Reproduce
description: Steps to reproduce the behavior.
placeholder: |
1. In this environment...
2. With this config...
3. Run '...'
4. See error...
validations:
required: false
- type: textarea
attributes:
label: Anything else?
description: |
Links? References? Anything that will give us more context about the issue you are encountering!

Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in.
validations:
required: false
25 changes: 0 additions & 25 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

44 changes: 44 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Feature request
description: Suggest an idea for this project
title: '[Feature]: <title>'
labels: ['enhancement']
body:
- type: textarea
attributes:
label: Description
description: Provide a brief summary of your feature request.
validations:
required: true
- type: textarea
attributes:
label: Problem or Motivation
description: |
Is your feature request related to a problem or a specific need?
Please describe.
validations:
required: false
- type: textarea
attributes:
label: Expected behavior
description: |
A clear and concise description of the desired feature or solution.
Explain what you expect to happen.
validations:
required: false
- type: textarea
attributes:
label: Alternatives Considered
description: |
Provide information about any alternative solutions or features you've thought about.
Discuss different approaches, if any.
validations:
required: false
- type: textarea
attributes:
label: Anything else?
description: |
Links? References? Anything that will give us more context about the issue you are encountering!

Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in.
validations:
required: false
152 changes: 0 additions & 152 deletions .github/workflows/combine-prs.yml

This file was deleted.

Loading
Loading