summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * Update for new organizer callbacks.Mikaël Capelle2020-06-155-25/+82
| |
* | Update issue-report.mdAl2020-06-161-1/+1
| |
* | Update issue-report.mdAl2020-06-161-2/+3
|/
* Merge pull request #1132 from Holt59/fix-getloadorderAl2020-06-141-4/+4
|\ | | | | Update following change to getLoadOrder() in game_features.
| * Update following change to getLoadOrder() in game_features.Mikaël Capelle2020-06-141-4/+4
|/
* Merge pull request #1131 from Holt59/allow-plugins-to-fix-filetreeAl2020-06-141-1/+1
|\ | | | | Update following ModDataChecker change.
| * Update following ModDataChecker change.Mikaël Capelle2020-06-131-1/+1
|/
* Version bumpAL2020-06-131-1/+1
|
* Merge pull request #1127 from Holt59/fix-crash-archive-extractionAl2020-06-122-27/+34
|\ | | | | Fix archive extraction due to infinite QProgressDialog::setValue recursion
| * Add Qt bug report in comment and use while() instead of do { } while();.Mikaël Capelle2020-06-111-3/+4
| |
| * Add comment explaining the usage of the QEventLoop.Mikaël Capelle2020-06-111-1/+3
| |
| * Rollback to using QProcessEvents but use WaitForMoreEvents.Mikaël Capelle2020-06-112-29/+28
| |
| * Disconnect signal after extraction to avoid calling them on destroyed widgets.Mikaël Capelle2020-06-111-1/+6
| |
* | Merge pull request #1124 from Holt59/fix-unloading-of-pluginsAl2020-06-113-9/+16
|\ \ | |/ |/| Manually unload plugins to avoid issue with automatic unloading.
| * Manually unload plugins to avoid issue with automatic unloading.Mikaël Capelle2020-06-113-9/+16
| |
* | Merge pull request #1123 from Holt59/fix-right-tabs-refreshAl2020-06-111-7/+7
|\ \ | |/ |/| Fix refresh events of tabs in the right panel when some tabs are hidden.
| * Avoid using indexOf everywhere.Mikaël Capelle2020-06-111-6/+7
| |
| * Fix refresh events of tabs in the right panel when some tabs are hidden.Mikaël Capelle2020-06-111-7/+6
|/
* Version bump to 2.3.0alpha10AL2020-06-101-1/+1
|
* Merge pull request #1120 from Holt59/hide-unused-tabsAl2020-06-091-0/+12
|\ | | | | Hide plugins and archives tabs when features are missing.
| * Hide plugins and archives tabs when features are missing.Mikaël Capelle2020-06-091-0/+12
|/
* Merge pull request #1118 from Al12rs/nexus_requests_leakAl2020-06-092-2/+17
|\ | | | | Fix consecutive mod update checks checking some mods again
| * Mark mods with orphaned nexus ids as checked to avoid repeated requests.AL2020-06-091-0/+14
| |
| * Fix consecutive mod update checks checking some mods again..AL2020-06-092-2/+3
|/ | | | by correctly setting the last nexus update timestamp on a missed case.
* Merge pull request #1117 from Holt59/iinstallmanager-silent-extractionAl2020-06-092-74/+91
|\ | | | | Add silent parameter to extraction methods of IInstallationManager.
| * Add silent parameter to extraction methods of IInstallationManager.Mikaël Capelle2020-06-092-74/+91
|/
* Merge pull request #1115 from Al12rs/fix_problems_buttonAl2020-06-081-1/+1
|\ | | | | Fix problems button not updating on startup in some cases.
| * Fix problems button not updating on startup in some cases.AL2020-06-081-1/+1
|/ | | | | Mainwindow wasn't guaranteed to exist after first directory structure refresh was complete so there was no mainwindow slot triggered to check for problems. Added a proper problems check in the mainwindow constructor.
* Merge pull request #1114 from Holt59/iorganizer-findfiles-globAl2020-06-084-4/+236
|\ | | | | Add findFiles overload with glob patterns.
| * Add documentation for the support globbing features.Mikaël Capelle2020-06-081-0/+9
| |
| * Replace QString::fromStdWString by ToQString.Mikaël Capelle2020-06-081-1/+1
| |
| * Fix & placement.Mikaël Capelle2020-06-081-1/+1
| |
| * Add findFiles overload with glob patterns.Mikaël Capelle2020-06-084-4/+227
|/
* Merge pull request #1113 from Al12rs/bettr_wait_on_eventsAl2020-06-083-12/+32
|\ | | | | Use QEventLoop instead of manually calling ProcessEvents
| * Use QEventLoop instead of manually spinning calling ProcessEvents in a while ↵AL2020-06-073-12/+32
|/ | | | with a sleep.
* Merge pull request #1112 from Al12rs/updateProblemsButtonAl2020-06-072-26/+55
|\ | | | | Move Problems Checks on a thread and avoid redundant calls
| * Change time measurement to not include lock wait time.AL2020-06-071-2/+1
| |
| * Make checks that occur at the same time not return immediately to avoid ↵AL2020-06-072-22/+21
| | | | | | | | issues with stuff that might need to rely on check completion.
| * Make even the last direct call to checkForProblemsImpl use the async version.AL2020-06-072-8/+10
| |
| * Avoid executing Problems checks concurrently.AL2020-06-072-3/+16
| | | | | | | | | | Reduce timer to 500ms. Make other calls also scheduled.
| * Make a couple more calls async since there is no good reason not to.AL2020-06-071-2/+2
| |
| * Fix comment on checkForProblems()AL2020-06-071-1/+1
| |
| * Make m_NumberOfProblems atomicAL2020-06-071-1/+1
| |
| * * Change the diagnoseUpdate() signals to collapse into a single async call ↵AL2020-06-061-10/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | in case of multiple signals in short time span. * Make mainwindow constructor and show() use updateProblemsButton() to just update the problems icon without performing checks. * Make directory refreshed schedule a problems check since it can overlap with other invocations. * Make changing translation not trigger checks at all. * Make changing style only update the icon instead of also performing the check. * Make MainWindow ctor, MainWindow::show()and MainWindow::resetActionIcons() just update the icon without actually performing a check. * Make clearing overwrite checkForProblems synchronously. Same before opening the notifications window and after closing it.
| * Make checkForProblems update local variable with the problem count,AL2020-06-062-10/+28
| | | | | | | | | | Make updateProblemsButton just update the ui using that variable (no heavy operation) Add checkForProblemsAsync to perform the heavy checks in another thread.
* | Merge pull request #1109 from Holt59/set-plugin-setting-signalAl2020-06-073-2/+50
|\ \ | | | | | | Add IOrganizer signal when a plugin setting is changed.
| * | Add IOrganizer signal when a plugin setting is changed.Mikaël Capelle2020-06-053-2/+50
| |/
* | Merge pull request #1101 from Holt59/archive-lib-modificationAl2020-06-076-223/+184
|\ \ | |/ |/| Archive lib refactoring
| * Fix order of operations to avoid deadlock with event loop.Mikaël Capelle2020-06-061-9/+12
| |
| * Use QEventLoop to process events when extracting instead of manual loop with ↵Mikaël Capelle2020-06-052-22/+36
| | | | | | | | processEvents.