diff --git a/assets/gfx/sprites.t3s b/assets/gfx/sprites.t3s index cc426c9..e9f605f 100644 --- a/assets/gfx/sprites.t3s +++ b/assets/gfx/sprites.t3s @@ -18,7 +18,6 @@ sprites/wifi/wifi_3.png sprites/cancel.png sprites/checked.png sprites/delete.png -sprites/description.png sprites/download.png sprites/info.png sprites/installed.png @@ -29,6 +28,7 @@ sprites/langs/zh-CN.png sprites/langs/zh-TW.png sprites/list.png sprites/noIcon.png +sprites/notes.png sprites/qr_code.png sprites/queue0.png sprites/queue1.png diff --git a/assets/gfx/sprites/description.png b/assets/gfx/sprites/description.png deleted file mode 100644 index c11078e..0000000 Binary files a/assets/gfx/sprites/description.png and /dev/null differ diff --git a/include/screens/mainScreen.hpp b/include/screens/mainScreen.hpp index 213c13c..4019d67 100644 --- a/include/screens/mainScreen.hpp +++ b/include/screens/mainScreen.hpp @@ -37,7 +37,7 @@ 4: Sorting. 5: Settings / Credits(?). 6: Screenshot Menu. - 7: Long Description. + 7: Release Notes. */ class MainScreen : public Screen { diff --git a/include/store/store.hpp b/include/store/store.hpp index 3501251..c6de917 100644 --- a/include/store/store.hpp +++ b/include/store/store.hpp @@ -53,7 +53,7 @@ class Store { std::string GetFileTypes(int index, const std::string &entry) const; std::vector GetScreenshotList(int index) const; std::vector GetScreenshotNames(int index) const; - std::string GetLongDescription(int index) const; + std::string GetReleaseNotes(int index) const; std::vector GetDownloadList(int index) const; diff --git a/include/store/storeEntry.hpp b/include/store/storeEntry.hpp index fc4334e..bed1459 100644 --- a/include/store/storeEntry.hpp +++ b/include/store/storeEntry.hpp @@ -51,7 +51,7 @@ class StoreEntry { std::vector GetTypes() const { return this->Types; }; std::vector GetScreenshots() const { return this->Screenshots; }; std::vector GetScreenshotNames() const { return this->ScreenshotNames; }; - std::string GetLongDescription() const { return this->LongDescription; }; + std::string GetReleaseNotes() const { return this->ReleaseNotes; }; bool GetUpdateAvl() const { return this->UpdateAvailable; }; void SetUpdateAvl(bool v) { this->UpdateAvailable = v; }; @@ -62,7 +62,7 @@ class StoreEntry { }; private: - std::string Title, Author, Description, Category, Version, Console, LastUpdated, MarkString, Additional, LongDescription ; + std::string Title, Author, Description, Category, Version, Console, LastUpdated, MarkString, Additional, ReleaseNotes; C2D_Image Icon; int SheetIndex, EntryIndex, Marks; std::vector FullCategory, FullConsole, Sizes, Types, Screenshots, ScreenshotNames; diff --git a/include/store/storeUtils.hpp b/include/store/storeUtils.hpp index eadfc8d..d522d33 100644 --- a/include/store/storeUtils.hpp +++ b/include/store/storeUtils.hpp @@ -85,12 +85,12 @@ namespace StoreUtils { void DrawSorting(bool asc, SortType st); void SortHandle(bool &asc, SortType &st); - /* Long Description. */ + /* Release Notes. */ size_t FindSplitPoint(const std::string &str, const std::vector splitters); - void ProcessLongDescription(std::string LongDescription); + void ProcessReleaseNotes(std::string ReleaseNotes); - void DrawLongDescription(const int &scrollIndex, const std::unique_ptr &entry); - void LongDescriptionLogic(int &scrollIndex, int &storeMode); + void DrawReleaseNotes(const int &scrollIndex, const std::unique_ptr &entry); + void ReleaseNotesLogic(int &scrollIndex, int &storeMode); bool compareTitleDescending(const std::unique_ptr &a, const std::unique_ptr &b); bool compareTitleAscending(const std::unique_ptr &a, const std::unique_ptr &b); diff --git a/romfs/gfx/sprites.t3x b/romfs/gfx/sprites.t3x index 3e33324..d6f6d2f 100644 Binary files a/romfs/gfx/sprites.t3x and b/romfs/gfx/sprites.t3x differ