pinokiod 3.53.0 → 3.55.0
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/server/index.js +1 -0
- package/server/public/electron.css +1 -1
- package/server/public/style.css +3 -1
package/package.json
CHANGED
package/server/index.js
CHANGED
|
@@ -3076,6 +3076,7 @@ class Server {
|
|
|
3076
3076
|
this.app.get("/screenshots", ex(async (req, res) => {
|
|
3077
3077
|
let list = this.getPeers()
|
|
3078
3078
|
res.render("screenshots", {
|
|
3079
|
+
current_host: this.kernel.peer.host,
|
|
3079
3080
|
version: this.version,
|
|
3080
3081
|
portal: this.portal,
|
|
3081
3082
|
logo: this.logo,
|
package/server/public/style.css
CHANGED