@syengup/friday-channel-next 0.0.5 → 0.0.6
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/install.js +3 -3
- package/install.sh +3 -3
- package/package.json +1 -1
package/install.js
CHANGED
|
@@ -178,13 +178,13 @@ log("--------------------------------------------------");
|
|
|
178
178
|
log("Installation complete! Friday Next channel is now active.");
|
|
179
179
|
const BOLD_YELLOW = (s) => `\x1b[1;33m${s}\x1b[0m`;
|
|
180
180
|
|
|
181
|
+
log("");
|
|
182
|
+
log(BOLD_YELLOW("Input the URL and Token below into your FridayNext app to connect."));
|
|
183
|
+
log(BOLD_YELLOW("请将下方 URL 和 Token 输入至 FridayNext App 完成连接。"));
|
|
181
184
|
log("");
|
|
182
185
|
log("Gateway URL: " + BOLD_YELLOW(gatewayUrl));
|
|
183
186
|
log("Bearer Token: " + BOLD_YELLOW(gatewayToken));
|
|
184
187
|
log("");
|
|
185
|
-
log(BOLD_YELLOW("Input the URL and Token above into your FridayNext app to connect."));
|
|
186
|
-
log(BOLD_YELLOW("请将上方 URL 和 Token 输入至 FridayNext App 完成连接。"));
|
|
187
|
-
log("");
|
|
188
188
|
log("This is a LOCAL network URL (bind=" + bindMode + ").");
|
|
189
189
|
log("If you need a public URL for remote access, configure it");
|
|
190
190
|
log("via HTTPS, Tailscale, or a reverse proxy yourself.");
|
package/install.sh
CHANGED
|
@@ -133,12 +133,12 @@ const host = bind === "lan" ? getLanIp() : "127.0.0.1";
|
|
|
133
133
|
|
|
134
134
|
const YB = '\x1b[1;33m', N = '\x1b[0m';
|
|
135
135
|
console.log("");
|
|
136
|
+
console.log(YB + "Input the URL and Token below into your FridayNext app to connect." + N);
|
|
137
|
+
console.log(YB + "请将下方 URL 和 Token 输入至 FridayNext App 完成连接。" + N);
|
|
138
|
+
console.log("");
|
|
136
139
|
console.log("Gateway URL: " + YB + "http://" + host + ":" + port + N);
|
|
137
140
|
console.log("Bearer Token: " + YB + token + N);
|
|
138
141
|
console.log("");
|
|
139
|
-
console.log(YB + "Input the URL and Token above into your FridayNext app to connect." + N);
|
|
140
|
-
console.log(YB + "请将上方 URL 和 Token 输入至 FridayNext App 完成连接。" + N);
|
|
141
|
-
console.log("");
|
|
142
142
|
console.log("This is a LOCAL network URL (bind=" + bind + ").");
|
|
143
143
|
console.log("If you need a public URL for remote access, configure it");
|
|
144
144
|
console.log("via HTTPS, Tailscale, or a reverse proxy yourself.");
|