Skip to content

Commit 06a2367

Browse files
authored
Bump to version 1.9.14 (#13327)
* * Bump to version 1.9.14 * Don't have unused function when HAVE_CORE_INFO_CACHE is undefined * Addition to CHANGES.md
1 parent 6f60ee9 commit 06a2367

File tree

18 files changed

+111
-76
lines changed

18 files changed

+111
-76
lines changed

CHANGES.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,46 @@
11
# Future
2+
3+
# 1.9.14
24
- ANDROID/PLAYSTORE: Implement MANAGE_EXTERNAL_STORAGE permission
35
- ANDROID/PLAYSTORE: Bump up SDK level to 30 to comply with Play Store policies
6+
- AUDIO/MIXER: Increase sample buffer padding
7+
- CHEEVOS: Disallow achievements when spectating netplay
48
- CHEEVOS: Fix need-to-activate achievement logic for non-hardcore
59
- CHEEVOS: Don't queue rewind re-init if already on main thread
610
- CHEEVOS: Ignore unofficial achievements unless setting is enabled
11+
- CHEEVOS: Use SSL host when available
12+
- CHEEVOS: Validate hashes for secondary discs in multi-disc games
13+
- CHEEVOS: Ensure placard is initialized on main thread when game has no achievements
14+
- CHEEVOS: Audit achievement settings defaults and visibility
15+
- CHEEVOS: Show error message when no password provided
16+
- CHEEVOS: Use widget for game loaded achievement progress
17+
- CONFIG: Honor config_save_on_exit when Reboot/Shutdown is called
18+
- DISK CONTROL: Focus on current content entry in Disk Control append/insert
19+
- 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
20+
- INPUT/GYRO/ACCELEROMETER/ANDROID: Re-enable Gyroscope & Accelerometer when RetroArch resumes or regains focus
21+
- INPUT/HID: Fix gamepad disconnect on unrecognized HID device
22+
- LAKKA: Patch to fix keyboard typing
23+
- LAKKA: CD-ROM eject menu item
24+
- LAKKA/BLUETOOTH: Add option to remove pairing
25+
- LAKKA/SWITCH: Disable rumble gain
26+
- LAKKA/SWITCH: Disable cpu scaling, uses its own CPU governor
27+
- 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.
728
- NETPLAY: Networking - should not print country for a local lobby
29+
- NETPLAY: Added setting to allow/disallow players other than the host from pausing the game.
30+
- NETPLAY: Added a sublabel for netplay max connections.
31+
- NETPLAY: Fixed port override macro from not being set immediately after the port setting.
32+
- NETPLAY: Show passworded rooms on lobby
33+
- NETWORK: Make HTTP header parsing case insensitive
34+
- NETWORK/UPNP: Fixed memory leaks
35+
- NETWORK/UPNP: Added a task_queue_wait to prevent executing two nat tasks at once, so it's also thread safe now
36+
- 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.
37+
- 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
838
- OVERLAYS: Revert changes
39+
- RETROFW: Add OSS audio
940
- 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.
41+
- VULKAN: Avoid hard crash when capturing screenshot in emulating mailbox.
1042
- WIIU: Make wiiu_gfx_load_texture code safer
43+
- WIIU: Fix keyboard support.
1144

1245
# 1.9.13
1346
- CHEEVOS/MSVC2010: Add Cheevos support

core_info.c

Lines changed: 26 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,9 @@ typedef struct
8080
/* Forward declarations */
8181
static void core_info_free(core_info_t* info);
8282
static uint32_t core_info_hash_string(const char *str);
83+
#ifdef HAVE_CORE_INFO_CACHE
8384
static core_info_cache_list_t *core_info_cache_list_new(void);
85+
#endif
8486
static void core_info_cache_add(core_info_cache_list_t *list,
8587
core_info_t *info, bool transfer);
8688

@@ -566,30 +568,6 @@ static void core_info_cache_list_free(
566568
free(core_info_cache_list);
567569
}
568570

569-
static core_info_cache_list_t *core_info_cache_list_new(void)
570-
{
571-
core_info_cache_list_t *core_info_cache_list =
572-
(core_info_cache_list_t *)malloc(sizeof(*core_info_cache_list));
573-
if (!core_info_cache_list)
574-
return NULL;
575-
576-
core_info_cache_list->length = 0;
577-
core_info_cache_list->items = (core_info_t *)
578-
calloc(CORE_INFO_CACHE_DEFAULT_CAPACITY,
579-
sizeof(core_info_t));
580-
581-
if (!core_info_cache_list->items)
582-
{
583-
core_info_cache_list_free(core_info_cache_list);
584-
return NULL;
585-
}
586-
587-
core_info_cache_list->capacity = CORE_INFO_CACHE_DEFAULT_CAPACITY;
588-
core_info_cache_list->refresh = false;
589-
590-
return core_info_cache_list;
591-
}
592-
593571
static core_info_t *core_info_cache_find(
594572
core_info_cache_list_t *list, char *core_file_id)
595573
{
@@ -659,6 +637,30 @@ static void core_info_cache_add(
659637
}
660638

661639
#ifdef HAVE_CORE_INFO_CACHE
640+
static core_info_cache_list_t *core_info_cache_list_new(void)
641+
{
642+
core_info_cache_list_t *core_info_cache_list =
643+
(core_info_cache_list_t *)malloc(sizeof(*core_info_cache_list));
644+
if (!core_info_cache_list)
645+
return NULL;
646+
647+
core_info_cache_list->length = 0;
648+
core_info_cache_list->items = (core_info_t *)
649+
calloc(CORE_INFO_CACHE_DEFAULT_CAPACITY,
650+
sizeof(core_info_t));
651+
652+
if (!core_info_cache_list->items)
653+
{
654+
core_info_cache_list_free(core_info_cache_list);
655+
return NULL;
656+
}
657+
658+
core_info_cache_list->capacity = CORE_INFO_CACHE_DEFAULT_CAPACITY;
659+
core_info_cache_list->refresh = false;
660+
661+
return core_info_cache_list;
662+
}
663+
662664
static core_info_cache_list_t *core_info_cache_read(const char *info_dir)
663665
{
664666
intfstream_t *file = NULL;

pkg/android/phoenix-legacy/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<!-- <!DOCTYPE manifest [ <!ENTITY % versionDTD SYSTEM "../../../version.dtd"> %versionDTD; ]> !-->
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
package="com.retroarch.legacy"
4-
android:versionCode="1556806364"
5-
android:versionName="1.9.13"
4+
android:versionCode="1556806365"
5+
android:versionName="1.9.14"
66
android:installLocation="internalOnly">
77
<uses-feature android:glEsVersion="0x00020000" />
88
<uses-feature android:name="android.hardware.touchscreen" android:required="false"/>

pkg/android/phoenix/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
xmlns:tools="http://schemas.android.com/tools"
44
package="com.retroarch"
5-
android:versionCode="1597175245"
6-
android:versionName="1.9.13"
5+
android:versionCode="1597175246"
6+
android:versionName="1.9.14"
77
android:installLocation="internalOnly">
88
<uses-feature android:glEsVersion="0x00020000" />
99
<uses-feature android:name="android.hardware.touchscreen" android:required="false"/>

pkg/apple/OSX/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@
3030
<key>CFBundlePackageType</key>
3131
<string>APPL</string>
3232
<key>CFBundleShortVersionString</key>
33-
<string>1.9.13</string>
33+
<string>1.9.14</string>
3434
<key>CFBundleSignature</key>
3535
<string>????</string>
3636
<key>CFBundleVersion</key>
37-
<string>1.9.13</string>
37+
<string>1.9.14</string>
3838
<key>LSMinimumSystemVersion</key>
3939
<string>${MACOSX_DEPLOYMENT_TARGET}</string>
4040
<key>NSHighResolutionCapable</key>

pkg/apple/OSX/Info_Metal.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@
3030
<key>CFBundlePackageType</key>
3131
<string>APPL</string>
3232
<key>CFBundleShortVersionString</key>
33-
<string>1.9.13</string>
33+
<string>1.9.14</string>
3434
<key>CFBundleSignature</key>
3535
<string>????</string>
3636
<key>CFBundleVersion</key>
37-
<string>1.9.13</string>
37+
<string>1.9.14</string>
3838
<key>LSMinimumSystemVersion</key>
3939
<string>${MACOSX_DEPLOYMENT_TARGET}</string>
4040
<key>NSHighResolutionCapable</key>

pkg/apple/RetroArch_iOS10.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -460,7 +460,7 @@
460460
CODE_SIGN_IDENTITY = "iPhone Developer";
461461
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
462462
CODE_SIGN_RESOURCE_RULES_PATH = "$(SDKROOT)/ResourceRules.plist";
463-
CURRENT_PROJECT_VERSION = 1.9.13;
463+
CURRENT_PROJECT_VERSION = 1.9.14;
464464
DEVELOPMENT_TEAM = UK699V5ZS8;
465465
ENABLE_BITCODE = NO;
466466
GCC_PRECOMPILE_PREFIX_HEADER = NO;
@@ -478,7 +478,7 @@
478478
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
479479
LD_NO_PIE = YES;
480480
LIBRARY_SEARCH_PATHS = "";
481-
MARKETING_VERSION = 1.9.13;
481+
MARKETING_VERSION = 1.9.14;
482482
ONLY_ACTIVE_ARCH = NO;
483483
OTHER_CFLAGS = (
484484
"-DHAVE_NETWORKGAMEPAD",
@@ -564,7 +564,7 @@
564564
CODE_SIGN_IDENTITY = "iPhone Developer";
565565
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
566566
CODE_SIGN_RESOURCE_RULES_PATH = "$(SDKROOT)/ResourceRules.plist";
567-
CURRENT_PROJECT_VERSION = 1.9.13;
567+
CURRENT_PROJECT_VERSION = 1.9.14;
568568
DEVELOPMENT_TEAM = UK699V5ZS8;
569569
ENABLE_BITCODE = NO;
570570
GCC_PRECOMPILE_PREFIX_HEADER = NO;
@@ -582,7 +582,7 @@
582582
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
583583
LD_NO_PIE = YES;
584584
LIBRARY_SEARCH_PATHS = "";
585-
MARKETING_VERSION = 1.9.13;
585+
MARKETING_VERSION = 1.9.14;
586586
OTHER_CFLAGS = (
587587
"-DNS_BLOCK_ASSERTIONS=1",
588588
"-DNDEBUG",

pkg/apple/RetroArch_iOS10_static.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,7 @@
464464
CODE_SIGN_IDENTITY = "iPhone Developer";
465465
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
466466
CODE_SIGN_RESOURCE_RULES_PATH = "$(SDKROOT)/ResourceRules.plist";
467-
CURRENT_PROJECT_VERSION = 1.9.13;
467+
CURRENT_PROJECT_VERSION = 1.9.14;
468468
DEVELOPMENT_TEAM = UK699V5ZS8;
469469
ENABLE_BITCODE = NO;
470470
GCC_PRECOMPILE_PREFIX_HEADER = NO;
@@ -481,7 +481,7 @@
481481
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
482482
LD_NO_PIE = YES;
483483
LIBRARY_SEARCH_PATHS = "$(PROJECT_DIR)";
484-
MARKETING_VERSION = 1.9.13;
484+
MARKETING_VERSION = 1.9.14;
485485
ONLY_ACTIVE_ARCH = NO;
486486
OTHER_CFLAGS = (
487487
"-DHAVE_APPLE_STORE",
@@ -567,7 +567,7 @@
567567
CODE_SIGN_IDENTITY = "iPhone Developer";
568568
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
569569
CODE_SIGN_RESOURCE_RULES_PATH = "$(SDKROOT)/ResourceRules.plist";
570-
CURRENT_PROJECT_VERSION = 1.9.13;
570+
CURRENT_PROJECT_VERSION = 1.9.14;
571571
DEVELOPMENT_TEAM = UK699V5ZS8;
572572
ENABLE_BITCODE = NO;
573573
GCC_PRECOMPILE_PREFIX_HEADER = NO;
@@ -584,7 +584,7 @@
584584
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
585585
LD_NO_PIE = YES;
586586
LIBRARY_SEARCH_PATHS = "$(PROJECT_DIR)";
587-
MARKETING_VERSION = 1.9.13;
587+
MARKETING_VERSION = 1.9.14;
588588
OTHER_CFLAGS = (
589589
"-DNS_BLOCK_ASSERTIONS=1",
590590
"-DNDEBUG",

pkg/apple/RetroArch_iOS11.xcodeproj/project.pbxproj

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -611,7 +611,7 @@
611611
CODE_SIGN_IDENTITY = "iPhone Developer";
612612
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
613613
CODE_SIGN_RESOURCE_RULES_PATH = "$(SDKROOT)/ResourceRules.plist";
614-
CURRENT_PROJECT_VERSION = 1.9.13;
614+
CURRENT_PROJECT_VERSION = 1.9.14;
615615
DEVELOPMENT_TEAM = R72X3BF4KE;
616616
ENABLE_BITCODE = NO;
617617
GCC_PRECOMPILE_PREFIX_HEADER = NO;
@@ -628,7 +628,7 @@
628628
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
629629
LD_NO_PIE = YES;
630630
LIBRARY_SEARCH_PATHS = "";
631-
MARKETING_VERSION = 1.9.13;
631+
MARKETING_VERSION = 1.9.14;
632632
ONLY_ACTIVE_ARCH = NO;
633633
OTHER_CFLAGS = (
634634
"-DHAVE_NETWORKGAMEPAD",
@@ -711,7 +711,7 @@
711711
CODE_SIGN_IDENTITY = "iPhone Developer";
712712
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
713713
CODE_SIGN_RESOURCE_RULES_PATH = "$(SDKROOT)/ResourceRules.plist";
714-
CURRENT_PROJECT_VERSION = 1.9.13;
714+
CURRENT_PROJECT_VERSION = 1.9.14;
715715
DEVELOPMENT_TEAM = R72X3BF4KE;
716716
ENABLE_BITCODE = NO;
717717
GCC_PRECOMPILE_PREFIX_HEADER = NO;
@@ -728,7 +728,7 @@
728728
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
729729
LD_NO_PIE = YES;
730730
LIBRARY_SEARCH_PATHS = "";
731-
MARKETING_VERSION = 1.9.13;
731+
MARKETING_VERSION = 1.9.14;
732732
"OTHER_CFLAGS[arch=*]" = (
733733
"-DNS_BLOCK_ASSERTIONS=1",
734734
"-DNDEBUG",
@@ -836,7 +836,7 @@
836836
CLANG_WARN_UNREACHABLE_CODE = YES;
837837
CODE_SIGN_IDENTITY = "iPhone Developer";
838838
CODE_SIGN_STYLE = Automatic;
839-
CURRENT_PROJECT_VERSION = 1.9.13;
839+
CURRENT_PROJECT_VERSION = 1.9.14;
840840
DEBUG_INFORMATION_FORMAT = dwarf;
841841
DEVELOPMENT_TEAM = R72X3BF4KE;
842842
ENABLE_STRICT_OBJC_MSGSEND = YES;
@@ -858,7 +858,7 @@
858858
);
859859
INFOPLIST_FILE = "$(SRCROOT)/tvOS/Info.plist";
860860
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
861-
MARKETING_VERSION = 1.9.13;
861+
MARKETING_VERSION = 1.9.14;
862862
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
863863
MTL_FAST_MATH = YES;
864864
ONLY_ACTIVE_ARCH = YES;
@@ -964,7 +964,7 @@
964964
CLANG_WARN_UNREACHABLE_CODE = YES;
965965
CODE_SIGN_IDENTITY = "iPhone Developer";
966966
CODE_SIGN_STYLE = Automatic;
967-
CURRENT_PROJECT_VERSION = 1.9.13;
967+
CURRENT_PROJECT_VERSION = 1.9.14;
968968
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
969969
DEVELOPMENT_TEAM = R72X3BF4KE;
970970
ENABLE_NS_ASSERTIONS = NO;
@@ -986,7 +986,7 @@
986986
);
987987
INFOPLIST_FILE = "$(SRCROOT)/tvOS/Info.plist";
988988
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
989-
MARKETING_VERSION = 1.9.13;
989+
MARKETING_VERSION = 1.9.14;
990990
MTL_ENABLE_DEBUG_INFO = NO;
991991
MTL_FAST_MATH = YES;
992992
OTHER_CFLAGS = (

pkg/apple/RetroArch_iOS11_Metal.xcodeproj/project.pbxproj

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1274,7 +1274,7 @@
12741274
CODE_SIGN_IDENTITY = "iPhone Developer";
12751275
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
12761276
CODE_SIGN_RESOURCE_RULES_PATH = "$(SDKROOT)/ResourceRules.plist";
1277-
CURRENT_PROJECT_VERSION = 1.9.13;
1277+
CURRENT_PROJECT_VERSION = 1.9.14;
12781278
DEPS_DIR = "$(SRCBASE)/deps";
12791279
DEVELOPMENT_TEAM = UK699V5ZS8;
12801280
ENABLE_BITCODE = NO;
@@ -1298,7 +1298,7 @@
12981298
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
12991299
LD_NO_PIE = YES;
13001300
LIBRARY_SEARCH_PATHS = "";
1301-
MARKETING_VERSION = 1.9.13;
1301+
MARKETING_VERSION = 1.9.14;
13021302
MTL_FAST_MATH = YES;
13031303
ONLY_ACTIVE_ARCH = NO;
13041304
OTHER_CFLAGS = (
@@ -1392,7 +1392,7 @@
13921392
CODE_SIGN_IDENTITY = "iPhone Developer";
13931393
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
13941394
CODE_SIGN_RESOURCE_RULES_PATH = "$(SDKROOT)/ResourceRules.plist";
1395-
CURRENT_PROJECT_VERSION = 1.9.13;
1395+
CURRENT_PROJECT_VERSION = 1.9.14;
13961396
DEPS_DIR = "$(SRCBASE)/deps";
13971397
DEVELOPMENT_TEAM = UK699V5ZS8;
13981398
ENABLE_BITCODE = NO;
@@ -1416,7 +1416,7 @@
14161416
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
14171417
LD_NO_PIE = YES;
14181418
LIBRARY_SEARCH_PATHS = "";
1419-
MARKETING_VERSION = 1.9.13;
1419+
MARKETING_VERSION = 1.9.14;
14201420
MTL_FAST_MATH = YES;
14211421
OTHER_CFLAGS = (
14221422
"-DNS_BLOCK_ASSERTIONS=1",
@@ -1590,7 +1590,7 @@
15901590
CLANG_WARN_UNREACHABLE_CODE = YES;
15911591
CODE_SIGN_IDENTITY = "Apple Development";
15921592
CODE_SIGN_STYLE = Automatic;
1593-
CURRENT_PROJECT_VERSION = 1.9.13;
1593+
CURRENT_PROJECT_VERSION = 1.9.14;
15941594
DEBUG_INFORMATION_FORMAT = dwarf;
15951595
DEPS_DIR = "$(SRCBASE)/deps";
15961596
DEVELOPMENT_TEAM = UK699V5ZS8;
@@ -1619,7 +1619,7 @@
16191619
);
16201620
INFOPLIST_FILE = "$(SRCROOT)/tvOS/Info.plist";
16211621
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
1622-
MARKETING_VERSION = 1.9.13;
1622+
MARKETING_VERSION = 1.9.14;
16231623
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
16241624
MTL_FAST_MATH = YES;
16251625
ONLY_ACTIVE_ARCH = YES;
@@ -1726,7 +1726,7 @@
17261726
CLANG_WARN_UNREACHABLE_CODE = YES;
17271727
CODE_SIGN_IDENTITY = "Apple Development";
17281728
CODE_SIGN_STYLE = Automatic;
1729-
CURRENT_PROJECT_VERSION = 1.9.13;
1729+
CURRENT_PROJECT_VERSION = 1.9.14;
17301730
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
17311731
DEPS_DIR = "$(SRCBASE)/deps";
17321732
DEVELOPMENT_TEAM = UK699V5ZS8;
@@ -1755,7 +1755,7 @@
17551755
);
17561756
INFOPLIST_FILE = "$(SRCROOT)/tvOS/Info.plist";
17571757
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
1758-
MARKETING_VERSION = 1.9.13;
1758+
MARKETING_VERSION = 1.9.14;
17591759
MTL_ENABLE_DEBUG_INFO = NO;
17601760
MTL_FAST_MATH = YES;
17611761
OTHER_CFLAGS = (

0 commit comments

Comments
 (0)