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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## v0.7.1

- Upgrade all dependencies to the latest npm versions, but not
web-test-runner-jasmine because it requires node>=24.0.0, and not jasmine-core
because of web-test-runner-jasmine.

## v0.7.0

- Upgrade to Material 3 Web Components (https://material-web.dev/).
Expand Down
26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "codec_compare",
"version": "0.7.0",
"version": "0.7.1",
"description": "Codec performance comparison tool",
"publisher": "Google LLC",
"author": "Yannis Guyon",
Expand All @@ -13,19 +13,19 @@
"test": "web-test-runner \"src/**/*_test.ts\" --node-resolve"
},
"devDependencies": {
"@types/jasmine": "^5.1.5",
"@types/node": "^22.10.2",
"@types/plotly.js-dist": "npm:@types/plotly.js@^2.12.30",
"@web/dev-server-esbuild": "^1.0.4",
"@web/test-runner": "^0.19.0",
"jasmine-core": "^5.5.0",
"typescript": "^5.7.2",
"vite": "^6.3.2",
"web-test-runner-jasmine": "^0.0.6"
"@types/jasmine": "^6.0.0",
"@types/node": "^25.6.0",
"@types/plotly.js-dist": "npm:@types/plotly.js@^3.0.10",
"@web/dev-server-esbuild": "^1.0.5",
"@web/test-runner": "^0.20.2",
"jasmine-core": "^5.13.0",
"typescript": "^6.0.3",
"vite": "^8.0.10",
"web-test-runner-jasmine": "^0.1.5"
},
"dependencies": {
"@material/web": "^1.4.1",
"lit": "^3.2.1",
"plotly.js-dist": "^2.35.3"
"@material/web": "^2.4.1",
"lit": "^3.3.2",
"plotly.js-dist": "^3.5.1"
}
}
2 changes: 1 addition & 1 deletion src/codec_compare.ts
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ export class CodecCompare extends LitElement {
</p>

<p id="credits">
Codec Compare version 0.7.0<br>
Codec Compare version 0.7.1<br>
<a href="https://github.com/webmproject/codec-compare">
Sources on GitHub
</a>
Expand Down
3 changes: 2 additions & 1 deletion vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ export default defineConfig({
main: resolve(__dirname, 'index.html'),
visualizer: resolve(__dirname, 'visualizer.html')
}
}
},
chunkSizeWarningLimit: 10000
},
publicDir: 'assets'
})