mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-22 18:02:42 +00:00
Compare commits
4 Commits
2163a63a7c
...
v1.5.2
| Author | SHA1 | Date | |
|---|---|---|---|
|
888df6dd66
|
|||
|
7ad9612037
|
|||
|
3f9674b399
|
|||
|
92ba5bcb24
|
4
.github/workflows/build.yml
vendored
4
.github/workflows/build.yml
vendored
@@ -21,6 +21,10 @@ jobs:
|
|||||||
- name: ⏬ Install Python dependencies
|
- name: ⏬ Install Python dependencies
|
||||||
run: pip install -r requirements.txt
|
run: pip install -r requirements.txt
|
||||||
|
|
||||||
|
- name: Install pnpm
|
||||||
|
uses: pnpm/action-setup@v4
|
||||||
|
with:
|
||||||
|
version: 8
|
||||||
- name: 🐉 Use Node.js 18.16.x
|
- name: 🐉 Use Node.js 18.16.x
|
||||||
uses: actions/setup-node@v3
|
uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "charachorder-device-manager",
|
"name": "charachorder-device-manager",
|
||||||
"version": "1.5.1",
|
"version": "1.5.2",
|
||||||
"license": "AGPL-3.0-or-later",
|
"license": "AGPL-3.0-or-later",
|
||||||
"private": true,
|
"private": true,
|
||||||
"engines": {
|
"engines": {
|
||||||
@@ -85,4 +85,4 @@
|
|||||||
"workbox-window": "^7.1.0"
|
"workbox-window": "^7.1.0"
|
||||||
},
|
},
|
||||||
"type": "module"
|
"type": "module"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "app"
|
name = "app"
|
||||||
version = "1.5.1"
|
version = "1.5.2"
|
||||||
description = "A Tauri App"
|
description = "A Tauri App"
|
||||||
authors = ["Thea Schöbl <dev@theaninova.de>"]
|
authors = ["Thea Schöbl <dev@theaninova.de>"]
|
||||||
license = "AGPL-3"
|
license = "AGPL-3"
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
"devPath": "http://localhost:5173",
|
"devPath": "http://localhost:5173",
|
||||||
"distDir": "../build"
|
"distDir": "../build"
|
||||||
},
|
},
|
||||||
"package": { "productName": "amacc1ng", "version": "1.5.1" },
|
"package": { "productName": "amacc1ng", "version": "1.5.2" },
|
||||||
"tauri": {
|
"tauri": {
|
||||||
"allowlist": { "all": false },
|
"allowlist": { "all": false },
|
||||||
"bundle": {
|
"bundle": {
|
||||||
|
|||||||
@@ -72,7 +72,6 @@ export async function charaFileFromUriComponent<T extends CharaFiles>(
|
|||||||
.stream()
|
.stream()
|
||||||
.pipeThrough(new DecompressionStream("deflate"));
|
.pipeThrough(new DecompressionStream("deflate"));
|
||||||
const actions = new Uint8Array(await new Response(stream).arrayBuffer());
|
const actions = new Uint8Array(await new Response(stream).arrayBuffer());
|
||||||
console.log(actions);
|
|
||||||
file[key] = deserializeActionArray(actions);
|
file[key] = deserializeActionArray(actions);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { LL } from "../../i18n/i18n-svelte";
|
import { LL } from "$i18n/i18n-svelte";
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<h1>{$LL.update.TITLE()}</h1>
|
<h1>{$LL.update.TITLE()}</h1>
|
||||||
|
|||||||
@@ -52,6 +52,7 @@ export default defineConfig({
|
|||||||
"client/**/*.{js,map,css,ico,woff2,csv,png,webp,svg,webmanifest}",
|
"client/**/*.{js,map,css,ico,woff2,csv,png,webp,svg,webmanifest}",
|
||||||
"prerendered/**/*.html",
|
"prerendered/**/*.html",
|
||||||
],
|
],
|
||||||
|
ignoreURLParametersMatching: [/^import$/],
|
||||||
},
|
},
|
||||||
manifest: {
|
manifest: {
|
||||||
name: "CharaChorder Device Manager",
|
name: "CharaChorder Device Manager",
|
||||||
|
|||||||
Reference in New Issue
Block a user