Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-08-22 | Swap "Plus" with "Minus" on the controller GUI (#1150) | literalmente-game | |
* Swap "Plus" with "Minus" on the controller GUI Major fix /s | |||
2018-08-21 | config: Fixed icon size get set to 0 | tech4me | |
2018-08-22 | Merge pull request #1136 from tech4me/master | bunnei | |
qt/main: Port part of citra(#3411), open savedata works | |||
2018-08-22 | Merge pull request #840 from FearlessTobi/port-3353 | bunnei | |
Port #3353 from Citra: "citra-qt: Add customizable speed limit target " | |||
2018-08-22 | Merge pull request #1141 from FearlessTobi/port-3902 | bunnei | |
Port #3902 from Citra: "Add restart hotkey & menu option" | |||
2018-08-21 | Port #3902 from Citra: "Add restart hotkey & menu option" | fearlessTobi | |
2018-08-21 | Port #4056 from Citra: "Add Clear Recent Files menu action" | fearlessTobi | |
2018-08-21 | qt/main: Port part of citra(#3411), open savedata works | tech4me | |
2018-08-20 | service/filesystem: Use forward declarations where applicable | Lioncash | |
Avoids the need to rebuild multiple source files if the filesystem code headers change. This also gets rid of a few instances of indirect inclusions being relied upon | |||
2018-08-21 | Port #3353 from Citra | fearlessTobi | |
2018-08-20 | game_list: Avoid uninitialized variables when retrieving program ID | Lioncash | |
Avoids potentially leaving this variable uninitialized based off the loader failing to retrieve the ID value. | |||
2018-08-19 | Added check to see if ARB_texture_mirror_clamp_to_edge is supported | David Marcec | |
2018-08-16 | qt/main: Unindent code in OnMenuInstallToNAND() | Lioncash | |
We can change this into an early-return if the filename is empty. There's no need to include all of the code within the if statement. | |||
2018-08-16 | qt/main: Make installation dialog text within OnMenuInstallToNAND() translatable | Lioncash | |
This is user-facing text, so it should be marked as translatable by Qt. | |||
2018-08-16 | qt/main: Get rid of compilation warnings | Lioncash | |
Gets rid of truncation warnings about conversion to int. While we're at it, we can also de-hardcode the buffer size being used. | |||
2018-08-15 | Merge pull request #1005 from DarkLordZach/registered-fmt | bunnei | |
file_sys: Add support for registration format | |||
2018-08-15 | loader: Make ResultStatus directly compatible with fmt | Lioncash | |
We can make the enum class type compatible with fmt by providing an overload of operator<<. While we're at it, perform proper bounds checking. If something exceeds the array, it should be a hard fail, because it's, without a doubt, a programmer error in this case. | |||
2018-08-11 | registration: Add support for force overwrite of installed | Zach Hilman | |
2018-08-11 | game_list: Split game list scans to multiple functions | Zach Hilman | |
Avoids unnecessary rebuilds of control data on every layer of recursion in AddFstEntriesToGameList | |||
2018-08-11 | qt: Use custom RawCopy with progress bar for installs | Zach Hilman | |
2018-08-11 | game_list: Populate control data from installed NAND | Zach Hilman | |
2018-08-11 | file_sys: Comply to style guidelines | Zach Hilman | |
2018-08-11 | qt: Add 'Install to NAND' option to menu | Zach Hilman | |
Prompts for title type on NCA files. | |||
2018-08-11 | game_list: Modify game list to scan installed titles | Zach Hilman | |
2018-08-11 | core: Namespace EmuWindow | Lioncash | |
Gets the class out of the global namespace. | |||
2018-08-11 | Merge pull request #970 from DarkLordZach/loader-errors | bunnei | |
loader: Add more descriptive errors | |||
2018-08-10 | qt/game_list: Resolve truncation warning within GameListItemPath's constructor | Lioncash | |
Silences a warning about truncating from size_t to u32 | |||
2018-08-10 | gt/game_list: Use std::array in GameListItemPath's data() function | Lioncash | |
We don't need to use a heap-allocated std::vector here, given we explicitly know the bounds. | |||
2018-08-10 | qt/game_list: Remove redundant base class constructor from initializer list | Lioncash | |
This is called automatically anyways. | |||
2018-08-09 | game_list: Reorder error checks | Zach Hilman | |
clang-format fix | |||
2018-08-09 | loader: Add more descriptive errors | Zach Hilman | |
Full list of new errors and descriptions in core/loader/loader.h | |||
2018-08-09 | textures: Refactor out for Texture/Depth FormatFromPixelFormat. | bunnei | |
2018-08-08 | vfs: Fix documentation | Zach Hilman | |
2018-08-08 | vfs: Fix typo in VfsFilesystem docs | Zach Hilman | |
2018-08-08 | file_util: Use enum instead of bool for specifing path behavior | Zach Hilman | |
2018-08-08 | core: Port core to VfsFilesystem for file access | Zach Hilman | |
2018-08-08 | Merge pull request #850 from DarkLordZach/icon-meta | bunnei | |
Add Icons and Metadata Support | |||
2018-08-07 | configure_gamelist: Use explicit QVariant constructor | Zach Hilman | |
2018-08-07 | qt/hotkey: Get rid of global hotkey map instance | Lioncash | |
Instead, we make a proper registry class and house it within the main window, then pass it to whatever needs access to the loaded hotkeys. This way, we avoid a global variable, and don't need to initialize a std::map instance before the program can do anything. | |||
2018-08-06 | loader: Add icon and title support to XCI | Zach Hilman | |
2018-08-06 | Use const where applicable | Zach Hilman | |
2018-08-06 | Avoid parsing RomFS to directory in NCA | Zach Hilman | |
2018-08-06 | Merge pull request #947 from lioncash/encoding | bunnei | |
game_list: Use QString::fromStdString() where applicable instead of c_str() | |||
2018-08-06 | GDBStub works with both Unicorn and Dynarmic now (#941) | Hedges | |
* GDBStub works with both Unicorn and Dynarmic now * Tidy up | |||
2018-08-06 | Merge pull request #943 from lioncash/decl | bunnei | |
game_list: Join declarations and assignments in onTextChanged() | |||
2018-08-06 | Merge pull request #946 from lioncash/compress | bunnei | |
qt/main: Collapse if statement in UpdateRecentFiles() | |||
2018-08-06 | Merge pull request #944 from lioncash/menu | bunnei | |
qt: Don't show error dialog when canceling the Load Folder dialog | |||
2018-08-06 | Merge pull request #942 from lioncash/default | bunnei | |
qt: Minor cleanup-related changes | |||
2018-08-06 | Merge pull request #940 from lioncash/private | bunnei | |
kernel/event: Make data members private | |||
2018-08-06 | qt/main: Avoid sign conversions in UpdateRecentFiles() | Lioncash | |
This was intermixing signed and unsigned values when they could all just be signed. |