pinokiod 7.5.17 → 7.5.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/script/index.js +3 -3
- package/server/index.js +1 -1
package/package.json
CHANGED
package/script/index.js
CHANGED
|
@@ -58,9 +58,9 @@ const server = new Server({
|
|
|
58
58
|
return `https://pinokiocomputer.github.io/home/item?uri=${gitRemote}&display=profile`
|
|
59
59
|
},
|
|
60
60
|
site: "https://pinokio.co",
|
|
61
|
-
discover_dark: "https://
|
|
62
|
-
discover_light: "https://
|
|
63
|
-
portal: "https://
|
|
61
|
+
discover_dark: "https://pinokio.co?embed=1&theme=dark",
|
|
62
|
+
discover_light: "https://pinokio.co?embed=1&theme=light",
|
|
63
|
+
portal: "https://pinokio.co",
|
|
64
64
|
docs: "https://pinokio.co/docs",
|
|
65
65
|
install: "https://pinokiocomputer.github.io/program.pinokio.computer/#/?id=install",
|
|
66
66
|
agent: "web",
|
package/server/index.js
CHANGED
|
@@ -48,7 +48,7 @@ const DEFAULT_PORT = 42000
|
|
|
48
48
|
const NOTIFICATION_SOUND_EXTENSIONS = new Set(['.aac', '.flac', '.m4a', '.mp3', '.ogg', '.wav', '.webm'])
|
|
49
49
|
const LOG_STREAM_INITIAL_BYTES = 512 * 1024
|
|
50
50
|
const LOG_STREAM_KEEPALIVE_MS = 25000
|
|
51
|
-
const DEFAULT_REGISTRY_URL = 'https://
|
|
51
|
+
const DEFAULT_REGISTRY_URL = 'https://pinokio.co'
|
|
52
52
|
const LOOPBACK_HOSTS = new Set(['127.0.0.1', 'localhost', '::1', '[::1]'])
|
|
53
53
|
const NON_INTERACTIVE_GIT_ENV = {
|
|
54
54
|
GIT_TERMINAL_PROMPT: "0",
|