summaryrefslogtreecommitdiff
path: root/src/mainwindow.cpp
Commit message (Collapse)AuthorAgeFilesLines
* implemented previews on double-click for the data and conflicts tabsisanae2019-12-041-9/+81
|
* added explore button in the settings to open stylesheets folderisanae2019-12-041-10/+7
| | | | | added stylesheets folder to the open folders button moved "Open MO2 Logs folder" up to be with instance folders, removed "MO2" in the name
* double-click now opens files for the data tab, filetree and conflict listsisanae2019-12-021-6/+30
|
* added "open with vfs" to the data tabisanae2019-12-021-8/+29
| | | | uniform order for file context menus
* three modes for separators, save stateisanae2019-12-021-6/+10
| | | | renamed enumerators
* fixed setting selection when checking for updatesisanae2019-11-301-1/+5
|
* fixed bad label for content categoriesisanae2019-11-301-2/+8
|
* removed redundant categories now that there's a not filterisanae2019-11-301-2/+2
| | | | disabled collapsing for filter, there's already a button to hide it
* renamed filters to criteriaisanae2019-11-301-29/+21
| | | | | merged categories and content, they can be distinguished using the type added a not flag for criteria, not used yet
* moved all remaining filter stuff to FilterListisanae2019-11-291-32/+75
| | | | renamed some widgets
* split filter listisanae2019-11-271-165/+12
|
* added separators filterisanae2019-11-271-0/+5
| | | | changed notendorsed filter to include anything else than true
* added not filter, not functional yetisanae2019-11-271-0/+5
| | | | fixed no mods being displayed for OR with no conditions
* changed mod name of unmanaged files from "data" to "<Unmanaged>" in the data ↵isanae2019-11-271-6/+26
| | | | | | tab and for the root item in the archives tab log error when trying to open mod info for a managed file but the mod isn't found
* added open mod info to data tab context menuisanae2019-11-261-0/+23
|
* fix sort in overwrite, remember settingsisanae2019-11-261-0/+1
| | | | remove useless header in archives list
* added option to hide confirmation when switching instancesisanae2019-11-261-6/+10
|
* threaded lootisanae2019-11-161-1/+2
|
* split loot stuff to loot.h/cpp, no changes in functionalityisanae2019-11-161-223/+4
|
* removed unused filesisanae2019-11-061-1/+0
| | | | fixed handle leak when starting steam
* refresh ui after running an exe from 1) an external message, and 2) the data tabisanae2019-11-061-1/+1
|
* added a ForceWait flag to bypass disabled lockingisanae2019-11-061-1/+1
| | | | merged a bunch of unnecessary functions in ProcessRunner
* added waitForAllUSVFSProcesses() wrapper in OrganizerCore, the fact that ↵isanae2019-11-061-3/+1
| | | | it's in ProcessRunner is a bit of a hack
* removed runExecutable()isanae2019-11-061-2/+6
|
* removed runExecutableFile()isanae2019-11-061-33/+10
| | | | turns out on_startButton_clicked() had redundant code
* explicit refresh parameter for setWaitForCompletion(), some parts of the ui ↵isanae2019-11-061-1/+5
| | | | | | | | will crash if things refresh unexpectedly removed runFile() fixed crash when unlocking if some widgets were destroyed in the meantime lock widget will now pick the active window and disable all top levels
* added lockwidget to replace all the other dialogsisanae2019-11-061-40/+4
| | | | | | rewrote ProcessRunner to have a bunch of setters and then a run() fixed bad exit code when waiting on a process that's already completed removed lock()/unlock() from main window, ProcessRunner is in charge of that now
* split to processrunnerisanae2019-11-061-4/+9
| | | | | added IUserInterface::qtWidget() put back IUserInterface in OrganizerCore now that there's a way to get the widget
* spawning an executable now only waits for that particular processisanae2019-11-061-10/+4
| | | | added waitForAllUSVFSProcesses() to OrganizerCore, used when closing MO
* moved findJavaInstallation() and getFileExecutionContext() to spawnisanae2019-11-061-32/+32
| | | | fixed env::get() returning garbage after value
* renamed runExecutable() to runExecutablefile()isanae2019-11-061-21/+3
| | | | added runExecutable() for Executable class, also used by runShortcut()
* initial Spawner and SpawnedProcessisanae2019-11-061-2/+2
| | | | | | | added steam app id to spawn parameters removed threadHandle, unused moved most of the stuff from OrganizerCore::spawnBinaryProcess() to Spawner replaced m_UserInterface by m_MainWindow
* Improve automatic naming of new executablesLostDragonist2019-10-221-1/+1
| | | | | | | | | | | | | When using the "Add from file..." option, the extension will be removed. E.g., "zEdit 1.2.3.exe" will be shortened to "zEdit 1.2.3". When using the "Add empty" option and subsequently browsing for a binary, the complete base name will be used instead of just the base name. E.g., "zEdit 1.2.3.exe" will be shorted to "zEdit 1.2.3" instead of "zEdit 1". When using the "Add as Executable" option of the data tab, the complete base name will be used instead of just the base name. E.g., "zEdit 1.2.3.exe" will be shorted to "zEdit 1.2.3" instead of "zEdit 1".
* fixed loot not being hookedisanae2019-10-121-0/+1
| | | | bumped to alpha 4.1
* Merge pull request #863 from isanae/executables-fixesisanae2019-10-101-46/+108
|\ | | | | Executables fixes
| * added hide flag to executablesisanae2019-10-081-42/+103
| |
| * initial selection in the edit executables dialog from main windowisanae2019-10-081-4/+5
| |
* | added ExitModOrganizer(), used instead of qApp->exit()isanae2019-10-071-38/+75
|/ | | | | | | reset geometry uses TaskDialog moved restart code for the settings dialog to MainWindow fixed settings sometimes not being saved when restarting don't log "crash dumps present" every time the settings dialog is closed
* Merge pull request #855 from isanae/context-menu-log-toggleisanae2019-10-071-12/+18
|\ | | | | Log toggle in context menu
| * stop reusing the view menu, just create a new context menu with the right ↵isanae2019-10-051-12/+18
| | | | | | | | stuff in it
* | showEvent() is called for stuff like minimizing and restoring the window, ↵isanae2019-10-051-4/+3
|/ | | | don't re-read settings for that
* Merge pull request #851 from isanae/api-visible-at-startupisanae2019-10-051-1/+1
|\ | | | | Check the api setting on startup to hide it if needed
| * check the api setting on startup to hide it if neededisanae2019-10-051-1/+1
| |
* | Merge pull request #849 from Al12rs/more-filtersAl2019-10-041-0/+2
|\ \ | | | | | | Added "No valid game data" and "No Nexus ID" filters as per #295
| * | Added "No valid game data" and "No Nexus ID" filters as per #295Al2019-10-041-0/+2
| |/
* / added error messages to FileRenamer and a few moreisanae2019-10-041-18/+18
|/ | | | fixes for shell functions changing names
* Merge pull request #842 from isanae/dialog-settingsisanae2019-10-041-0/+16
|\ | | | | Dialog settings
| * changed the layout of the general settings tabisanae2019-09-231-0/+16
| | | | | | | | | | added option to disable checking for updates removed online check, just try it and see
* | Made categories section (filters) resizable via a splitter. Correctly ↵Al2019-10-021-0/+2
|/ | | | handled hiding and unhiding as well as saving the state between sessions.
* Merge pull request #839 from isanae/even-more-loggingisanae2019-09-221-16/+7
|\ | | | | Even more logging