This commit is contained in:
2026-03-16 17:31:50 -04:00
parent 7d9d86d5cc
commit 3f7579e6be
5 changed files with 6 additions and 6 deletions

View File

@@ -10,7 +10,7 @@
PROJECT_NAME=jama
# Image version to run (set by build.sh, or use 'latest')
JAMA_VERSION=0.9.35
JAMA_VERSION=0.9.36
# App port — the host port Docker maps to the container
PORT=3000

View File

@@ -1,6 +1,6 @@
{
"name": "jama-backend",
"version": "0.9.35",
"version": "0.9.36",
"description": "TeamChat backend server",
"main": "src/index.js",
"scripts": {

View File

@@ -218,8 +218,8 @@ function initDb() {
insertSetting.run('feature_group_manager', 'false');
insertSetting.run('feature_schedule_manager', 'false');
insertSetting.run('app_type', 'JAMA-Chat');
insertSetting.run('team_group_managers', ''); -- JSON array of user_group IDs
insertSetting.run('team_schedule_managers', ''); -- JSON array of user_group IDs
insertSetting.run('team_group_managers', '');
insertSetting.run('team_schedule_managers', '');
// Migration: add hide_admin_tag if upgrading from older version
try {

View File

@@ -13,7 +13,7 @@
# ─────────────────────────────────────────────────────────────
set -euo pipefail
VERSION="${1:-0.9.35}"
VERSION="${1:-0.9.36}"
ACTION="${2:-}"
REGISTRY="${REGISTRY:-}"
IMAGE_NAME="jama"

View File

@@ -1,6 +1,6 @@
{
"name": "jama-frontend",
"version": "0.9.35",
"version": "0.9.36",
"private": true,
"scripts": {
"dev": "vite",