Compare commits

...

4 Commits

Author SHA1 Message Date
TheThing f01fc2ac02 sc: Fix new ABI showing running always false
continuous-integration/appveyor/branch AppVeyor build succeeded Details
2024-04-06 17:36:35 +00:00
Jonatan Nilsson d175782f73 updater: Return latest version, not the latest installed one. Failed installs will be hidden otherwise.
continuous-integration/appveyor/branch AppVeyor build succeeded Details
2022-08-18 11:13:17 +00:00
Jonatan Nilsson bdaf58b7b0 util: Fix bug where application config was still being leaked
continuous-integration/appveyor/branch AppVeyor build succeeded Details
2022-04-02 20:21:46 +00:00
Jonatan Nilsson 7f6d1546f2 util: Do not expose the entire application config, only relevant parts
continuous-integration/appveyor/branch AppVeyor build succeeded Details
2022-04-02 20:13:35 +00:00
4 changed files with 15 additions and 6 deletions

View File

@ -102,7 +102,7 @@ export async function listentoapp(ctx, data) {
if (!app) return
ctx.socket.join('app.' + data.name)
let version = ctx.db.get(ctx.db.data.core[app.name].versions, ctx.db.data.core[app.name].latestInstalled)
let version = ctx.db.data.core[app.name].versions[0]
ctx.socket.emit('app.updatelog', {
name: data.name,
log: version?.log || ctx.db.data.core[app.name].updater

View File

@ -19,13 +19,20 @@ export function safeWrap(log, name, fn) {
export function getConfig(ctx) {
let merge = {
applications: []
applications: [],
name: ctx.db.config.name || '',
title: ctx.db.config.title || '',
}
for (let app of ctx.core.applications) {
merge[app.name] = app.config
merge[app.name] = {
provider: app.config.provider || null,
url: app.config.url || null,
port: app.config.port || null,
scAllowStop: app.config.scAllowStop || null,
}
merge.applications.push(app.name)
}
return defaults(ctx.db.config, merge)
return merge
}
export function getApp(ctx, name, action) {
@ -83,7 +90,7 @@ export function getStatus(ctx) {
active: active,
latestInstalled: installed,
updated: appDb.updater,
running: app.running,
running: app.running || app.ctx.version,
updating: app.updating,
}
}

View File

@ -10,6 +10,8 @@ const core = {
status: {},
}
window.core = core
socket.on('core.config', function(res) {
core.apps = []
let keys = Object.keys(res)

View File

@ -1,6 +1,6 @@
{
"name": "sc-manager",
"version": "2.0.2",
"version": "2.0.6",
"description": "",
"main": "index.js",
"scripts": {