diff --git a/CHANGES.md b/CHANGES.md index 82f4656ee48..b4cb9d59688 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,13 +1,46 @@ # Future + +# 1.9.14 - ANDROID/PLAYSTORE: Implement MANAGE_EXTERNAL_STORAGE permission - ANDROID/PLAYSTORE: Bump up SDK level to 30 to comply with Play Store policies +- AUDIO/MIXER: Increase sample buffer padding +- CHEEVOS: Disallow achievements when spectating netplay - CHEEVOS: Fix need-to-activate achievement logic for non-hardcore - CHEEVOS: Don't queue rewind re-init if already on main thread - CHEEVOS: Ignore unofficial achievements unless setting is enabled +- CHEEVOS: Use SSL host when available +- CHEEVOS: Validate hashes for secondary discs in multi-disc games +- CHEEVOS: Ensure placard is initialized on main thread when game has no achievements +- CHEEVOS: Audit achievement settings defaults and visibility +- CHEEVOS: Show error message when no password provided +- CHEEVOS: Use widget for game loaded achievement progress +- CONFIG: Honor config_save_on_exit when Reboot/Shutdown is called +- DISK CONTROL: Focus on current content entry in Disk Control append/insert +- FRAMEDELAY: Auto Frame Delay Improvements - swap interval handling, D3DX handling, and delay target resets also on core restart. It should now work with high refresh rates and also with Direct3D 10/11/12 drivers +- INPUT/GYRO/ACCELEROMETER/ANDROID: Re-enable Gyroscope & Accelerometer when RetroArch resumes or regains focus +- INPUT/HID: Fix gamepad disconnect on unrecognized HID device +- LAKKA: Patch to fix keyboard typing +- LAKKA: CD-ROM eject menu item +- LAKKA/BLUETOOTH: Add option to remove pairing +- LAKKA/SWITCH: Disable rumble gain +- LAKKA/SWITCH: Disable cpu scaling, uses its own CPU governor +- LOGGING: Logging cleanups. A bunch of unifications and reformattings (capitalizations, dots, quotes, prefixes etc). Also added a few missing things, such as Run-Ahead error logging and LED interface init logging when it is enabled. - NETPLAY: Networking - should not print country for a local lobby +- NETPLAY: Added setting to allow/disallow players other than the host from pausing the game. +- NETPLAY: Added a sublabel for netplay max connections. +- NETPLAY: Fixed port override macro from not being set immediately after the port setting. +- NETPLAY: Show passworded rooms on lobby +- NETWORK: Make HTTP header parsing case insensitive +- NETWORK/UPNP: Fixed memory leaks +- NETWORK/UPNP: Added a task_queue_wait to prevent executing two nat tasks at once, so it's also thread safe now +- NETWORK/UPNP: Switch to a permanent lease time, but request it to be removed when we do netplay_free. Switch to a permanent lease time, but request it to be removed when we do netplay_free. +- NETWORK/UPNP: Only use a single interface for UPnP, return on the first one found instead of iterating over all of them and opening them one by one - OVERLAYS: Revert changes +- RETROFW: Add OSS audio - VIDEO/ROTATION: Always return false if rotation can't occur. RETRO_ENVIRONMENT_SET_ROTATION should return false when rotation has been forcefully disabled in frontend, that way the core can decide if aspect ratio should be rotated or not for vertical games. Useful for FBNeo for instance. +- VULKAN: Avoid hard crash when capturing screenshot in emulating mailbox. - WIIU: Make wiiu_gfx_load_texture code safer +- WIIU: Fix keyboard support. # 1.9.13 - CHEEVOS/MSVC2010: Add Cheevos support diff --git a/core_info.c b/core_info.c index b6958cc516f..b5d082ab189 100644 --- a/core_info.c +++ b/core_info.c @@ -80,7 +80,9 @@ typedef struct /* Forward declarations */ static void core_info_free(core_info_t* info); static uint32_t core_info_hash_string(const char *str); +#ifdef HAVE_CORE_INFO_CACHE static core_info_cache_list_t *core_info_cache_list_new(void); +#endif static void core_info_cache_add(core_info_cache_list_t *list, core_info_t *info, bool transfer); @@ -566,30 +568,6 @@ static void core_info_cache_list_free( free(core_info_cache_list); } -static core_info_cache_list_t *core_info_cache_list_new(void) -{ - core_info_cache_list_t *core_info_cache_list = - (core_info_cache_list_t *)malloc(sizeof(*core_info_cache_list)); - if (!core_info_cache_list) - return NULL; - - core_info_cache_list->length = 0; - core_info_cache_list->items = (core_info_t *) - calloc(CORE_INFO_CACHE_DEFAULT_CAPACITY, - sizeof(core_info_t)); - - if (!core_info_cache_list->items) - { - core_info_cache_list_free(core_info_cache_list); - return NULL; - } - - core_info_cache_list->capacity = CORE_INFO_CACHE_DEFAULT_CAPACITY; - core_info_cache_list->refresh = false; - - return core_info_cache_list; -} - static core_info_t *core_info_cache_find( core_info_cache_list_t *list, char *core_file_id) { @@ -659,6 +637,30 @@ static void core_info_cache_add( } #ifdef HAVE_CORE_INFO_CACHE +static core_info_cache_list_t *core_info_cache_list_new(void) +{ + core_info_cache_list_t *core_info_cache_list = + (core_info_cache_list_t *)malloc(sizeof(*core_info_cache_list)); + if (!core_info_cache_list) + return NULL; + + core_info_cache_list->length = 0; + core_info_cache_list->items = (core_info_t *) + calloc(CORE_INFO_CACHE_DEFAULT_CAPACITY, + sizeof(core_info_t)); + + if (!core_info_cache_list->items) + { + core_info_cache_list_free(core_info_cache_list); + return NULL; + } + + core_info_cache_list->capacity = CORE_INFO_CACHE_DEFAULT_CAPACITY; + core_info_cache_list->refresh = false; + + return core_info_cache_list; +} + static core_info_cache_list_t *core_info_cache_read(const char *info_dir) { intfstream_t *file = NULL; diff --git a/pkg/android/phoenix-legacy/AndroidManifest.xml b/pkg/android/phoenix-legacy/AndroidManifest.xml index cd2c8db4070..02fd38a87e1 100644 --- a/pkg/android/phoenix-legacy/AndroidManifest.xml +++ b/pkg/android/phoenix-legacy/AndroidManifest.xml @@ -1,8 +1,8 @@ diff --git a/pkg/android/phoenix/AndroidManifest.xml b/pkg/android/phoenix/AndroidManifest.xml index abda7aa287b..1e9033e7e94 100644 --- a/pkg/android/phoenix/AndroidManifest.xml +++ b/pkg/android/phoenix/AndroidManifest.xml @@ -2,8 +2,8 @@ diff --git a/pkg/apple/OSX/Info.plist b/pkg/apple/OSX/Info.plist index 68a79ff4d23..93ab9e63fc1 100644 --- a/pkg/apple/OSX/Info.plist +++ b/pkg/apple/OSX/Info.plist @@ -30,11 +30,11 @@ CFBundlePackageType APPL CFBundleShortVersionString - 1.9.13 + 1.9.14 CFBundleSignature ???? CFBundleVersion - 1.9.13 + 1.9.14 LSMinimumSystemVersion ${MACOSX_DEPLOYMENT_TARGET} NSHighResolutionCapable diff --git a/pkg/apple/OSX/Info_Metal.plist b/pkg/apple/OSX/Info_Metal.plist index d89729f5b97..dd2cf27fc36 100644 --- a/pkg/apple/OSX/Info_Metal.plist +++ b/pkg/apple/OSX/Info_Metal.plist @@ -30,11 +30,11 @@ CFBundlePackageType APPL CFBundleShortVersionString - 1.9.13 + 1.9.14 CFBundleSignature ???? CFBundleVersion - 1.9.13 + 1.9.14 LSMinimumSystemVersion ${MACOSX_DEPLOYMENT_TARGET} NSHighResolutionCapable diff --git a/pkg/apple/RetroArch_iOS10.xcodeproj/project.pbxproj b/pkg/apple/RetroArch_iOS10.xcodeproj/project.pbxproj index f758bf7608f..bfdc0176828 100644 --- a/pkg/apple/RetroArch_iOS10.xcodeproj/project.pbxproj +++ b/pkg/apple/RetroArch_iOS10.xcodeproj/project.pbxproj @@ -460,7 +460,7 @@ CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CODE_SIGN_RESOURCE_RULES_PATH = "$(SDKROOT)/ResourceRules.plist"; - CURRENT_PROJECT_VERSION = 1.9.13; + CURRENT_PROJECT_VERSION = 1.9.14; DEVELOPMENT_TEAM = UK699V5ZS8; ENABLE_BITCODE = NO; GCC_PRECOMPILE_PREFIX_HEADER = NO; @@ -478,7 +478,7 @@ IPHONEOS_DEPLOYMENT_TARGET = 10.0; LD_NO_PIE = YES; LIBRARY_SEARCH_PATHS = ""; - MARKETING_VERSION = 1.9.13; + MARKETING_VERSION = 1.9.14; ONLY_ACTIVE_ARCH = NO; OTHER_CFLAGS = ( "-DHAVE_NETWORKGAMEPAD", @@ -564,7 +564,7 @@ CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CODE_SIGN_RESOURCE_RULES_PATH = "$(SDKROOT)/ResourceRules.plist"; - CURRENT_PROJECT_VERSION = 1.9.13; + CURRENT_PROJECT_VERSION = 1.9.14; DEVELOPMENT_TEAM = UK699V5ZS8; ENABLE_BITCODE = NO; GCC_PRECOMPILE_PREFIX_HEADER = NO; @@ -582,7 +582,7 @@ IPHONEOS_DEPLOYMENT_TARGET = 10.0; LD_NO_PIE = YES; LIBRARY_SEARCH_PATHS = ""; - MARKETING_VERSION = 1.9.13; + MARKETING_VERSION = 1.9.14; OTHER_CFLAGS = ( "-DNS_BLOCK_ASSERTIONS=1", "-DNDEBUG", diff --git a/pkg/apple/RetroArch_iOS10_static.xcodeproj/project.pbxproj b/pkg/apple/RetroArch_iOS10_static.xcodeproj/project.pbxproj index 1aff6a404d0..1a3a6966cfa 100644 --- a/pkg/apple/RetroArch_iOS10_static.xcodeproj/project.pbxproj +++ b/pkg/apple/RetroArch_iOS10_static.xcodeproj/project.pbxproj @@ -464,7 +464,7 @@ CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CODE_SIGN_RESOURCE_RULES_PATH = "$(SDKROOT)/ResourceRules.plist"; - CURRENT_PROJECT_VERSION = 1.9.13; + CURRENT_PROJECT_VERSION = 1.9.14; DEVELOPMENT_TEAM = UK699V5ZS8; ENABLE_BITCODE = NO; GCC_PRECOMPILE_PREFIX_HEADER = NO; @@ -481,7 +481,7 @@ IPHONEOS_DEPLOYMENT_TARGET = 10.0; LD_NO_PIE = YES; LIBRARY_SEARCH_PATHS = "$(PROJECT_DIR)"; - MARKETING_VERSION = 1.9.13; + MARKETING_VERSION = 1.9.14; ONLY_ACTIVE_ARCH = NO; OTHER_CFLAGS = ( "-DHAVE_APPLE_STORE", @@ -567,7 +567,7 @@ CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CODE_SIGN_RESOURCE_RULES_PATH = "$(SDKROOT)/ResourceRules.plist"; - CURRENT_PROJECT_VERSION = 1.9.13; + CURRENT_PROJECT_VERSION = 1.9.14; DEVELOPMENT_TEAM = UK699V5ZS8; ENABLE_BITCODE = NO; GCC_PRECOMPILE_PREFIX_HEADER = NO; @@ -584,7 +584,7 @@ IPHONEOS_DEPLOYMENT_TARGET = 10.0; LD_NO_PIE = YES; LIBRARY_SEARCH_PATHS = "$(PROJECT_DIR)"; - MARKETING_VERSION = 1.9.13; + MARKETING_VERSION = 1.9.14; OTHER_CFLAGS = ( "-DNS_BLOCK_ASSERTIONS=1", "-DNDEBUG", diff --git a/pkg/apple/RetroArch_iOS11.xcodeproj/project.pbxproj b/pkg/apple/RetroArch_iOS11.xcodeproj/project.pbxproj index e427afabca6..05010aebf82 100644 --- a/pkg/apple/RetroArch_iOS11.xcodeproj/project.pbxproj +++ b/pkg/apple/RetroArch_iOS11.xcodeproj/project.pbxproj @@ -611,7 +611,7 @@ CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CODE_SIGN_RESOURCE_RULES_PATH = "$(SDKROOT)/ResourceRules.plist"; - CURRENT_PROJECT_VERSION = 1.9.13; + CURRENT_PROJECT_VERSION = 1.9.14; DEVELOPMENT_TEAM = R72X3BF4KE; ENABLE_BITCODE = NO; GCC_PRECOMPILE_PREFIX_HEADER = NO; @@ -628,7 +628,7 @@ IPHONEOS_DEPLOYMENT_TARGET = 11.0; LD_NO_PIE = YES; LIBRARY_SEARCH_PATHS = ""; - MARKETING_VERSION = 1.9.13; + MARKETING_VERSION = 1.9.14; ONLY_ACTIVE_ARCH = NO; OTHER_CFLAGS = ( "-DHAVE_NETWORKGAMEPAD", @@ -711,7 +711,7 @@ CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CODE_SIGN_RESOURCE_RULES_PATH = "$(SDKROOT)/ResourceRules.plist"; - CURRENT_PROJECT_VERSION = 1.9.13; + CURRENT_PROJECT_VERSION = 1.9.14; DEVELOPMENT_TEAM = R72X3BF4KE; ENABLE_BITCODE = NO; GCC_PRECOMPILE_PREFIX_HEADER = NO; @@ -728,7 +728,7 @@ IPHONEOS_DEPLOYMENT_TARGET = 11.0; LD_NO_PIE = YES; LIBRARY_SEARCH_PATHS = ""; - MARKETING_VERSION = 1.9.13; + MARKETING_VERSION = 1.9.14; "OTHER_CFLAGS[arch=*]" = ( "-DNS_BLOCK_ASSERTIONS=1", "-DNDEBUG", @@ -836,7 +836,7 @@ CLANG_WARN_UNREACHABLE_CODE = YES; CODE_SIGN_IDENTITY = "iPhone Developer"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 1.9.13; + CURRENT_PROJECT_VERSION = 1.9.14; DEBUG_INFORMATION_FORMAT = dwarf; DEVELOPMENT_TEAM = R72X3BF4KE; ENABLE_STRICT_OBJC_MSGSEND = YES; @@ -858,7 +858,7 @@ ); INFOPLIST_FILE = "$(SRCROOT)/tvOS/Info.plist"; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - MARKETING_VERSION = 1.9.13; + MARKETING_VERSION = 1.9.14; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; MTL_FAST_MATH = YES; ONLY_ACTIVE_ARCH = YES; @@ -964,7 +964,7 @@ CLANG_WARN_UNREACHABLE_CODE = YES; CODE_SIGN_IDENTITY = "iPhone Developer"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 1.9.13; + CURRENT_PROJECT_VERSION = 1.9.14; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; DEVELOPMENT_TEAM = R72X3BF4KE; ENABLE_NS_ASSERTIONS = NO; @@ -986,7 +986,7 @@ ); INFOPLIST_FILE = "$(SRCROOT)/tvOS/Info.plist"; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - MARKETING_VERSION = 1.9.13; + MARKETING_VERSION = 1.9.14; MTL_ENABLE_DEBUG_INFO = NO; MTL_FAST_MATH = YES; OTHER_CFLAGS = ( diff --git a/pkg/apple/RetroArch_iOS11_Metal.xcodeproj/project.pbxproj b/pkg/apple/RetroArch_iOS11_Metal.xcodeproj/project.pbxproj index fb0719eee6c..5be9d875fa4 100644 --- a/pkg/apple/RetroArch_iOS11_Metal.xcodeproj/project.pbxproj +++ b/pkg/apple/RetroArch_iOS11_Metal.xcodeproj/project.pbxproj @@ -1274,7 +1274,7 @@ CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CODE_SIGN_RESOURCE_RULES_PATH = "$(SDKROOT)/ResourceRules.plist"; - CURRENT_PROJECT_VERSION = 1.9.13; + CURRENT_PROJECT_VERSION = 1.9.14; DEPS_DIR = "$(SRCBASE)/deps"; DEVELOPMENT_TEAM = UK699V5ZS8; ENABLE_BITCODE = NO; @@ -1298,7 +1298,7 @@ IPHONEOS_DEPLOYMENT_TARGET = 11.0; LD_NO_PIE = YES; LIBRARY_SEARCH_PATHS = ""; - MARKETING_VERSION = 1.9.13; + MARKETING_VERSION = 1.9.14; MTL_FAST_MATH = YES; ONLY_ACTIVE_ARCH = NO; OTHER_CFLAGS = ( @@ -1392,7 +1392,7 @@ CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CODE_SIGN_RESOURCE_RULES_PATH = "$(SDKROOT)/ResourceRules.plist"; - CURRENT_PROJECT_VERSION = 1.9.13; + CURRENT_PROJECT_VERSION = 1.9.14; DEPS_DIR = "$(SRCBASE)/deps"; DEVELOPMENT_TEAM = UK699V5ZS8; ENABLE_BITCODE = NO; @@ -1416,7 +1416,7 @@ IPHONEOS_DEPLOYMENT_TARGET = 11.0; LD_NO_PIE = YES; LIBRARY_SEARCH_PATHS = ""; - MARKETING_VERSION = 1.9.13; + MARKETING_VERSION = 1.9.14; MTL_FAST_MATH = YES; OTHER_CFLAGS = ( "-DNS_BLOCK_ASSERTIONS=1", @@ -1590,7 +1590,7 @@ CLANG_WARN_UNREACHABLE_CODE = YES; CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 1.9.13; + CURRENT_PROJECT_VERSION = 1.9.14; DEBUG_INFORMATION_FORMAT = dwarf; DEPS_DIR = "$(SRCBASE)/deps"; DEVELOPMENT_TEAM = UK699V5ZS8; @@ -1619,7 +1619,7 @@ ); INFOPLIST_FILE = "$(SRCROOT)/tvOS/Info.plist"; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - MARKETING_VERSION = 1.9.13; + MARKETING_VERSION = 1.9.14; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; MTL_FAST_MATH = YES; ONLY_ACTIVE_ARCH = YES; @@ -1726,7 +1726,7 @@ CLANG_WARN_UNREACHABLE_CODE = YES; CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 1.9.13; + CURRENT_PROJECT_VERSION = 1.9.14; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; DEPS_DIR = "$(SRCBASE)/deps"; DEVELOPMENT_TEAM = UK699V5ZS8; @@ -1755,7 +1755,7 @@ ); INFOPLIST_FILE = "$(SRCROOT)/tvOS/Info.plist"; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - MARKETING_VERSION = 1.9.13; + MARKETING_VERSION = 1.9.14; MTL_ENABLE_DEBUG_INFO = NO; MTL_FAST_MATH = YES; OTHER_CFLAGS = ( diff --git a/pkg/apple/RetroArch_iOS11_static.xcodeproj/project.pbxproj b/pkg/apple/RetroArch_iOS11_static.xcodeproj/project.pbxproj index d38303b6e18..c86e8b924ab 100644 --- a/pkg/apple/RetroArch_iOS11_static.xcodeproj/project.pbxproj +++ b/pkg/apple/RetroArch_iOS11_static.xcodeproj/project.pbxproj @@ -464,7 +464,7 @@ CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CODE_SIGN_RESOURCE_RULES_PATH = "$(SDKROOT)/ResourceRules.plist"; - CURRENT_PROJECT_VERSION = 1.9.13; + CURRENT_PROJECT_VERSION = 1.9.14; DEVELOPMENT_TEAM = UK699V5ZS8; ENABLE_BITCODE = NO; GCC_PRECOMPILE_PREFIX_HEADER = NO; @@ -481,7 +481,7 @@ IPHONEOS_DEPLOYMENT_TARGET = 11.0; LD_NO_PIE = YES; LIBRARY_SEARCH_PATHS = "$(PROJECT_DIR)"; - MARKETING_VERSION = 1.9.13; + MARKETING_VERSION = 1.9.14; ONLY_ACTIVE_ARCH = NO; OTHER_CFLAGS = ( "-DHAVE_APPLE_STORE", @@ -567,7 +567,7 @@ CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CODE_SIGN_RESOURCE_RULES_PATH = "$(SDKROOT)/ResourceRules.plist"; - CURRENT_PROJECT_VERSION = 1.9.13; + CURRENT_PROJECT_VERSION = 1.9.14; DEVELOPMENT_TEAM = UK699V5ZS8; ENABLE_BITCODE = NO; GCC_PRECOMPILE_PREFIX_HEADER = NO; @@ -584,7 +584,7 @@ IPHONEOS_DEPLOYMENT_TARGET = 11.0; LD_NO_PIE = YES; LIBRARY_SEARCH_PATHS = "$(PROJECT_DIR)"; - MARKETING_VERSION = 1.9.13; + MARKETING_VERSION = 1.9.14; OTHER_CFLAGS = ( "-DNS_BLOCK_ASSERTIONS=1", "-DNDEBUG", diff --git a/pkg/apple/RetroArch_iOS6.xcodeproj/project.pbxproj b/pkg/apple/RetroArch_iOS6.xcodeproj/project.pbxproj index 0d0dee494d7..3f0d60b0093 100644 --- a/pkg/apple/RetroArch_iOS6.xcodeproj/project.pbxproj +++ b/pkg/apple/RetroArch_iOS6.xcodeproj/project.pbxproj @@ -455,7 +455,7 @@ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CODE_SIGN_RESOURCE_RULES_PATH = "$(SDKROOT)/ResourceRules.plist"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 1.9.13; + CURRENT_PROJECT_VERSION = 1.9.14; DEVELOPMENT_TEAM = UK699V5ZS8; ENABLE_BITCODE = NO; GCC_PRECOMPILE_PREFIX_HEADER = NO; @@ -473,7 +473,7 @@ IPHONEOS_DEPLOYMENT_TARGET = 6.0; LD_NO_PIE = YES; LIBRARY_SEARCH_PATHS = ""; - MARKETING_VERSION = 1.9.13; + MARKETING_VERSION = 1.9.14; ONLY_ACTIVE_ARCH = NO; OTHER_CFLAGS = ( "-DHAVE_NETWORKGAMEPAD", @@ -557,7 +557,7 @@ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CODE_SIGN_RESOURCE_RULES_PATH = "$(SDKROOT)/ResourceRules.plist"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 1.9.13; + CURRENT_PROJECT_VERSION = 1.9.14; DEVELOPMENT_TEAM = UK699V5ZS8; ENABLE_BITCODE = NO; GCC_PRECOMPILE_PREFIX_HEADER = NO; @@ -575,7 +575,7 @@ IPHONEOS_DEPLOYMENT_TARGET = 6.0; LD_NO_PIE = YES; LIBRARY_SEARCH_PATHS = ""; - MARKETING_VERSION = 1.9.13; + MARKETING_VERSION = 1.9.14; OTHER_CFLAGS = ( "-DNS_BLOCK_ASSERTIONS=1", "-DNDEBUG", diff --git a/pkg/apple/RetroArch_iOS8.xcodeproj/project.pbxproj b/pkg/apple/RetroArch_iOS8.xcodeproj/project.pbxproj index bc115d0c982..afb3ea1072b 100644 --- a/pkg/apple/RetroArch_iOS8.xcodeproj/project.pbxproj +++ b/pkg/apple/RetroArch_iOS8.xcodeproj/project.pbxproj @@ -614,7 +614,7 @@ CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CODE_SIGN_RESOURCE_RULES_PATH = "$(SDKROOT)/ResourceRules.plist"; - CURRENT_PROJECT_VERSION = 1.9.13; + CURRENT_PROJECT_VERSION = 1.9.14; DEVELOPMENT_TEAM = UK699V5ZS8; ENABLE_BITCODE = NO; GCC_PRECOMPILE_PREFIX_HEADER = NO; @@ -632,7 +632,7 @@ IPHONEOS_DEPLOYMENT_TARGET = 8.4; LD_NO_PIE = YES; LIBRARY_SEARCH_PATHS = ""; - MARKETING_VERSION = 1.9.13; + MARKETING_VERSION = 1.9.14; ONLY_ACTIVE_ARCH = NO; OTHER_CFLAGS = ( "-DHAVE_NETWORKGAMEPAD", @@ -718,7 +718,7 @@ CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CODE_SIGN_RESOURCE_RULES_PATH = "$(SDKROOT)/ResourceRules.plist"; - CURRENT_PROJECT_VERSION = 1.9.13; + CURRENT_PROJECT_VERSION = 1.9.14; DEVELOPMENT_TEAM = UK699V5ZS8; ENABLE_BITCODE = NO; GCC_PRECOMPILE_PREFIX_HEADER = NO; @@ -736,7 +736,7 @@ IPHONEOS_DEPLOYMENT_TARGET = 8.4; LD_NO_PIE = YES; LIBRARY_SEARCH_PATHS = ""; - MARKETING_VERSION = 1.9.13; + MARKETING_VERSION = 1.9.14; OTHER_CFLAGS = ( "-DNS_BLOCK_ASSERTIONS=1", "-DNDEBUG", diff --git a/pkg/apple/RetroArch_iOS9-Info.plist b/pkg/apple/RetroArch_iOS9-Info.plist index 082c1cbf778..7bc2576bdbf 100644 --- a/pkg/apple/RetroArch_iOS9-Info.plist +++ b/pkg/apple/RetroArch_iOS9-Info.plist @@ -33,11 +33,11 @@ CFBundlePackageType APPL CFBundleShortVersionString - 1.9.11 + 1.9.14 CFBundleSignature ???? CFBundleVersion - 1.9.11 + 1.9.14 LSRequiresIPhoneOS UIApplicationExitsOnSuspend diff --git a/pkg/qnx/bar-descriptor.xml b/pkg/qnx/bar-descriptor.xml index 1fd28c51157..43a3a51935a 100644 --- a/pkg/qnx/bar-descriptor.xml +++ b/pkg/qnx/bar-descriptor.xml @@ -2,7 +2,7 @@ com.RetroArch - 1.9.13 + 1.9.14 3 Cross-platform entertainment system Team Libretro diff --git a/pkg/sailfishos/retroarch-sailfishos.spec b/pkg/sailfishos/retroarch-sailfishos.spec index 1a61b37db8f..1678ab4d5ae 100644 --- a/pkg/sailfishos/retroarch-sailfishos.spec +++ b/pkg/sailfishos/retroarch-sailfishos.spec @@ -1,6 +1,6 @@ Name: retroarch -Version: 1.9.13 -Release: v1.9.13 +Version: 1.9.14 +Release: v1.9.14 Summary: Official reference frontend for libretro Group: Applications/Emulators diff --git a/version.all b/version.all index 09014fc54c3..c1092c2edf1 100644 --- a/version.all +++ b/version.all @@ -6,8 +6,8 @@ # /* - pkg/snap/snapcraft.yaml (including the github url) */ #if 0 -RARCH_VERSION="1.9.13" +RARCH_VERSION="1.9.14" #endif #ifndef PACKAGE_VERSION -#define PACKAGE_VERSION "1.9.13" +#define PACKAGE_VERSION "1.9.14" #endif diff --git a/version.dtd b/version.dtd index d6b765fa4af..58f569b39e2 100644 --- a/version.dtd +++ b/version.dtd @@ -1 +1 @@ - +