diff --git a/changelog.md b/changelog.md index d3444ac..88f1fd1 100644 --- a/changelog.md +++ b/changelog.md @@ -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 @@ -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 diff --git a/src/components/Featured.css b/src/components/Featured.css index e11b4fd..b43e33d 100644 --- a/src/components/Featured.css +++ b/src/components/Featured.css @@ -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 { @@ -31,7 +31,7 @@ border-radius: .25rem; padding: .5rem; position: absolute; - left: 1rem; + right: 1rem; top: 1rem; } diff --git a/src/components/Featured.jsx b/src/components/Featured.jsx index bbc3700..3cab496 100644 --- a/src/components/Featured.jsx +++ b/src/components/Featured.jsx @@ -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 = () => { @@ -60,10 +60,9 @@ const Featured = () => {

{featureJSON[live[index]].type}

-

{featureJSON[live[index]].date}

{featureJSON[live[index]].title}

diff --git a/src/data/feature.json b/src/data/feature.json index 8567c80..12c2825 100644 --- a/src/data/feature.json +++ b/src/data/feature.json @@ -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" }