Skip to content

Commit

Permalink
Getting ready for a new release
Browse files Browse the repository at this point in the history
  • Loading branch information
XorTroll committed Feb 10, 2022
1 parent a7c43a5 commit 0293f4c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 15 deletions.
2 changes: 1 addition & 1 deletion Goldleaf/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ APP_TITLE := Goldleaf
APP_AUTHOR := XorTroll

# "-dev" prefix is manually appended when a new version is under development
APP_VERSION := $(VER_MAJOR).$(VER_MINOR).$(VER_MICRO)-dev
APP_VERSION := $(VER_MAJOR).$(VER_MINOR).$(VER_MICRO)

#---------------------------------------------------------------------------------
# options for code generation
Expand Down
Binary file modified Goldleaf/romfs/MenuBanner.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 0 additions & 14 deletions Goldleaf/source/hos/hos_Titles.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -333,24 +333,10 @@ namespace hos {
}
}

AvmVersionListImporter importer;
auto rc = avmGetVersionListImporter(&importer);
if(R_SUCCEEDED(rc)) {
const AvmVersionListEntry entry = { title.app_id, cur_max_version, cur_max_version };
rc = avmVersionListImporterSetData(&importer, &entry, 1);
if(R_SUCCEEDED(rc)) {
rc = avmVersionListImporterFlush(&importer);
}
avmVersionListImporterClose(&importer);
}

/*
const auto rc = avmPushLaunchVersion(title.app_id, cur_max_version);
if(R_SUCCEEDED(rc)) {
return avmUpgradeLaunchRequiredVersion(title.app_id, cur_max_version);
}
*/

return rc;
}

Expand Down
3 changes: 3 additions & 0 deletions Goldleaf/source/ui/ui_PartitionBrowserLayout.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,9 @@ namespace ui {
msg += cfg::strings::Main.GetString(59);
icon_path = full_item;
}
else if(ext == "png") {
icon_path = full_item;
}
else {
msg += cfg::strings::Main.GetString(270);
}
Expand Down

1 comment on commit 0293f4c

@squili
Copy link

@squili squili commented on 0293f4c Feb 11, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

holy shit

Please sign in to comment.