Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: silx-kit/myhdf5
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2024.03.26
Choose a base ref
...
head repository: silx-kit/myhdf5
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 10 commits
  • 15 files changed
  • 1 contributor

Commits on Apr 18, 2024

  1. Fix URL encoding of error report for Thunderbird

    axelboc committed Apr 18, 2024

    Verified

    This commit was signed with the committer’s verified signature.
    axelboc Axel Bocciarelli
    Copy the full SHA
    5a3ff6c View commit details
  2. Merge pull request #4 from silx-kit/fix-error-report

    Fix URL encoding of error report for Thunderbird
    axelboc authored Apr 18, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    fd623d1 View commit details

Commits on Apr 19, 2024

  1. Use new H5WasmLocalFileProvider to load local files

    axelboc committed Apr 19, 2024

    Verified

    This commit was signed with the committer’s verified signature.
    axelboc Axel Bocciarelli
    Copy the full SHA
    c5405eb View commit details
  2. Merge pull request #5 from silx-kit/up-h5web

    Use new `H5WasmLocalFileProvider` to load local files
    axelboc authored Apr 19, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    681e72a View commit details

Commits on Jun 3, 2024

  1. Add CSV export

    axelboc committed Jun 3, 2024

    Verified

    This commit was signed with the committer’s verified signature.
    axelboc Axel Bocciarelli
    Copy the full SHA
    744a134 View commit details
  2. Merge pull request #6 from silx-kit/csv-export

    Add CSV export
    axelboc authored Jun 3, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    56f1324 View commit details

Commits on Jun 25, 2024

  1. Upgrade to H5Web 12

    axelboc committed Jun 25, 2024

    Verified

    This commit was signed with the committer’s verified signature.
    axelboc Axel Bocciarelli
    Copy the full SHA
    28a76db View commit details
  2. Merge pull request #7 from silx-kit/up-h5web

    Upgrade to H5Web 12
    axelboc authored Jun 25, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    f631150 View commit details

Commits on Sep 13, 2024

  1. Upgrade H5Web to v13

    axelboc committed Sep 13, 2024

    Verified

    This commit was signed with the committer’s verified signature.
    axelboc Axel Bocciarelli
    Copy the full SHA
    dd92799 View commit details

Commits on Sep 16, 2024

  1. Merge pull request #8 from silx-kit/up-h5web

    Upgrade H5Web to v13
    axelboc authored Sep 16, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    e1e6a2c View commit details
Showing with 5,375 additions and 4,102 deletions.
  1. +1 −1 .github/workflows/ci.yml
  2. +6 −0 .npmrc
  3. +8 −8 package.json
  4. +5,216 −4,060 pnpm-lock.yaml
  5. +3 −2 src/Dropzone.tsx
  6. +1 −1 src/FileErrorFallback.tsx
  7. +12 −8 src/HelpPage.tsx
  8. +36 −0 src/LocalFileViewer.tsx
  9. +13 −8 src/{Viewer.tsx → RemoteFileViewer.tsx}
  10. +8 −3 src/ViewerContainer.tsx
  11. +3 −1 src/main.tsx
  12. +12 −1 src/stores.ts
  13. +48 −4 src/utils.ts
  14. +5 −3 tsconfig.json
  15. +3 −2 vite.config.ts
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -23,7 +23,7 @@ jobs:
- name: Install pnpm ⚙️
uses: pnpm/action-setup@v2
with:
version: 8.x
version: 9.x

- name: Restore cache 📌
uses: actions/cache@v3
6 changes: 6 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# Enforce Node and pnpm versions as specified in `package.json`
engine-strict=true

# Don't check exact pnpm version in `packageManager` field (required by Netlify)
package-manager-strict=false

# Save exact dependency versions in `package.json`
save-prefix=""

16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -11,8 +11,9 @@
},
"engines": {
"node": "20.x",
"pnpm": "8.x"
"pnpm": "9.x"
},
"packageManager": "pnpm@9.0.3",
"type": "module",
"scripts": {
"start": "vite",
@@ -25,8 +26,8 @@
"analyze": "npx source-map-explorer 'build/static/js/*.js'"
},
"dependencies": {
"@h5web/app": "11.1.1",
"@h5web/h5wasm": "11.1.1",
"@h5web/app": "13.0.0",
"@h5web/h5wasm": "13.0.0",
"@react-hookz/web": "15.1.0",
"h5wasm-plugins": "0.0.3",
"immer": "9.0.15",
@@ -45,23 +46,22 @@
"@types/node": "^20.10.5",
"@types/react": "^18.2.31",
"@types/react-dom": "^18.2.14",
"@vitejs/plugin-react": "2.1.0",
"@vitejs/plugin-react": "4.2.1",
"babel-preset-react-app": "10.0.1",
"eslint": "8.56.0",
"eslint-config-galex": "4.5.2",
"npm-run-all": "4.1.5",
"prettier": "3.1.1",
"typescript": "5.0.4",
"vite": "3.1.1",
"vite-plugin-checker": "0.6.2",
"vite": "5.1.6",
"vite-plugin-checker": "0.6.4",
"vite-plugin-eslint": "1.8.1"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"@phenomnomnominal/tsquery>typescript": "5.x",
"eslint-plugin-etc>typescript": "5.x",
"react-aria-menubutton>react": "18.x"
"eslint-plugin-etc>typescript": "5.x"
}
}
}
Loading