summaryrefslogtreecommitdiff
path: root/src/citra_qt/main.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Massive removal of unused modulesGravatar James Rowe2018-01-121-877/+0
|
* Remove lots more 3DS-specific code.Gravatar bunnei2017-10-121-13/+1
|
* telemetry: Log frontend type.Gravatar bunnei2017-08-251-0/+2
|
* citra_qt: Show one-time callout messages to user.Gravatar bunnei2017-08-251-0/+44
|
* Quickfix typo in OpenGL 3.3 error messageGravatar Andrea Pascal2017-08-041-1/+1
| | | User pointed out on the Discord server that "nothave" is erroneously concatenated. Added a space to prevent it.
* citra-qt: load ui theme at startup and config change.Gravatar Kloen2017-06-241-0/+21
|
* Addressed Bunnei's review comments, and made some other tweaks:Gravatar TheKoopaKingdom2017-06-021-5/+10
| | | | | - Deleted GetStatus() because it wasn't used anywhere outside of Core::System. - Fixed design flaw where the message bar status could be set despite the game being stopped.
* Fixed wiki URLs.Gravatar TheKoopaKingdom2017-06-021-6/+8
|
* Created a whitelist of system archives to prevent false positives creating ↵Gravatar TheKoopaKingdom2017-06-021-9/+7
| | | | dialogs.
* Optimized messages that were repetitive and added ability for core errors to ↵Gravatar TheKoopaKingdom2017-06-021-34/+52
| | | | specify more details optionally.
* Added message to status bar to show core errors ignored by the user.Gravatar TheKoopaKingdom2017-06-021-1/+10
|
* Made some changes from review comments:Gravatar TheKoopaKingdom2017-06-021-17/+22
| | | | | | | | - Made LoadKernelSystemMode return a pair consisting of a system mode and a result code (Could use review). - Deleted ErrorOpenGL error code in favor of just having ErrorVideoCore. - Made dialog messages more clear. - Compared archive ID in fs_user.cpp to ArchiveIdCode::NCCH as opposed to hex magic. - Cleaned up some other stuff.
* Added system for handling core errors in citra-qt.Gravatar TheKoopaKingdom2017-06-021-17/+69
|
* Remove some unnecessary inclusions of video_core.hGravatar Yuri Kunde Schlesner2017-05-271-1/+0
|
* Remove ability to load symbol mapsGravatar Yuri Kunde Schlesner2017-05-071-13/+0
| | | | | This was now mostly unused except by thread creation, which used a symbol of the entrypoint, if available, to name the thread.
* citra-qt: Remove callstack widgetGravatar Yuri Kunde Schlesner2017-05-071-11/+0
| | | | | | | | Appears to be currently broken, and given the complexity of doing this for ARM code without debugging information, should probably be left to an external tool or library. Use the GDB stub instead. Closes #586
* citra-qt: Remove disassembler widgetGravatar Yuri Kunde Schlesner2017-05-071-14/+0
| | | | | | | | | It has performance problems, a very misleading UI, and is broken in general. It has essentially been superceded by the GDB stub, but if we wanted a built-in disassembler in the future it'd essentially need to be rewritten from scratch anyway. Closes #427, #1480
* citra-qt: game list search function (#2673)Gravatar Nico Bosshard2017-04-291-1/+22
| | | | | | | | | | | | | | | | * citra-qt: game list search function * Empty search field during game list refresh * Code improvements * Code formatting * Autofocus search field * JayFoxRox's recommendations * lioncash's review
* Better looking status bar under Linux Ubuntu (#2662)Gravatar Cereal-Killa2017-04-121-0/+1
| | | | | * Remove borders from status bar items On Ubuntu the status bar didn't look as good as on Windows due to some border being drawn around each status bar cell.
* citra-qt: Move config dialog code to its own directoryGravatar Lioncash2017-04-031-2/+2
|
* citra-qt: remove dead codeGravatar wwylele2017-03-171-1/+0
|
* Merge pull request #2587 from yuriks/status-barGravatar Yuri Kunde Schlesner2017-02-261-5/+52
|\ | | | | Replace built-in Profiler with indicators in status bar
| * Qt: Tweak status bar stylingGravatar Yuri Kunde Schlesner2017-02-261-0/+2
| |
| * Qt: Increase status bar update interval to 2 secondsGravatar Yuri Kunde Schlesner2017-02-261-1/+1
| |
| * Qt: Add tooltips to status bar displaysGravatar Yuri Kunde Schlesner2017-02-261-0/+7
| |
| * Qt: Don't show fractional figures in the status barGravatar Yuri Kunde Schlesner2017-02-261-2/+2
| | | | | | | | | | They're not very important and this makes the display changes less often, making it less distracting.
| * Remove built-in (non-Microprofile) profilerGravatar Yuri Kunde Schlesner2017-02-261-5/+0
| |
| * Add performance statistics to status barGravatar Yuri Kunde Schlesner2017-02-261-0/+27
| |
| * Qt: Add (empty) status barGravatar Yuri Kunde Schlesner2017-02-261-0/+16
| |
* | Gui: Change title bar to include build nameGravatar James Rowe2017-02-231-1/+2
|/ | | | | Nightly builds now have "Citra Nightly" in the titlebar Bleeding edge builds now have "Citra Bleeding Edge" in the titlebar
* Qt: Move some connections from .ui file to codeGravatar Yuri Kunde Schlesner2017-02-181-0/+3
|
* Qt: Reorganize connection of menu eventsGravatar Yuri Kunde Schlesner2017-02-181-13/+22
|
* Qt: Re-organize setup of debugging widgetsGravatar Yuri Kunde Schlesner2017-02-181-35/+34
|
* Qt: Fix action name to match conventionsGravatar Yuri Kunde Schlesner2017-02-181-3/+3
|
* Qt: Make IsSingleFileDropEvent staticGravatar Yuri Kunde Schlesner2017-02-171-1/+1
|
* Qt: Allow any file extension in Open dialogGravatar Yuri Kunde Schlesner2017-02-171-2/+3
|
* Qt: Remove unnecessary std::string usageGravatar Yuri Kunde Schlesner2017-02-171-11/+12
|
* added drag n drop featureGravatar noah the goodra2017-02-161-1/+35
|
* citra-qt: Don't attempt to scan files with unsupported extensions (#2402)Gravatar Kloen Lansfiel2017-02-121-3/+8
|
* Removed unused and outdated external qhexeditGravatar Kloen2017-01-221-1/+1
|
* citra-qt: Removed unused and unimplemented ramview files.Gravatar Kloen2017-01-221-1/+0
|
* Address clang-format issues.Gravatar bunnei2016-12-211-14/+13
|
* core: Consolidate core and system state, remove system module & cleanups.Gravatar bunnei2016-12-211-1/+0
|
* core: Consolidate top-level system state into a singleton.Gravatar bunnei2016-12-211-55/+26
|
* citra-qt: Move graphics debugging code into its own folderGravatar Lioncash2016-12-211-6/+6
| | | | | Keeps all graphics debugging stuff from cluttering up the root debugger folder
* citra-qt: Move bits of constructor behavior to named functionsGravatar Lioncash2016-12-191-61/+78
| | | | | Makes the initialization process a tad easier to grok, since the constructor isn't just a glob of random unrelated behaviors.
* Merge pull request #2351 from CaptV0rt3x/masterGravatar bunnei2016-12-181-0/+1
|\ | | | | Fixed game_list focus issue.
| * Fixed game_list focusing issue.Gravatar Vamsi Krishna2016-12-181-0/+1
| | | | | | | | added line render_window->setFocus();
* | screen swap - Hotkey mappingGravatar Vamsi Krishna2016-12-191-1/+1
|/
* main: Open folder when open save folder location context menu is clickedGravatar MerryMage2016-12-151-0/+19
|