Skip to content

Commit

Permalink
Changelog notes. Some featured style changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
DamonGreenhalgh committed Apr 16, 2022
1 parent fb6aeef commit e89221d
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 38 deletions.
37 changes: 17 additions & 20 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,33 +4,32 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## Unreleased

## [1.2.0] - 2022-03-28
## Released

## [1.2.0] - 2022-04-16

Support for **Final Fantasy XIV** patch 6.1 *Newfound Adventure*.
This release contains various new features and support for **Final Fantasy XIV** patch **6.1** '*Newfound Adventure*'.

### Added

- Added '**Reference Character**' feature. This feature allows users to reference a character. Some systems change their behaviour based on the progress the reference character has made within the game.
- Content that the reference character has not completed will be blurred.
- Current splash art will be associated with reference character expansion progress.
- Added **Achievements** feature. This feature allows users to view a character's achievements within the game.
- Added *completion* metric to mounts, minions, job and achievements(points).
- Added **Splash Art** background.
- Added custom checkbox component.
- Reintroduced character banner at the top of the character page.
- Added **Reference** feature. Users can select a character to reference. The following features can be applied with a valid reference character.
- ***Safe Mode*** - hide activities that the reference character has not yet completed.
- ***Background Parody*** - automatically select the appropriate background based on the reference character's progress in the story.
- Added **Achievements** feature. Displays all achievements aquired by a character.
- Added **Completion** metric to mounts, minions, job and achievements.
- Added multiple **Splash Art** backgrounds to customize the appearance of the app.
- Reintroduced **Profile** feature.
- Added **OCE** servers to server list.
- Added content support for **Final Fantasy XIV** patch **6.1** '*Newfound Adventure*'. New entries have been added to the **Quests** section.
- Added content support for current live events.

### Changed

- Banner component refactor.
- Job item refactor.
- Changed tooltips to now display item level, main stats and bonuses.
- Changed profile to now include currently active job, experience and level.
- Changed job items to show current/max experience points.
- Changed profile page layout.
- Featured component now displays time relevant content (duration/release date)
- Changed server text to now display a diamond next to it.
- Changed **Tooltips** to now display *item level, main stats* and *bonuses*.
- Changed **Profile Display** to now include currently *active job, experience* and *level*.
- Changed **Jobs** to show *current/max* experience points.
- Changed **Page Layout**. Instead of a single page, content is contained within panels.
- Changed **Featured** to now display time relevant content (duration/release date)

### Fixed

Expand All @@ -39,8 +38,6 @@ Support for **Final Fantasy XIV** patch 6.1 *Newfound Adventure*.
- Fixed job level text not displaying the correct colour when at max level.
- Fixed splash element extending beyond the page.

## Released

## [1.1.0] - 2022-03-29

### Added
Expand Down
4 changes: 2 additions & 2 deletions src/components/Featured.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
justify-content: space-between;
align-items: center;
gap: .5rem;
background-image: linear-gradient(170deg, #222229b2, transparent 30%, #212024);
background-image: linear-gradient(200deg, #22222985, transparent, #212024f1);
}

.featured__overlay a {
Expand All @@ -31,7 +31,7 @@
border-radius: .25rem;
padding: .5rem;
position: absolute;
left: 1rem;
right: 1rem;
top: 1rem;
}

Expand Down
11 changes: 5 additions & 6 deletions src/components/Featured.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ import featureJSON from '../data/feature.json';

// Reference to currently live events/relevant content.
const live = [
'event2',
'6.1',
'6.0'
'EVENT_2',
'PATCH_6.1',
'PATCH_6.0'
]

const Featured = () => {
Expand Down Expand Up @@ -60,10 +60,9 @@ const Featured = () => {
</button>
<a href={featureJSON[live[index]].link} />
<h4>{featureJSON[live[index]].type}</h4>
<div className='col text-end' style={{
position: 'absolute',
<div className='col absolute' style={{
bottom: '1rem',
right: '1rem'
left: '1rem'
}}>
<p>{featureJSON[live[index]].date}</p>
<h2>{featureJSON[live[index]].title}</h2>
Expand Down
20 changes: 10 additions & 10 deletions src/data/feature.json
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
{
"6.0": {
"PATCH_6.0": {
"title": "ENDWALKER",
"type": "Expansion",
"type": "New Expansion",
"date": "December 19th 2021",
"link": "https://na.finalfantasyxiv.com/endwalker"
},
"6.1": {
"PATCH_6.1": {
"title": "NEWFOUND ADVENTURE",
"type": "Patch",
"type": "Patch 6.1",
"date": "April 12th 2022",
"link": "https://na.finalfantasyxiv.com/endwalker/patch_6_1/"
},
"event0": {
"EVENT_0": {
"title": "LITTLE LADIES' DAY",
"type": "Event",
"type": "Live Event",
"date": "March 14 - March 31",
"link": "https://na.finalfantasyxiv.com/lodestone/special/2022/Little_Ladies_Day/jsuk7gn8z4"
},
"event1": {
"EVENT_1": {
"title": "MOOGLE TREASURE TROVE",
"type": "Event",
"type": "Live Event",
"date": "March 14 - April 12",
"link": "https://na.finalfantasyxiv.com/lodestone/special/mogmog-collection/202203/dceh8sj926"
},
"event2": {
"EVENT_2": {
"title": "HATCHING TIDE",
"type": "Event",
"type": "Live Event",
"date": "April 13 - April 27",
"link": "https://na.finalfantasyxiv.com/lodestone/special/2022/Hatching_tide/qeng0r6k46"
}
Expand Down

0 comments on commit e89221d

Please sign in to comment.