Skip to content
Merged

7.3 #97

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions backend/api/management/commands/seed_data/gear/7-dt/7.3.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
- has_accessories: True
has_armour: True
has_weapon: True
item_level: 750
name: 'Augmented Ceremonial'
- has_accessories: False
has_armour: True
has_weapon: False
item_level: 750
name: "War Cloud's"
- has_accessories: False
has_armour: False
has_weapon: True
item_level: 755
name: 'Ageless'
5 changes: 3 additions & 2 deletions backend/api/tests/test_team_member.py
Original file line number Diff line number Diff line change
Expand Up @@ -740,7 +740,7 @@ def setUp(self):
current_necklace=crafted,
current_offhand=crafted,
current_right_ring=crafted,
job_id='RDM',
job_id='DNC',
owner=self.char2,
)

Expand All @@ -755,7 +755,8 @@ def test_update(self):
url = reverse('api:team_member_current_gear_update', kwargs={'team_id': self.team.pk, 'pk': self.tm2.pk})
user = self.char.user
self.client.force_authenticate(user)
self.assertEqual(self.client.post(url).status_code, status.HTTP_204_NO_CONTENT)
response = self.client.post(url)
self.assertEqual(response.status_code, status.HTTP_204_NO_CONTENT, response.content)

# Check the Current Gear after a refresh
self.bis2.refresh_from_db()
Expand Down
2 changes: 1 addition & 1 deletion backend/backend/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

from .celery import app as celery_app

VERSION = '20250602'
VERSION = '20250805'
2 changes: 1 addition & 1 deletion frontend/.env
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VUE_APP_VERSION="20250602"
VUE_APP_VERSION="20250805"
9 changes: 5 additions & 4 deletions frontend/src/components/modals/changelog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,13 @@
</div>
<div class="card-content content">
<h2 class="has-text-primary subtitle">{{ version }}</h2>
<div class="divider"><i class="material-icons icon">expand_more</i> FFXIV 7.25 (again) <i class="material-icons icon">expand_more</i></div>
<p>Didn't initially realise that the armour from OC was worth adding but it's actually pretty decent so...</p>
<div class="divider"><i class="material-icons icon">expand_more</i> FFXIV 7.3 <i class="material-icons icon">expand_more</i></div>
<p>
Added the following new gear added in 7.25;
Added the following new gear added in 7.3;
<ul>
<li>Arcanaut's Armour - Item Level 745</li>
<li>Augmented Ceremonial Weapons, Armour, and Accessories - Item Level 750</li>
<li>War Cloud's Armour - Item Level 750</li>
<li>7.3 Extreme Trial Weapons - Item Level 755</li>
</ul>
</p>
</div>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Sentry.init({
Vue,
dsn: 'https://06f41b525a40497a848fb726f6d03244@o242258.ingest.sentry.io/6180221',
logErrors: true,
release: 'savageaim@20250602',
release: 'savageaim@20250805',
integrations: [
Sentry.browserTracingIntegration(),
Sentry.replayIntegration(),
Expand Down
Loading