From 1bb09ef1488e73dacc81a2d85b0ff27f0e5d5730 Mon Sep 17 00:00:00 2001 From: freyamade Date: Mon, 2 Jun 2025 10:26:38 +0200 Subject: [PATCH] add OC armour as well --- .../api/management/commands/seed_data/gear/7-dt/7.25.yml | 5 +++++ backend/backend/__init__.py | 2 +- frontend/.env | 2 +- frontend/src/components/modals/changelog.vue | 8 ++++---- frontend/src/main.ts | 2 +- 5 files changed, 12 insertions(+), 7 deletions(-) diff --git a/backend/api/management/commands/seed_data/gear/7-dt/7.25.yml b/backend/api/management/commands/seed_data/gear/7-dt/7.25.yml index 349e28b..7cddf27 100644 --- a/backend/api/management/commands/seed_data/gear/7-dt/7.25.yml +++ b/backend/api/management/commands/seed_data/gear/7-dt/7.25.yml @@ -3,3 +3,8 @@ has_weapon: True item_level: 745 name: 'Phantom Penumbrae' +- has_accessories: False + has_armour: True + has_weapon: False + item_level: 745 + name: "Arcanaut's" diff --git a/backend/backend/__init__.py b/backend/backend/__init__.py index f861ef8..ad4893d 100644 --- a/backend/backend/__init__.py +++ b/backend/backend/__init__.py @@ -2,4 +2,4 @@ from .celery import app as celery_app -VERSION = '20250528' +VERSION = '20250602' diff --git a/frontend/.env b/frontend/.env index 7a3f86b..d28e6a8 100644 --- a/frontend/.env +++ b/frontend/.env @@ -1 +1 @@ -VUE_APP_VERSION="20250528" +VUE_APP_VERSION="20250602" diff --git a/frontend/src/components/modals/changelog.vue b/frontend/src/components/modals/changelog.vue index 847689a..79fa316 100644 --- a/frontend/src/components/modals/changelog.vue +++ b/frontend/src/components/modals/changelog.vue @@ -12,14 +12,14 @@

{{ version }}

-
expand_more FFXIV 7.25 - Occult Crescent expand_more
+
expand_more FFXIV 7.25 (again) expand_more
+

Didn't initially realise that the armour from OC was worth adding but it's actually pretty decent so...

- Added the following new types of Gear released in 7.25 alongside Occult Crescent; + Added the following new gear added in 7.25;

-

Enjoy the new relic grind!

diff --git a/frontend/src/main.ts b/frontend/src/main.ts index aafbd1c..6cd68c2 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@20250528', + release: 'savageaim@20250602', integrations: [ Sentry.browserTracingIntegration(), Sentry.replayIntegration(),