mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2026-06-06 04:06:56 +00:00
Compare commits
No commits in common. "master" and "1.11.0" have entirely different histories.
@ -1,7 +1,4 @@
|
||||
# Changelog
|
||||
## 1.11.1
|
||||
+ Basic support was added for 22.1.0.
|
||||
+ General system stability improvements to enhance the user's experience.
|
||||
## 1.11.0
|
||||
+ Support was added for 22.0.0.
|
||||
+ Special thanks to @alula for handling a large chunk of the necessary kernel, loader and erpt changes.
|
||||
|
||||
6
emummc/.gitrepo
vendored
6
emummc/.gitrepo
vendored
@ -6,7 +6,7 @@
|
||||
[subrepo]
|
||||
remote = https://github.com/m4xw/emummc
|
||||
branch = develop
|
||||
commit = 3726bfd659600cdafd138277054568a3edba60a6
|
||||
parent = 80bd459516e813fc6f10268ca31dd72a053a4ef3
|
||||
commit = 8ab963b0b1c24b68de8e0c98c62c7822a9765bf3
|
||||
parent = 1e88f37892555da4c38ca6c95f43c56cc6bb87e6
|
||||
method = merge
|
||||
cmdver = 0.4.9
|
||||
cmdver = 0.4.1
|
||||
|
||||
@ -6,7 +6,7 @@
|
||||
[subrepo]
|
||||
remote = https://github.com/Atmosphere-NX/Atmosphere-libs
|
||||
branch = master
|
||||
commit = 82f1553c4c7e68364f7e630b1c68f2aee8681dee
|
||||
parent = 252f8685b493d0dfd428e9439b0296109776b935
|
||||
commit = 9a8703e710760be8c88147d15414a1c581711625
|
||||
parent = eb34f9789c62745d87f37e76761b14d946bac300
|
||||
method = merge
|
||||
cmdver = 0.4.9
|
||||
cmdver = 0.4.1
|
||||
|
||||
@ -101,7 +101,6 @@ namespace ams::hos {
|
||||
Version_21_1_0 = ::ams::TargetFirmware_21_1_0,
|
||||
Version_21_2_0 = ::ams::TargetFirmware_21_2_0,
|
||||
Version_22_0_0 = ::ams::TargetFirmware_22_0_0,
|
||||
Version_22_1_0 = ::ams::TargetFirmware_22_1_0,
|
||||
|
||||
Version_Current = ::ams::TargetFirmware_Current,
|
||||
|
||||
|
||||
@ -41,8 +41,7 @@ namespace ams::pgl {
|
||||
u32 version;
|
||||
ncm::ContentType content_type;
|
||||
u8 id_offset;
|
||||
ncm::ContentMetaType content_meta_type;
|
||||
u8 reserved_0F;
|
||||
u8 reserved_0E[2];
|
||||
|
||||
static constexpr ContentMetaInfo Make(u64 id, u32 version, ncm::ContentType content_type, u8 id_offset) {
|
||||
return {
|
||||
|
||||
@ -345,11 +345,10 @@ namespace ams::pgl::srv {
|
||||
|
||||
/* Get the content meta info. */
|
||||
*out = {
|
||||
.id = reader.GetProgramId().value,
|
||||
.version = reader.GetProgramVersion(),
|
||||
.content_type = ncm::ContentType::Program,
|
||||
.id_offset = reader.GetProgramIndex(),
|
||||
.content_meta_type = reader.GetContentMetaType(),
|
||||
.id = reader.GetProgramId().value,
|
||||
.version = reader.GetProgramVersion(),
|
||||
.content_type = ncm::ContentType::Program,
|
||||
.id_offset = reader.GetProgramIndex(),
|
||||
};
|
||||
|
||||
R_SUCCEED();
|
||||
|
||||
@ -17,10 +17,10 @@
|
||||
|
||||
#define ATMOSPHERE_RELEASE_VERSION_MAJOR 1
|
||||
#define ATMOSPHERE_RELEASE_VERSION_MINOR 11
|
||||
#define ATMOSPHERE_RELEASE_VERSION_MICRO 1
|
||||
#define ATMOSPHERE_RELEASE_VERSION_MICRO 0
|
||||
|
||||
#define ATMOSPHERE_RELEASE_VERSION ATMOSPHERE_RELEASE_VERSION_MAJOR, ATMOSPHERE_RELEASE_VERSION_MINOR, ATMOSPHERE_RELEASE_VERSION_MICRO
|
||||
|
||||
#define ATMOSPHERE_SUPPORTED_HOS_VERSION_MAJOR 22
|
||||
#define ATMOSPHERE_SUPPORTED_HOS_VERSION_MINOR 1
|
||||
#define ATMOSPHERE_SUPPORTED_HOS_VERSION_MINOR 0
|
||||
#define ATMOSPHERE_SUPPORTED_HOS_VERSION_MICRO 0
|
||||
|
||||
@ -99,9 +99,8 @@
|
||||
#define ATMOSPHERE_TARGET_FIRMWARE_21_1_0 ATMOSPHERE_TARGET_FIRMWARE(21, 1, 0)
|
||||
#define ATMOSPHERE_TARGET_FIRMWARE_21_2_0 ATMOSPHERE_TARGET_FIRMWARE(21, 2, 0)
|
||||
#define ATMOSPHERE_TARGET_FIRMWARE_22_0_0 ATMOSPHERE_TARGET_FIRMWARE(22, 0, 0)
|
||||
#define ATMOSPHERE_TARGET_FIRMWARE_22_1_0 ATMOSPHERE_TARGET_FIRMWARE(22, 1, 0)
|
||||
|
||||
#define ATMOSPHERE_TARGET_FIRMWARE_CURRENT ATMOSPHERE_TARGET_FIRMWARE_22_1_0
|
||||
#define ATMOSPHERE_TARGET_FIRMWARE_CURRENT ATMOSPHERE_TARGET_FIRMWARE_22_0_0
|
||||
|
||||
#define ATMOSPHERE_TARGET_FIRMWARE_MIN ATMOSPHERE_TARGET_FIRMWARE(0, 0, 0)
|
||||
#define ATMOSPHERE_TARGET_FIRMWARE_MAX ATMOSPHERE_TARGET_FIRMWARE_CURRENT
|
||||
@ -193,7 +192,6 @@ namespace ams {
|
||||
TargetFirmware_21_1_0 = ATMOSPHERE_TARGET_FIRMWARE_21_1_0,
|
||||
TargetFirmware_21_2_0 = ATMOSPHERE_TARGET_FIRMWARE_21_2_0,
|
||||
TargetFirmware_22_0_0 = ATMOSPHERE_TARGET_FIRMWARE_22_0_0,
|
||||
TargetFirmware_22_1_0 = ATMOSPHERE_TARGET_FIRMWARE_22_1_0,
|
||||
|
||||
TargetFirmware_Current = ATMOSPHERE_TARGET_FIRMWARE_CURRENT,
|
||||
|
||||
|
||||
@ -36,11 +36,6 @@ namespace ams::mitm::fs {
|
||||
};
|
||||
|
||||
constexpr const ApplicationWithDynamicHeapInfo ApplicationsWithDynamicHeap[] = {
|
||||
/* Until Then. */
|
||||
/* Requirement ~34 MB. */
|
||||
/* No particular heap sensitivity. */
|
||||
{ 0x010019C023004000, 16_MB, 0_MB },
|
||||
|
||||
/* Trails in the Sky 1st Chapter. */
|
||||
/* Requirement ? MB. 16 MB stolen heap fixes a crash, though. */
|
||||
/* Unknown heap sensitivity. */
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user