summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/system_archive (follow)
Commit message (Collapse)AuthorAgeFilesLines
* set: return version info from system archiveLiam2023-10-201-0/+4
|
* nx_tzdb: Correct Antarctica spellinglat9nq2023-06-161-1/+1
|
* time_zone_binary: Add zoneinfo datalat9nq2023-06-051-642/+64
| | | | | | | | | | Adds the basic time zone data for the system archive. time_zone_binary: Implement full system archive time_zone_binary: Remove unneeded template tz_binary: Make GenerateFiles static
* core: ns: Implement pl:s serviceNarr the Reg2022-09-031-1/+1
|
* general: Convert source file copyright comments over to SPDXMorph2022-04-2324-72/+48
| | | | | This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
* core: Remove unused includesameerj2021-11-041-1/+0
|
* hle: api_version: Add HLE API version constantsMorph2021-06-161-33/+15
|
* Merge pull request #6070 from Morph1984/sysver-11.0.1bunnei2021-03-171-5/+5
|\ | | | | system_version: Update to 11.0.1
| * system_version: Update to 11.0.1Morph2021-03-141-5/+5
| |
* | system_archive: Update NgWord archive versionMorph2021-03-141-2/+2
|/
* system_archive: Add + and - buttons to the Nintendo Extended OSS fontMorph2020-12-182-315/+343
|
* system_archive: Update Nintendo Extended OSS fontMorph2020-12-172-182/+347
| | | | Co-authored-by: Its-Rei <kupfel@gmail.com>
* system_version: Update to 11.0.0Chloe Marcec2020-12-051-6/+6
|
* vfs_vector: Make creation of array vfs files less verboseLioncash2020-08-053-40/+29
| | | | | | | | | We can add a helper function to make creation of these files nicer. While we're at it, we can eliminate an unnecessary std::array copy in the constructor. This makes the overhead on some of these functions way less intensive, given some arrays were quite large. e.g. The timezone location names are 9633 bytes in size.
* time_zone_binary: Make use of designated initializersLioncash2020-08-031-17/+25
|
* Merge pull request #4099 from MerryMage/macOS-buildbunnei2020-06-201-1/+1
|\ | | | | Fix compilation on macOS
| * shared_font: Service::NS::EncryptSharedFont takes a size_t&MerryMage2020-06-181-1/+1
| |
* | mii_model: Remove redundant std::moveMerryMage2020-06-191-1/+1
|/ | | | Named return value optimization automatically applies here.
* file_sys: Update SystemVersion archive to version 10.0.2David Marcec2020-05-161-7/+7
|
* Revert "system_archive: Fix Korean and Chinese fonts"bunnei2020-01-315-880167/+27164
|
* Merge pull request #3151 from FearlessTobi/fix-koreanbunnei2020-01-305-27164/+880167
|\ | | | | system_archive: Fix Korean and Chinese fonts
| * Disable clang-format for font filesFearlessTobi2020-01-243-0/+6
| |
| * system_archive: Fix Chinese fontFearlessTobi2020-01-192-13582/+694524
| | | | | | | | Adds the proper OSS font for the Chinese language.
| * system_archive: Fix Korean fontFearlessTobi2020-01-192-13582/+185637
| | | | | | | | Fixes Korean fonts when using Open-source system archives.
* | system_archive: Add a basic HLE implementation for time zone binary.bunnei2020-01-043-1/+673
|/
* pl_u: Fix mismatched rebase size error in font encryptionZach Hilman2019-10-131-8/+6
|
* pl_u: Use kernel physical memoryZach Hilman2019-10-131-4/+7
|
* pl_u: Use OSS system archives if real archives don't existZach Hilman2019-10-131-2/+1
|
* system_archive: Synthesize shared fonts system archivesZach Hilman2019-10-133-5/+101
|
* externals: Move OSS font data to file_sys in coreZach Hilman2019-10-1312-0/+73309
|
* Revert "Merge pull request #2709 from DarkLordZach/oss-ext-fonts-1"David Marcec2019-09-2215-73412/+5
| | | | | This reverts commit fa1c60c33ef88c6cd0b72da46842dc9098db712d, reversing changes made to e34899067b60a69bca02761bd1290c6824bb559a.
* pl_u: Use kernel physical memoryZach Hilman2019-09-221-4/+7
|
* pl_u: Use OSS system archives if real archives don't existZach Hilman2019-09-221-2/+1
|
* system_archive: Synthesize shared fonts system archivesZach Hilman2019-09-223-5/+101
|
* externals: Move OSS font data to file_sys in coreZach Hilman2019-09-2212-0/+73309
|
* system_archive: Add open-source reimplementation of MiiModel dataZach Hilman2019-07-103-1/+61
|
* set_sys: Use official nintendo version stringZach Hilman2019-03-112-8/+15
|
* system_version: Correct sizes on VectorVfsFile constructionZach Hilman2019-03-111-4/+4
|
* set_sys: Implement GetFirmwareVersion(2) for libnx hosversionZach Hilman2019-03-103-1/+63
| | | Uses the synthesized system archive 9 (SystemVersion) and reports v5.1.0-0.0
* system_archive: Implement open source NgWord2Zach Hilman2018-12-063-1/+41
|
* ng_word: Deduplicate use of a constant valueLioncash2018-12-051-1/+1
| | | | | We've already given the constant to the vector itself, so we don't need to re-hardcode it in the array.
* system_archive: Use a regular function pointer instead of std::function for file-scope system archive arrayLioncash2018-12-051-3/+2
| | | | | | | This allows the array to be constexpr. std::function is also allowed to allocate memory, which makes its constructor non-trivial, we definitely don't want to have all of these execute at runtime, taking up time before the application can actually load.
* file_sys: Implement system archive synthesizer for NgWord (806)Zach Hilman2018-11-233-4/+59
|
* file_sys: Add framework for synthesizing open source archivesZach Hilman2018-11-162-0/+105