diff --git a/VERSION b/VERSION index dc0208a..91e4a9f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -6.3.1 +6.3.2 diff --git a/play-life-backend/main.go b/play-life-backend/main.go index ae8c538..3a84c2c 100644 --- a/play-life-backend/main.go +++ b/play-life-backend/main.go @@ -4721,8 +4721,8 @@ func calculateGroupsProgress(groups map[int][]float64) GroupsProgress { avg = sum / float64(len(scores)) } - // Для приоритета 2 применяем буст × 1.2, но не более 120% - if priorityVal == 2 { + // Для остальных приоритетов (не 1 и не 2) применяем буст × 1.2, но не более 120% + if priorityVal != 1 && priorityVal != 2 { boosted := avg * 1.2 if boosted > 120.0 { boosted = 120.0 diff --git a/play-life-web/package.json b/play-life-web/package.json index a1254aa..185c976 100644 --- a/play-life-web/package.json +++ b/play-life-web/package.json @@ -1,6 +1,6 @@ { "name": "play-life-web", - "version": "6.3.1", + "version": "6.3.2", "type": "module", "scripts": { "dev": "vite",