Compare commits

..

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

4 changed files with 6 additions and 15 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.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', {
name: data.name,
log: version?.log || ctx.db.data.core[app.name].updater

View file

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

View file

@ -10,8 +10,6 @@ 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.6",
"version": "2.0.2",
"description": "",
"main": "index.js",
"scripts": {