8718 Commits

Author SHA1 Message Date
Daniel Nylander
83de8cbbb6 Add Swedish to citra.nsi 2025-04-19 19:35:04 +02:00
lannoene
908c5a468a Fix File::Write() not conforming to debug header validation (#952) 2025-04-19 19:35:03 +02:00
OpenSauce04
31df6288ec android: Restructure strings.xml 2025-04-19 19:35:03 +02:00
OpenSauce04
0528a7c12c android: Renamed quicksave_saving and quickload_loading strings to simply saving and loading
This better reflects their use, as they are no longer used exclusively for quicksaves.
2025-04-19 19:35:03 +02:00
kleidis
0345e07045 android: Add toast popup while saving states through UI 2025-04-19 19:35:03 +02:00
kleidis
33a4f20c05 android: Allow saving to quickslot from UI
Idk why this was done by the original author as there are no conflicts
2025-04-19 19:35:02 +02:00
David Griswold
7a47b3d4ff Implement screen gap setting (#622)
* implement screen gap

* type conversion fix for windows

* int setting
2025-04-19 19:35:02 +02:00
OpenSauce04
9658e6fbb1 Updated help strings to reflect new room implementation 2025-04-19 19:35:02 +02:00
OpenSauce04
29d06c81af cmake: Added citra_room_standalone target and ENABLE_ROOM_STANDALONE option 2025-04-19 19:35:01 +02:00
OpenSauce04
784e588b32 citra_room: Merge functionality into citra_meta 2025-04-19 19:35:01 +02:00
HurricanePootis
8887e4a3fc Qt: set desktop filename and organization domain #934 2025-04-19 19:35:00 +02:00
PabloMK7
e259fde0e6 Fix ncch loader building wrong update title ID (#930) 2025-04-19 19:29:02 +02:00
OpenSauce04
e994750d4b android: Disable title bar on Android 9 2025-04-19 19:16:42 +02:00
OpenSauce04
6d63eab514 Updated language translations via Transifex 2025-04-19 19:16:40 +02:00
OpenSauce04
bfe118e0db strings.xml: Uninstall Game --> Uninstall Application 2025-04-19 19:16:38 +02:00
OpenSauce04
16137152d1 configure_hotkeys.cpp: per-game --> per-application 2025-04-19 19:16:38 +02:00
David Griswold
5f787351cd android: Lime3DS to Azahar migration adjustments (#917)
* change dialog without write permissions

* Added update path from lime to azahar on android

* Shows the correct dialog info now

* remove unnecessary comments

* Adjusted `select_which_user_directory_to_use` string to be more readable

* improve the dialog box itself

* tougher fix than originally expected but all works as planned

* remove unnecessary code

* Updated license headers

* MainActivity.kt: Removed stray newline

* PermissionsHandler.kt: Move repeated "LIME3DS_DIRECTORY" string to `LIME3DS_DIRECTORY` constant

* Nitpicky comment adjustments

* Reverted superficial changes to HomeViewModel.kt

* PermissionsHandler.kt: `updateDirectory` --> `attemptAutomaticUpdateDirectory`

+ nitpicky formatting adjustment

* Moved PR additions to PermissionsHandler.kt to new file CitraDirectoryUtils.kt

---------

Co-authored-by: OpenSauce04 <opensauce04@gmail.com>
2025-04-19 19:16:37 +02:00
PabloMK7
02b9806cea Use common open source font on CHN/KOR/TWN (#920) 2025-04-19 18:28:24 +02:00
Briar
f1a06d2d26 android: Add turbo speed hotkey touch controls overlay button (#911)
* android: Add turbo speed hotkey touch controls overlay

* Adjusted default controller overlay location of turbo button

* Changed "Turbo Speed" overlay button to simply be referred to as "Turbo"

---------

Co-authored-by: OpenSauce04 <opensauce04@gmail.com>
2025-04-19 18:28:24 +02:00
Briar
516382e6b6 Fix FRAME_LIMIT int not being reset on exit if the turbo hotkey is spammed 2025-04-19 18:28:22 +02:00
Briar
2fb683c327 android: Clean up the turbo speed hotkey implementation
# Conflicts:
#	src/android/app/src/main/java/org/citra/citra_emu/NativeLibrary.kt
2025-04-19 18:28:21 +02:00
OpenSauce04
346ef528cd Revert "Removed seemingly redundant isEnabled overrides"
This reverts commit cd58ce998af1a4237e9b3ee15a13443bb0844a46.
2025-04-19 18:26:47 +02:00
David Griswold
d3b12211cc android: Original Portrait Layout (#625)
* Original Portrait Layout

Original Portrait Layout

* type conversion fix for win

* Updated license headers

* Applied clang-format

* android: Reordered Portrait Screen Layout menu

Custom Layout is now at the bottom of the list

---------

Co-authored-by: OpenSauce04 <opensauce04@gmail.com>
2025-04-19 18:26:46 +02:00
OpenSauce
4e1dba761c qt: Add quicksave / quickload hotkeys (#811)
* qt: Add quicksave / quickload hotkeys

* Adjusted strings

* main.ui: Remove stray newline

---------

Co-authored-by: David Griswold <novachild@gmail.com>
2025-04-19 18:26:46 +02:00
OpenSauce
7dff68912f android: Add isEnabled setting item conditional check (#814)
* android: Add `isEnabled` setting item conditional check

Co-authored-by: Charles Lombardo <clombardo169@gmail.com>
(Thanks to him for the idea of using DiffUtil)

Now it is possible to have a conditional check for each setting type which once met will disable itself and re-enable once the condition is unmet again in real-time

* Refactor setting checks to deduplicate repeated `isEditable && isEnabled` conditionals

This is done by adding a new value, `setting.isActive` which is equivalent to `setting.isEditable && setting.isEnabled`

* Removed seemingly redundant `isEnabled` overrides

* Updated license headers

---------

Co-authored-by: Kleidis <167202775+kleidis@users.noreply.github.com>
2025-04-19 18:26:45 +02:00
OpenSauce
fe01009dca Add turbo speed hotkey (#605)
* Add the turbo slider

* [WIP] Add fast forward toggle hotkey

* Make Increase/Decrease speed hotkeys change turbo key instead of `frame_limit`

* Allow non-runtime editable settings on `general` settings tab`

* `frame_limit` is now  non-runtime-editable

* Disable `toggle per game speed limit` if turbo mode is set

* Reset `frame_limit` back to initial value once the emulator closes

* Improve `AdjustSpeedLimit`

- Set frameskip value directly
- Bypass if turbo mode isn't active

* Some code cleanup

* Move `turbo_speed_slider` from UISettings to CommonSettings

Also rename to just `turbo_speed`

* android: Add turbo mode hotkey

* Fixed build failure + Applied clang-format

* configure_general.ui Make padding on right side of sliders consistent

Not sure why there's a difference here, so I just threw in a spacer

* android: Corrected build failures caused by bad merge

* Updated `turbo_speed_description` to be a little more descriptive

* android: Corrected turbo crash caused by bad JNI function names

* Updated license headers

* HotkeyFunctions.kt: Fixed minor fomatting irregularities

* Applied clang-format

---------

Co-authored-by: kleidis <167202775+kleidis@users.noreply.github.com>
# Conflicts:
#	src/android/app/src/main/java/org/citra/citra_emu/NativeLibrary.kt
2025-04-19 18:26:45 +02:00
OpenSauce
54c7d57aa7 framebuffer: Add hybrid layout mode to FrameLayoutFromResolutionScale (#807)
* framebuffer: Add hybrid layout mode to FrameLayoutFromResolutionScale

* framebuffer_layout.cpp: Moved seemingly misplaced `default` case to proper location

* framebuffer_layout.cpp: Fixed incorrect calculation of framebuffer dimensions for hybrid layout

* framebuffer_layout.cpp: Made implicit cast from float to int explicit

---------

Co-authored-by: Kleidis <167202775+kleidis@users.noreply.github.com>
2025-04-13 07:47:23 +02:00
OpenSauce04
1ff880b220 Corrected minor license header inconsistency 2025-04-13 07:42:07 +02:00
Gamer64
731e2120f6 android: Implement support for automatic resolution scale
Available on PC, but was missing on Android.
2025-04-12 22:49:42 +02:00
Kleidis
8c97827d07 android: Update emulation_pause icon on resume
If the fragment got paused while emualtionState also was paused manually
via the menu bar, once the fragment got unpasued , the binding would
still remain paused
2025-04-12 22:31:29 +02:00
AzaharPlus
0b1afb42bc android logo attribution 2025-04-09 21:49:03 +02:00
AzaharPlus
2534d41918 xml mentions of modification and qt logo attribution 2025-04-09 21:07:00 +02:00
AzaharPlus
1733f40f17 mentions in modified files 2025-04-09 15:30:35 +02:00
OpenSauce04
ff6b5e6cbe Updated license headers 2025-04-08 22:49:45 +02:00
OpenSauce04
790cc11535 qt: For Qt 6.9.0 and above, use QImage::flipped over QImage::mirrored
The latter has been deprecated, and is causing build failures where deprecations warnings are treated as errors.
2025-04-08 22:49:45 +02:00
AzaharPlus
f5eac522db all the keys 2025-04-07 23:48:00 +02:00
OpenSauce04
3407850895 qt: Explicitly set window icon 2025-04-07 23:18:46 +02:00
OpenSauce04
0843a628ce qt: Various updates to the settings menu to improve consistency
- All buttons which open a modal interface now disable themselves until their interface is closed
- Renamed button_linked_console to button_unlink_console to better reflect what it actually does
- Changed the warning icon of the Regenerate Console ID button to be the same as the Regenerate MAC Address button

# Conflicts:
#	src/citra_qt/configuration/configure_system.cpp
#	src/citra_qt/configuration/configure_system.ui
2025-04-07 22:38:50 +02:00
OpenSauce04
8db8049bf8 qt: Corrected stray mention of Lime3DS in FFmpeg error message 2025-04-07 20:22:41 +02:00
AzaharPlus
9b05803d6c use embedded keys 2025-04-07 19:48:18 +02:00
AzaharPlus
0929ff83a9 clarify keys 2025-04-07 19:23:45 +02:00
AzaharPlus
c1346e5e8a fix Secureinfo_A support 2025-04-06 19:36:48 +02:00
AzaharPlus
bce2941405 remove "set up system files" from qt menu 2025-04-04 22:44:33 +02:00
AzaharPlus
17207bf740 change linux user dir path 2025-04-04 13:54:13 +02:00
OpenSauce
9883b90e62 android: Add uninstall game/updates/dlc and open folder entries to about game dialog (#823)
* android: Add uninstall game and open folder options

* Updated license header

* getGameDirectories: Cleanup

* Fixed "Open Updates Folder" button not working correctly

* Made "Open Extra Folder" behaviour consistent with other options when Extra folder not found

* strings.xml: Corrected double newline

* android: Adjusted about game dialog layout

---------

Co-authored-by: Kleidis <167202775+kleidis@users.noreply.github.com>
2025-04-04 01:29:51 +02:00
AzaharPlus
bd76c84c6c change user dir path 2025-04-04 01:12:16 +02:00
AzaharPlus
5a42085fa0 fix windows build 2025-04-02 20:03:11 +02:00
AzaharPlus
3e64dc0c8c Restore features 2025-03-31 12:45:15 +02:00
OpenSauce
5ade69f5f4
android: Add game thumbnail to EmulationFragment nav drawer (#809)
* android: Add game thumbnail to `EmulationFragment` nav drawer

* Updated license header

* EmulationFragment.kt: Corrected formatting

* header_in_game.xml: Changed placeholder text

---------

Co-authored-by: Kleidis <167202775+kleidis@users.noreply.github.com>
2025-03-30 15:19:55 +01:00
OpenSauce
e6199780a5
android: Implement Expand to Display Cutout option (#597)
* android: Implement Expand to Display Cutout option

* Removed irrelevant comment

* Moved Expand to Cutout Area setting to Layout section

---------

Co-authored-by: Gamer64 <76565986+Gamer64ytb@users.noreply.github.com>
2025-03-30 14:59:46 +01:00