From 80800da8395169738c30b388f80e4f284f816292 Mon Sep 17 00:00:00 2001 From: poignatov Date: Sat, 7 Mar 2026 19:35:36 +0300 Subject: [PATCH] =?UTF-8?q?6.3.2:=20=D0=91=D1=83=D1=81=D1=82=20=C3=97=201.?= =?UTF-8?q?2=20=D0=B4=D0=BB=D1=8F=20=D0=B3=D1=80=D1=83=D0=BF=D0=BF=D1=8B?= =?UTF-8?q?=20=D0=BE=D1=81=D1=82=D0=B0=D0=BB=D1=8C=D0=BD=D1=8B=D1=85=20?= =?UTF-8?q?=D0=BF=D1=80=D0=B8=D0=BE=D1=80=D0=B8=D1=82=D0=B5=D1=82=D0=BE?= =?UTF-8?q?=D0=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- VERSION | 2 +- play-life-backend/main.go | 4 ++-- play-life-web/package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) 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",