Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaciras committed Sep 2, 2024
1 parent 8835002 commit 64f59cd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ic-analyzer",
"version": "0.3.0",
"version": "0.3.1",
"description": "Image Compression & Analysis Tool",
"author": "Kaciras <Kaciras@outlook.com>",
"license": "AGPL",
Expand Down
2 changes: 1 addition & 1 deletion web/codecs/heic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const templates: OptionType[] = [
}),
new NumberOption({
id: "complexity",
label: "CPU Effort",
label: "Complexity",
min: 0,
max: 100,
step: 1,
Expand Down
4 changes: 2 additions & 2 deletions web/codecs/mozjpeg.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import { ImageWorker } from "../features/image-worker.ts";
import { BoolOption, EnumOption, NumberOption, OptionType } from "../form/index.ts";

export const name = "MozJPEG";
export const mimeType = "image/jpeg";
export const extension = "jpg";
export const mimeType = jpeg.mimeType;
export const extension = jpeg.extension;

export const defaultOptions = jpeg.defaultOptions;

Expand Down

0 comments on commit 64f59cd

Please sign in to comment.