Compare commits

..

No commits in common. "master" and "v2.0.4" have entirely different histories.

3 changed files with 3 additions and 3 deletions

View file

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

View file

@ -90,7 +90,7 @@ export function getStatus(ctx) {
active: active, active: active,
latestInstalled: installed, latestInstalled: installed,
updated: appDb.updater, updated: appDb.updater,
running: app.running || app.ctx.version, running: app.running,
updating: app.updating, updating: app.updating,
} }
} }

View file

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