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
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,13 @@ jobs:
--jq ".[] | select(.tag_name==\"$TAG\" and .draft) | .id")
ID=$(printf '%s\n' "$DRAFTS" | head -n1)
if [ -z "$ID" ]; then
# prerelease default: 0.x must not become "latest" by a publish
# click alone (the updater endpoint serves releases/latest).
ID=$(gh api -X POST "repos/$GITHUB_REPOSITORY/releases" \
-f tag_name="$TAG" \
-f name="ZPLab $TAG" \
-f body="See the assets to download this version and install." \
-F draft=true --jq .id)
-F draft=true -F prerelease=true --jq .id)
fi
echo "release_id=$ID" >> "$GITHUB_OUTPUT"

Expand Down
53 changes: 52 additions & 1 deletion src-tauri/THIRD-PARTY-LICENSES-RUST.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ drifts from the locked dependencies.

## Overview

- MIT License (384)
- MIT License (387)
- Unicode License v3 (19)
- Apache License 2.0 (5)
- Mozilla Public License 2.0 (5)
Expand Down Expand Up @@ -2630,6 +2630,22 @@ DEALINGS IN THE SOFTWARE.

Used by:

- [io-kit-sys 0.5.0](https://github.com/jtakakura/io-kit-rs)
````
Copyright (c) 2017-2018 Junji Takakura

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

````

### MIT License

Used by:

- [enumflags2 0.7.12](https://github.com/meithecatte/enumflags2)
````
Copyright (c) 2017-2023 Maik Klein, Maja Kądziołka
Expand Down Expand Up @@ -3095,6 +3111,40 @@ DEALINGS IN THE SOFTWARE.

Used by:

- [mach2 0.5.0](https://github.com/JohnTitor/mach2)
````
Copyright (c) 2019 Nick Fitzgerald, 2021 Yuki Okushi

Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated
documentation files (the "Software"), to deal in the
Software without restriction, including without
limitation the rights to use, copy, modify, merge,
publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software
is furnished to do so, subject to the following
conditions:

The above copyright notice and this permission notice
shall be included in all copies or substantial portions
of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.

````

### MIT License

Used by:

- [tracing-attributes 0.1.31](https://github.com/tokio-rs/tracing)
- [tracing-core 0.1.36](https://github.com/tokio-rs/tracing)
- [tracing 0.1.44](https://github.com/tokio-rs/tracing)
Expand Down Expand Up @@ -4895,6 +4945,7 @@ Used by:
- [futures-lite 2.6.1](https://github.com/smol-rs/futures-lite)
- [itoa 1.0.18](https://github.com/dtolnay/itoa)
- [linux-raw-sys 0.12.1](https://github.com/sunfishcode/linux-raw-sys)
- [nusb 0.2.4](https://github.com/kevinmehall/nusb)
- [once_cell 1.21.4](https://github.com/matklad/once_cell)
- [ordered-stream 0.2.0](https://github.com/danieldg/ordered-stream)
- [parking 2.2.1](https://github.com/smol-rs/parking)
Expand Down
1 change: 1 addition & 0 deletions src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
},
"bundle": {
"active": true,
"targets": ["nsis", "app", "dmg", "appimage", "deb", "rpm"],

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

"app" is not a valid bundle target in Tauri. The supported bundle targets are "all", "deb", "rpm", "appimage", "dmg", "nsis", "msi", and "updater". Including "app" will cause a configuration validation error during the build process.

Suggested change
"targets": ["nsis", "app", "dmg", "appimage", "deb", "rpm"],
"targets": ["nsis", "dmg", "appimage", "deb", "rpm"],

"createUpdaterArtifacts": true,
"publisher": "u8array",
"copyright": "© 2026 u8array",
Expand Down
Loading