mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-04 14:46:42 +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",
|
"name": "@kksh/desktop",
|
||||||
"version": "0.1.34",
|
"version": "0.1.35",
|
||||||
"description": "",
|
"description": "",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
@ -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"
|
||||||
},
|
},
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
}
|
}
|
||||||
|
@ -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)
|
||||||
|
@ -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,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user