Update desktop and API package versions; change development server port and URL

This commit is contained in:
Huakun Shen 2025-03-18 08:05:20 -04:00
parent d39ccba92c
commit 22eb6449b7
No known key found for this signature in database
6 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@kksh/desktop",
"version": "0.1.34",
"version": "0.1.35",
"description": "",
"type": "module",
"scripts": {

View File

@ -5,7 +5,7 @@
"identifier": "sh.kunkun.desktop",
"build": {
"beforeDevCommand": "pnpm dev",
"devUrl": "http://localhost:1420",
"devUrl": "http://localhost:1566",
"beforeBuildCommand": "pnpm build",
"frontendDist": "../build"
},

View File

@ -14,7 +14,7 @@ export default defineConfig(async () => ({
clearScreen: false,
// 2. tauri expects a fixed port, fail if that port is not available
server: {
port: 1420,
port: 1566,
strictPort: true,
host: host || false,
hmr: host

View File

@ -2,7 +2,7 @@ import { DenoIo, RPCChannel } from "kkrpc"
// deno-lint-ignore no-explicit-any
export function expose(api: Record<string, any>) {
const stdio = new DenoIo(Deno.stdin.readable, Deno.stdout.writable)
const stdio = new DenoIo(Deno.stdin.readable)
const channel = new RPCChannel(stdio, { expose: api })
return channel
}

View File

@ -21,7 +21,7 @@ export const breakingChangesVersionCheckpoints = [
const checkpointVersions = breakingChangesVersionCheckpoints.map((c) => c.version)
const sortedCheckpointVersions = sort(checkpointVersions)
export const version = "0.1.5"
export const version = "0.1.6"
export function isVersionBetween(v: string, start: string, end: string) {
const vCleaned = clean(v)

View File

@ -13,7 +13,7 @@ export function launchNewExtWindow(windowLabel: string, url: string, windowConfi
maxWidth: windowConfig?.maxWidth ?? undefined,
maxHeight: windowConfig?.maxHeight ?? undefined,
resizable: windowConfig?.resizable ?? undefined,
title: windowConfig?.title ?? undefined,
title: windowConfig?.title ?? "Kunkun Extension",
fullscreen: windowConfig?.fullscreen ?? undefined,
focus: windowConfig?.focus ?? undefined,
transparent: windowConfig?.transparent ?? undefined,