4 Commits

Author SHA1 Message Date
Raymond Li
36874c59e3 Temporarily make chat available 2024-11-19 06:08:37 +00:00
9dc61a3482 fix: exclude pre-rendered ccos update pages 2024-11-08 16:04:50 +01:00
d9183f952a 2.0.2 2024-11-08 15:48:26 +01:00
913a833824 fix: build 2024-11-08 15:47:20 +01:00
6 changed files with 6 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "charachorder-device-manager",
"version": "2.0.1",
"version": "2.0.2",
"license": "AGPL-3.0-or-later",
"private": true,
"engines": {

View File

@@ -1,6 +1,6 @@
[package]
name = "app"
version = "2.0.1"
version = "2.0.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": "2.0.1" },
"package": { "productName": "amacc1ng", "version": "2.0.2" },
"tauri": {
"allowlist": { "all": false },
"bundle": {

View File

@@ -27,9 +27,9 @@
external: true,
},
{ href: "/editor", icon: "edit_document", title: "Editor", wip: true },
{ href: "https://chat.dev.charachorder.io", icon: "chat", title: "Chat", wip: true },
],
/*[
{ href: "/chat", icon: "chat", title: "Chat", wip: true },
{ href: "/plugin", icon: "code", title: "Plugin", wip: true },
],*/
] satisfies {

View File

@@ -2,7 +2,7 @@
let { children } = $props();
</script>
<h1><a href="/firmware">Firmware Updates</a></h1>
<h1><a href="/ccos">Firmware Updates</a></h1>
{@render children()}

View File

@@ -58,6 +58,7 @@ export default defineConfig({
"client/**/*.{js,css,ico,woff2,csv,png,webp,svg,webmanifest}",
"prerendered/**/*.html",
],
globIgnores: ["prerendered/pages/ccos/**/*"],
ignoreURLParametersMatching: [/^import|redirectUrl|loginToken$/],
maximumFileSizeToCacheInBytes: 10 * 1024 * 1024,
},