Skip to content

Commit

Permalink
Release v1.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
printfn committed Sep 13, 2024
1 parent 4e319cb commit 105812a
Show file tree
Hide file tree
Showing 4 changed files with 89 additions and 77 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v1.0.7 (2024-09-14)

- Update `jxl-oxide-wasm` to v0.9.0

## v1.0.6 (2024-09-07)

- Show bits per pixel in status bar tooltip
Expand Down
140 changes: 70 additions & 70 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 13 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "jpeg-xl",
"displayName": "JPEG XL",
"description": "JPEG XL support in VS Code",
"version": "1.0.6",
"version": "1.0.7",
"publisher": "printfn",
"icon": "images/icon.png",
"engines": {
Expand All @@ -12,7 +12,13 @@
"Visualization",
"Other"
],
"keywords": ["jxl", "jpeg", "jpg", "jpeg-xl", "image"],
"keywords": [
"jxl",
"jpeg",
"jpg",
"jpeg-xl",
"image"
],
"repository": {
"type": "git",
"url": "https://github.com/printfn/jpeg-xl-vscode"
Expand Down Expand Up @@ -50,19 +56,19 @@
"test": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.7",
"@types/mocha": "^10.0.8",
"@types/node": "22.x",
"@types/vscode": "^1.92.0",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"esbuild": "^0.23.1",
"eslint": "^9.10.0",
"npm-run-all": "^4.1.5",
"typescript": "^5.5.4"
"typescript": "^5.6.2"
},
"dependencies": {
"jxl-oxide-wasm": "^0.8.1"
"jxl-oxide-wasm": "^0.9.0"
}
}
2 changes: 2 additions & 0 deletions src/decoder.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
// @ts-expect-error
import init, { JxlImage } from 'jxl-oxide-wasm';
// @ts-expect-error
import module from 'jxl-oxide-wasm/module.wasm';

export type DecodedImage = {
Expand Down

0 comments on commit 105812a

Please sign in to comment.