summaryrefslogtreecommitdiff
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | | | | | android: Adapt EmulationActivity to navigation componentGravatar Charles Lombardo2023-06-149-74/+86
| |/ / / / / / |/| | | | | |
* | | | | | | Merge pull request #10603 from lat9nq/tz-more-completeGravatar bunnei2023-06-1313-710/+383
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | core,common: Implement missing time zone data/computations
| * | | | | | | tz_manager: Fix comparison to wrong integerGravatar lat9nq2023-06-051-1/+1
| | | | | | | |
| * | | | | | | tz_manager: Implement missing transition timesGravatar lat9nq2023-06-051-1/+59
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | time_zone_manager: Use s64 storage
| * | | | | | | tz_manager: Warn on unimplemented codeGravatar lat9nq2023-06-051-0/+7
| | | | | | | |
| * | | | | | | tz_manager: Fix character offset not advancingGravatar lat9nq2023-06-051-0/+1
| | | | | | | |
| * | | | | | | tz_manager: Fix off-by-one errorGravatar lat9nq2023-06-051-4/+4
| | | | | | | |
| * | | | | | | time_zone: Handle offset time zonesGravatar lat9nq2023-06-051-38/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | time_zone: Remove maybe_unused time_zone: Use s64 storages time_zone: Catch by reference
| * | | | | | | time_zone_binary: Add zoneinfo dataGravatar lat9nq2023-06-052-643/+65
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
| * | | | | | | time: Implement missing servicesGravatar Narr the Reg2023-06-057-11/+106
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Implements GetTotalLocationNameCount LoadLocationNameList and GetTimeZoneRuleVersion. tz-manager: Fix sign issue
| * | | | | | | time_zone_manager: Implement go_ahead/go_backGravatar lat9nq2023-06-051-1/+39
| | | | | | | |
| * | | | | | | tz_content_manager: Try the system time zone firstGravatar lat9nq2023-06-051-2/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If we can't find the normal time zone string, try searching for the closest one.
| * | | | | | | common: Move system time zone string detectionGravatar lat9nq2023-06-053-76/+84
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Moves it from Settings to Common::TimeZone, since this algorithm doesn't depend on the setting. It also lets us use it in other libraries. common: Various fixes time_zone: Don't double up the std::abs Too many absolute values were causing mirrored time zones to resolve as the same.
| * | | | | | | configure_system: Remove external offset on custom rtcGravatar lat9nq2023-06-051-2/+1
| | | | | | | |
| * | | | | | | time: Remove auto timezone considerationGravatar lat9nq2023-06-053-33/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | GetTimeZoneString no longer reports a setting unique to yuzu, so we can assume a valid timezone string in core.
| * | | | | | | settings: Always report a valid time zoneGravatar lat9nq2023-06-051-2/+76
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Prevents needing to deduce the non-Switch setting in core. Instead, we deduce the meaning of this setting where the heresy is committed, in common. settings: Remove strftime usage GetTimeZoneString: Use standard features Also forces GMT on MinGW due to broken strftime.
| * | | | | | | time_manager: Don't offset RTC by system time zoneGravatar lat9nq2023-06-051-5/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This causes the emulated system's universal time to be on the user's clock, and the user time to be off if they set a time zone. time_manager: Remove GetExternalRtcTime
| * | | | | | | tz_content_manager: Detect system time zoneGravatar lat9nq2023-06-051-1/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Uses C++20 tzdb to determine the system timezone. The switch uses the 597 posix time zones, so this needs tests if the system time zone isn't posix-compliant.
* | | | | | | | Merge pull request #10760 from FearlessTobi/translationsGravatar Charles Lombardo2023-06-132-0/+18
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | android: Declare languages in locales_config.xml
| * | | | | | | | android: Declare languages in locales_config.xmlGravatar FearlessTobi2023-06-132-0/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is required to make per-app language swithcing possible on Android 13.
* | | | | | | | | Merge pull request #10751 from german77/touchGravatar Charles Lombardo2023-06-131-2/+4
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | android: Fix touch input
| * | | | | | | | | android: Fix touch inputGravatar german772023-06-131-2/+4
| | | | | | | | | |
* | | | | | | | | | Merge pull request #10747 from liamwhite/arm-interface-decoupleGravatar bunnei2023-06-1315-172/+189
|\ \ \ \ \ \ \ \ \ \ | |_|_|_|/ / / / / / |/| | | | | | | | | core: decouple ARM interface from Dynarmic
| * | | | | | | | | core: decouple ARM interface from DynarmicGravatar Liam2023-06-1215-172/+189
| |/ / / / / / / /
* | | | | | | | | Merge pull request #10746 from bunnei/update-android-settingsGravatar bunnei2023-06-1219-110/+28
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | android: Update settings, remove unused translations
| * | | | | | | | | android: settings: Disable force_max_clock by default.Gravatar bunnei2023-06-123-5/+5
| | | | | | | | | |
| * | | | | | | | | android: settings: Add reactive flushing as a default-disabled setting.Gravatar bunnei2023-06-125-0/+24
| | | | | | | | | |
| * | | | | | | | | android: res: Remove translated strings that no longer exist.Gravatar bunnei2023-06-1214-106/+0
| |/ / / / / / / /
* | | | | | | | | Merge pull request #10675 from liamwhite/scalerGravatar liamwhite2023-06-121-8/+12
|\ \ \ \ \ \ \ \ \ | |/ / / / / / / / |/| | | | | | | | image_info: adjust rescale thresholds and refactor constant use
| * | | | | | | | image_info: adjust rescale thresholds and refactor constant useGravatar Liam2023-06-081-8/+12
| | |_|_|_|/ / / | |/| | | | | |
* | | | | | | | Merge pull request #10743 from FearlessTobi/translationsGravatar bunnei2023-06-1214-0/+4816
|\ \ \ \ \ \ \ \ | | |/ / / / / / | |/| | | | | | android: Add translation files manually
| * | | | | | | android: Add translation files manuallyGravatar FearlessTobi2023-06-1314-0/+4816
| | | | | | | |
* | | | | | | | Merge pull request #10705 from german77/updatesGravatar bunnei2023-06-127-5/+183
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | | android: Add update and DLC support
| * | | | | | | android: Add update supportGravatar Narr the Reg2023-06-117-5/+183
| | | | | | | |
* | | | | | | | Merge pull request #10728 from t895/game-hashGravatar bunnei2023-06-121-7/+12
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | android: Use autogenerated hash code function for Game class
| * | | | | | | | android: Use autogenerated hash code function for Game classGravatar Charles Lombardo2023-06-111-7/+12
| | |_|_|_|_|/ / | |/| | | | | |
* | | | | | | | Merge pull request #10724 from t895/auto-version-propertyGravatar bunnei2023-06-121-1/+15
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | android: Use autoVersion when gradle property is set
| * | | | | | | | android: Use autoVersion when gradle property is setGravatar Charles Lombardo2023-06-111-1/+15
| |/ / / / / / /
* | | | | | | | Merge pull request #10699 from liamwhite/conditional-barrierGravatar Matías Locatti2023-06-1210-0/+65
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | shader_recompiler: remove barriers in conditional control flow when device lacks support
| * | | | | | | | shader_recompiler: remove barriers in conditional control flow when device ↵Gravatar Liam2023-06-1010-0/+65
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | lacks support
* | | | | | | | | Merge pull request #10693 from liamwhite/f64-to-f32Gravatar bunnei2023-06-128-0/+198
|\ \ \ \ \ \ \ \ \ | |_|_|_|_|_|/ / / |/| | | | | | | | shader_recompiler: translate f64 to f32 when unsupported on host
| * | | | | | | | shader_recompiler: translate f64 to f32 when unsupported on hostGravatar Liam2023-06-108-0/+198
| | | | | | | | |
* | | | | | | | | Merge pull request #10718 from liamwhite/buffered-ioGravatar Morph2023-06-121-1/+1
|\ \ \ \ \ \ \ \ \ | |_|_|/ / / / / / |/| | | | | | | | qt: use larger buffer for update install
| * | | | | | | | qt: use larger buffer for update installGravatar Liam2023-06-111-1/+1
| | | | | | | | |
* | | | | | | | | Merge pull request #10668 from Kelebek1/reduce_vertex_bindingsGravatar bunnei2023-06-116-24/+148
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Combine vertex/transform feedback buffer binding into a single call
| * | | | | | | | | Combine vertex/transform feedback buffer binding into a single callGravatar Kelebek12023-06-086-24/+148
| | | | | | | | | |
* | | | | | | | | | Merge pull request #10713 from t895/gradle-updatesGravatar bunnei2023-06-112-16/+11
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | android: Gradle updates
| * | | | | | | | | | android: Update dependenciesGravatar Charles Lombardo2023-06-111-4/+4
| | | | | | | | | | |
| * | | | | | | | | | android: Differentiate build types with new namesGravatar Charles Lombardo2023-06-112-2/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change the applicationIdSuffix and app launcher title based on build type
| * | | | | | | | | | Android: Remove unused relWithVersionCode build typeGravatar Charles Lombardo2023-06-111-10/+0
| | |_|_|_|/ / / / / | |/| | | | | | | |