From 6a5636749ac65d4c3a19698db056d23519793390 Mon Sep 17 00:00:00 2001 From: freyamade Date: Fri, 9 Aug 2024 01:05:07 +0200 Subject: [PATCH] bump and changelog --- backend/backend/__init__.py | 2 +- frontend/.env | 2 +- frontend/src/components/modals/changelog.vue | 6 ++++-- frontend/src/main.ts | 2 +- 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/backend/backend/__init__.py b/backend/backend/__init__.py index ddf5fea..ca71484 100644 --- a/backend/backend/__init__.py +++ b/backend/backend/__init__.py @@ -2,4 +2,4 @@ from .celery import app as celery_app -VERSION = '20240802' +VERSION = '20240809' diff --git a/frontend/.env b/frontend/.env index 61941ef..533f71d 100644 --- a/frontend/.env +++ b/frontend/.env @@ -1 +1 @@ -VUE_APP_VERSION="20240802" +VUE_APP_VERSION="20240809" diff --git a/frontend/src/components/modals/changelog.vue b/frontend/src/components/modals/changelog.vue index b1bb3a1..04e640b 100644 --- a/frontend/src/components/modals/changelog.vue +++ b/frontend/src/components/modals/changelog.vue @@ -12,8 +12,10 @@

{{ version }}

-
expand_more Fixes & Improvements expand_more
-

Fixed an issue where the "Show Loot Distribution" buttons on the mobile view of the Loot Solver did not cause the popup to appear!

+
expand_more Loot Solver Update expand_more
+

Discovered a major issue with the Loot Solver algorithm being inefficient due to it being super naive.

+

This release improves the algorithm to be more true to the "top N people get items every week".

+

A whole writeup of the methodology is available here, in case anyone wants to have a read!

diff --git a/frontend/src/main.ts b/frontend/src/main.ts index 3ef53cf..df90ab4 100644 --- a/frontend/src/main.ts +++ b/frontend/src/main.ts @@ -30,7 +30,7 @@ Sentry.init({ Vue, dsn: 'https://06f41b525a40497a848fb726f6d03244@o242258.ingest.sentry.io/6180221', logErrors: true, - release: 'savageaim@20240802', + release: 'savageaim@20240809', integrations: [ new Sentry.BrowserTracing({ routingInstrumentation: Sentry.vueRouterInstrumentation(router),