summaryrefslogtreecommitdiff
path: root/src/mainwindow.cpp
Commit message (Collapse)AuthorAgeFilesLines
* fixes for the profiles dialog:isanae2021-01-041-46/+71
| | | | | | - don't refresh before showing the dialog, this happened because setCurrentIndex() was called to reselect the old item after <manage> was selected - can't use previousIndex after the dialog has been shown, the ordering might have changed if profiles were created/removed - don't call activateSelectedProfile() manually when 'select' is clicked from the dialog, just call setCurrentText() and let it fire the event again, then return immediately so it's not done twice
* profiles dialog:isanae2020-12-291-2/+15
| | | | | - added select button - select new profile in the list after creating
* update mod counts for creating/restoring backupsisanae2020-12-281-0/+6
|
* refresh action, added in toolbar and menuisanae2020-12-281-1/+5
|
* delete shortcut for save gamesisanae2020-12-281-4/+1
|
* split saves tab, no changesisanae2020-12-281-258/+18
|
* fixed warning about ini files with utf8 bomisanae2020-12-281-0/+4
| | | | fixed main thread name still getting clobbered by QWebEngine
* fixed crash for ignore data/mark converted on multiple modsisanae2020-12-281-15/+25
| | | | | | also fixes only half the selected items being handled at a time the selection must be copied first because it's live and will get invalidated when filters are being used there was some weird connect() calls for every item, not sure why
* offline mode:isanae2020-12-281-6/+25
| | | | | - don't try to login on startup - don't try to update loot when sorting and display a warning that the master list might be stale
* custom browser commandisanae2020-12-281-6/+6
| | | | changed some places that used QDesktopServices to use shell::Open() from uibase instead
* removed setUpdateDelay(false) calls, it's the defaultisanae2020-12-261-1/+0
| | | | FilterWidget for downloads tab
* split downloads tabisanae2020-12-261-81/+13
|
* don't update mods after installing in offline modeisanae2020-12-261-0/+4
|
* Avoid duplicating code to simulate startup.Mikaël Capelle2020-12-041-13/+2
|
* Add MainWindow::onPluginRegistrationChanged.Mikaël Capelle2020-12-041-10/+9
|
* Add signals (not used yet) for registering/unregistering plugins.Mikaël Capelle2020-12-021-1/+10
|
* The Golden CommentSeth Riley2020-12-011-0/+2
|
* Merge https://github.com/ModOrganizer2/modorganizer into ignore_altSeth Riley2020-12-011-113/+109
|\
| * Fix conflicts with master.Mikaël Capelle2020-11-271-8/+3
| |
| * Fix PluginContainer::setUserInterface().Mikaël Capelle2020-11-231-2/+2
| |
| * Add timer to the save list watcher to avoid error during refresh.Mikaël Capelle2020-11-211-1/+4
| |
| * Update following addition of IPluginGame::listSaves().Mikaël Capelle2020-11-181-36/+17
| |
| * Merge pull request #1292 from Holt59/iplugin-isactive-refactoringMikaël Capelle2020-11-181-69/+86
| |\ | | | | | | IPlugin::isActive refactoring
| | * Proper handling of mod pages.Mikaël Capelle2020-11-131-10/+41
| | |
| | * Better 'Browse Mod Page' menu.Mikaël Capelle2020-11-131-34/+22
| | |
| | * Fix display of tools in the MainWindow menu.Mikaël Capelle2020-11-111-25/+26
| | |
| | * Hide Tool action instead of not adding them.Mikaël Capelle2020-11-111-8/+3
| | |
| | * Replace usage of IPlugin::isActive().Mikaël Capelle2020-11-111-3/+5
| | |
* | | Ignore ALT-key event when ui is lockedQudix2020-11-181-4/+6
|/ /
* | Merge branch 'master' of https://github.com/ModOrganizer2/modorganizer into ↵Qudix2020-11-141-4/+9
|\ \ | | | | | | | | | tracking_integration
| * \ Merge branch 'master' of https://github.com/ModOrganizer2/modorganizer into ↵Qudix2020-11-141-1/+1
| |\ \ | | | | | | | | | | | | master
| | * | Fix order of saves.Mikaël Capelle2020-11-131-1/+1
| | |/
| * | Using AppConfigQudix2020-11-091-3/+8
| | |
| * | Merge branch 'master' of https://github.com/ModOrganizer2/modorganizer into ↵Qudix2020-11-091-2/+5
| |\| | | | | | | | | | master
| * | Merge branch 'master' of https://github.com/ModOrganizer2/modorganizer into ↵Seth Riley2020-11-061-56/+69
| |\ \ | | | | | | | | | | | | master
| * | | Implement suggestionsSeth Riley2020-11-031-3/+3
| | | |
| * | | Fixed tutorialsSeth Riley2020-11-021-2/+2
| | | |
* | | | Add a toggle for trackingQudix2020-11-111-1/+1
| |_|/ |/| |
* | | Merge pull request #1284 from isanae/command-line-cleanupisanae2020-11-091-2/+2
|\ \ \ | | | | | | | | Command line cleanup
| * | | stopped using core dump stuff from usvfs, mo has its ownisanae2020-11-071-2/+2
| | |/ | |/| | | | | | | | | | set exception handler at the start, it can handle not having qt or data paths hopefully fixed infinite crash dumps
* / | Remember currently open tab in right panel.Mikaël Capelle2020-11-081-0/+3
|/ /
* | renamed InstanceManager::instance() to singleton() to avoid confusionisanae2020-11-061-1/+1
| |
* | replaced #pragma once by ifdefsisanae2020-11-031-22/+9
| | | | | | | | | | | | | | changed pointer to ref to NexusInterface on_actionChange_Game_triggered() now creates the dialog itself instead of calling test code fixed broken command line options, they'd be reset before they were used removed useless explicit
* | fixes after rebasingisanae2020-11-031-1/+1
| |
* | moved nexus api stuff to GlobalSettingsisanae2020-11-031-2/+2
| | | | | | | | | | | | | | pass a pointer to Settings around for things that can be called without settings, when creating the first instance added dummy plugin list, mod list and iorganizer to initialize plugins without an instance moved PluginContainer into the core filter, had nothing to do with the plugins list NexusInterface is now created manually instead of being a static singleton because it needs to know if the settings are available
* | fixed boost bind warningsisanae2020-11-031-1/+3
| |
* | split nexus connection stuff into NexusConnectionUI so it can be reused in ↵isanae2020-11-031-31/+31
| | | | | | | | | | | | | | | | | | | | the instance creation dialog removed the PluginContainer* parameter from NexusInterface::instance() - it's a singleton, so it only needs to be given once, not every time - it doesn't even matter because the first time instance() is called, it creates the singleton, but the plugin container is always null - and setPluginContainer() is called much later from OrganizerCore with the correct value added non functional nexus page to instance creation dialog
* | hide tutorial question optionisanae2020-11-031-5/+25
| |
* | fixed settings doing weird stuff with multiple instancesisanae2020-11-031-11/+15
|/ | | | | sort games by name added intro and confirmation pages
* Merge branch 'master' into imodlist-updatesMikaël Capelle2020-10-261-3/+3
|\