4 Commits

Author SHA1 Message Date
888df6dd66 1.5.2 2024-07-09 16:43:06 +02:00
7ad9612037 fix: add pnpm to pipeline 2024-07-09 16:39:21 +02:00
3f9674b399 fix: pwa prevents layout share url from being loaded 2024-07-09 16:29:28 +02:00
92ba5bcb24 fix: build 2024-07-09 16:28:42 +02:00
7 changed files with 10 additions and 6 deletions

View File

@@ -21,6 +21,10 @@ jobs:
- name: ⏬ Install Python dependencies
run: pip install -r requirements.txt
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 8
- name: 🐉 Use Node.js 18.16.x
uses: actions/setup-node@v3
with:

View File

@@ -1,6 +1,6 @@
{
"name": "charachorder-device-manager",
"version": "1.5.1",
"version": "1.5.2",
"license": "AGPL-3.0-or-later",
"private": true,
"engines": {
@@ -85,4 +85,4 @@
"workbox-window": "^7.1.0"
},
"type": "module"
}
}

View File

@@ -1,6 +1,6 @@
[package]
name = "app"
version = "1.5.1"
version = "1.5.2"
description = "A Tauri App"
authors = ["Thea Schöbl <dev@theaninova.de>"]
license = "AGPL-3"

View File

@@ -6,7 +6,7 @@
"devPath": "http://localhost:5173",
"distDir": "../build"
},
"package": { "productName": "amacc1ng", "version": "1.5.1" },
"package": { "productName": "amacc1ng", "version": "1.5.2" },
"tauri": {
"allowlist": { "all": false },
"bundle": {

View File

@@ -72,7 +72,6 @@ export async function charaFileFromUriComponent<T extends CharaFiles>(
.stream()
.pipeThrough(new DecompressionStream("deflate"));
const actions = new Uint8Array(await new Response(stream).arrayBuffer());
console.log(actions);
file[key] = deserializeActionArray(actions);
}
}

View File

@@ -1,5 +1,5 @@
<script lang="ts">
import { LL } from "../../i18n/i18n-svelte";
import { LL } from "$i18n/i18n-svelte";
</script>
<h1>{$LL.update.TITLE()}</h1>

View File

@@ -52,6 +52,7 @@ export default defineConfig({
"client/**/*.{js,map,css,ico,woff2,csv,png,webp,svg,webmanifest}",
"prerendered/**/*.html",
],
ignoreURLParametersMatching: [/^import$/],
},
manifest: {
name: "CharaChorder Device Manager",