mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-03 22:26:43 +00:00
Update desktop and API package versions; change development server port and URL
This commit is contained in:
parent
d39ccba92c
commit
22eb6449b7
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@kksh/desktop",
|
||||
"version": "0.1.34",
|
||||
"version": "0.1.35",
|
||||
"description": "",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
|
@ -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"
|
||||
},
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
}
|
||||
|
@ -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)
|
||||
|
@ -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,
|
||||
|
Loading…
x
Reference in New Issue
Block a user