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", "name": "@kksh/desktop",
"version": "0.1.34", "version": "0.1.35",
"description": "", "description": "",
"type": "module", "type": "module",
"scripts": { "scripts": {

View File

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

View File

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

View File

@ -2,7 +2,7 @@ import { DenoIo, RPCChannel } from "kkrpc"
// deno-lint-ignore no-explicit-any // deno-lint-ignore no-explicit-any
export function expose(api: Record<string, 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 }) const channel = new RPCChannel(stdio, { expose: api })
return channel return channel
} }

View File

@ -21,7 +21,7 @@ export const breakingChangesVersionCheckpoints = [
const checkpointVersions = breakingChangesVersionCheckpoints.map((c) => c.version) const checkpointVersions = breakingChangesVersionCheckpoints.map((c) => c.version)
const sortedCheckpointVersions = sort(checkpointVersions) 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) { export function isVersionBetween(v: string, start: string, end: string) {
const vCleaned = clean(v) const vCleaned = clean(v)

View File

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