Skip to content

Commit 0293f4c

Browse files
committed
Getting ready for a new release
1 parent a7c43a5 commit 0293f4c

File tree

4 files changed

+4
-15
lines changed

4 files changed

+4
-15
lines changed

Goldleaf/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ APP_TITLE := Goldleaf
5252
APP_AUTHOR := XorTroll
5353

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

5757
#---------------------------------------------------------------------------------
5858
# options for code generation

Goldleaf/romfs/MenuBanner.png

-502 Bytes
Loading

Goldleaf/source/hos/hos_Titles.cpp

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -333,24 +333,10 @@ namespace hos {
333333
}
334334
}
335335

336-
AvmVersionListImporter importer;
337-
auto rc = avmGetVersionListImporter(&importer);
338-
if(R_SUCCEEDED(rc)) {
339-
const AvmVersionListEntry entry = { title.app_id, cur_max_version, cur_max_version };
340-
rc = avmVersionListImporterSetData(&importer, &entry, 1);
341-
if(R_SUCCEEDED(rc)) {
342-
rc = avmVersionListImporterFlush(&importer);
343-
}
344-
avmVersionListImporterClose(&importer);
345-
}
346-
347-
/*
348336
const auto rc = avmPushLaunchVersion(title.app_id, cur_max_version);
349337
if(R_SUCCEEDED(rc)) {
350338
return avmUpgradeLaunchRequiredVersion(title.app_id, cur_max_version);
351339
}
352-
*/
353-
354340
return rc;
355341
}
356342

Goldleaf/source/ui/ui_PartitionBrowserLayout.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -219,6 +219,9 @@ namespace ui {
219219
msg += cfg::strings::Main.GetString(59);
220220
icon_path = full_item;
221221
}
222+
else if(ext == "png") {
223+
icon_path = full_item;
224+
}
222225
else {
223226
msg += cfg::strings::Main.GetString(270);
224227
}

0 commit comments

Comments
 (0)