diff --git a/CHANGES.md b/CHANGES.md index 453cacb79b..c02991ce16 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,4 +1,4 @@ -# 1.5.1 (future) +# 1.5.0+ (future) - AUTOSAVE/SRAM - Fix bug #3829 / #4820 (https://github.com/libretro/RetroArch/issues/3829) - ENDIANNESS: Fixed database scanning. Should fix scanning on PS3/WiiU/Wii, etc. - NET: Fix bug #4703 (https://github.com/libretro/RetroArch/issues/4703) @@ -9,8 +9,7 @@ - LOCALIZATION: Update/finish French translation - LOCALIZATION: Update German translation - LOCALIZATION: Update Japanese translation -- LOCALIZATION/GUI: Korean font should display properly now with XMB/MaterialUI's -default font +- LOCALIZATION/GUI: Korean font should display properly now with XMB/MaterialUI's default font - MENU: Improved rendering for XMB ribbon; using additive blending (Vulkan/GL) - OSX/MACOS: Fixes serious memory leak - WINDOWS: Added WASAPI audio driver for low-latency audio. Both shared and exclusive mode. @@ -25,6 +24,7 @@ default font - LOBBIES: Fallback to filename based matching if no CRC matches are found (for people making playlists by hand) - LOBBIES: GUI refinement, show stop hosting when a host has been started, show disconnect when playing as client - LOBBIES: if the game is already loaded it will try to connect directly instead of re-loading content (non-fullpath cores only) +- LOBBIES: unify both netplay menus - THUMBNAILS: Thumbnails show up now in Load Content -> Collection, Information -> Database - VITA: Fix slow I/O - VITA: Fix 30fps menu (poke into input now instead of reading the entire input buffer which apparently is slow) diff --git a/pkg/android/phoenix/AndroidManifest.xml b/pkg/android/phoenix/AndroidManifest.xml index 07e7d9d956..5716042dc2 100644 --- a/pkg/android/phoenix/AndroidManifest.xml +++ b/pkg/android/phoenix/AndroidManifest.xml @@ -1,7 +1,7 @@ diff --git a/pkg/apple/OSX/Info.plist b/pkg/apple/OSX/Info.plist index 0c75b11171..da92319c38 100644 --- a/pkg/apple/OSX/Info.plist +++ b/pkg/apple/OSX/Info.plist @@ -30,11 +30,11 @@ CFBundlePackageType APPL CFBundleShortVersionString - 1.5.0 + 1.6.0 CFBundleSignature ???? CFBundleVersion - 1.5.0 + 1.6.0 LSMinimumSystemVersion ${MACOSX_DEPLOYMENT_TARGET} NSHighResolutionCapable diff --git a/pkg/apple/RetroArch_iOS9-Info.plist b/pkg/apple/RetroArch_iOS9-Info.plist index b884aa42d0..c51ee9d931 100644 --- a/pkg/apple/RetroArch_iOS9-Info.plist +++ b/pkg/apple/RetroArch_iOS9-Info.plist @@ -33,11 +33,11 @@ CFBundlePackageType APPL CFBundleShortVersionString - 1.5.0 + 1.6.0 CFBundleSignature ???? CFBundleVersion - 1.5.0 + 1.6.0 LSRequiresIPhoneOS UIApplicationExitsOnSuspend diff --git a/pkg/apple/iOS/Info.plist b/pkg/apple/iOS/Info.plist index f24e39f18c..0a33b07477 100644 --- a/pkg/apple/iOS/Info.plist +++ b/pkg/apple/iOS/Info.plist @@ -33,11 +33,11 @@ CFBundlePackageType APPL CFBundleShortVersionString - 1.5.0 + 1.6.0 CFBundleSignature ???? CFBundleVersion - 1.5.0 + 1.6.0 LSRequiresIPhoneOS NSCameraUsageDescription diff --git a/pkg/wii/meta.xml b/pkg/wii/meta.xml index 8fc4e74e81..19e4cbd45e 100644 --- a/pkg/wii/meta.xml +++ b/pkg/wii/meta.xml @@ -2,7 +2,7 @@ RetroArch Libretro - 1.5.0 + 1.6.0 2012-2017 The cross-platform entertainment system A port of RetroArch to the GameCube/Wii. diff --git a/tasks/task_netplay_find_content.c b/tasks/task_netplay_find_content.c index 346fedd831..69029213d9 100644 --- a/tasks/task_netplay_find_content.c +++ b/tasks/task_netplay_find_content.c @@ -108,6 +108,7 @@ static void netplay_crc_scan_callback(void *task_data, { RARCH_LOG("[lobby] loading core %s with current content\n", state->core_path); command_event(CMD_EVENT_NETPLAY_INIT_DIRECT, state->hostname); + command_event(CMD_EVENT_RESUME, NULL); } /* no match found */ else