summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * | Toggle expanded state on double-click.Mikaël Capelle2021-01-021-13/+23
| | |
| * | Maintain selection while filtering.Mikaël Capelle2021-01-023-8/+22
| | |
| * | Fix filtering for separators.Mikaël Capelle2021-01-021-6/+21
| | |
| * | Increase auto-expand delay to 1s.Mikaël Capelle2021-01-021-1/+1
| | |
| * | Revert "Revert to Qt default behavior for auto-collapse on hovering."Mikaël Capelle2021-01-022-1/+27
| | | | | | | | | | | | This reverts commit b74f08a57ba659e2da232e253844aff8a169f9e0.
| * | Fix dropping below/above separators.Mikaël Capelle2021-01-025-10/+46
| | |
| * | Remove non-necessary refresh() of the proxy on mod installed.Mikaël Capelle2021-01-021-1/+0
| | |
| * | Fix automatic refresh of the collapsible separator proxy.Mikaël Capelle2021-01-025-55/+37
| | |
| * | Disable drag&drop of mods in backups.Mikaël Capelle2021-01-021-1/+1
| | |
| * | Do not move installed mod after merge/replace.Mikaël Capelle2021-01-023-69/+118
| | |
| * | Fix sorting of backups when using collapsible separators.Mikaël Capelle2021-01-022-5/+18
| | |
| * | Refresh by-priority proxy after install and focus on the newly installed mod.Mikaël Capelle2021-01-021-0/+4
| | |
| * | Revert to Qt default behavior for auto-collapse on hovering.Mikaël Capelle2021-01-022-26/+1
| | |
| * | Prevent dropping separators onto separators.Mikaël Capelle2021-01-021-5/+15
| | |
| * | Allow drag&drop a separator to itself.Mikaël Capelle2021-01-022-4/+23
| | |
| * | Better drag handling.Mikaël Capelle2021-01-023-3/+25
| | |
| * | Fix keyboard move selection.Mikaël Capelle2021-01-027-54/+125
| | |
| * | Do not set Qt::ItemIsDropEnabled all the time.Mikaël Capelle2021-01-025-6/+28
| | |
| * | Save collapse state of separator.Mikaël Capelle2021-01-024-0/+51
| | |
| * | Small refactoring to avoid duplicated code.Mikaël Capelle2021-01-023-25/+20
| | |
| * | Clean drag&drop of URLs and mods/archives.Mikaël Capelle2021-01-029-186/+156
| | |
| * | Drag and drop from download view to install + Expand and scroll to mod on ↵Mikaël Capelle2021-01-028-36/+128
| | | | | | | | | | | | install.
| * | Move common code to method.Mikaël Capelle2021-01-022-14/+14
| | |
| * | Add collapse/expand all actions.Mikaël Capelle2021-01-021-0/+4
| | |
| * | Restrict collapsible separators to sort-by-priority in ascending order.Mikaël Capelle2021-01-021-2/+2
| | |
| * | Restrict collapsible separators to sort-by-priority.Mikaël Capelle2021-01-021-4/+20
| | |
| * | Fix drag-and-drop of separators.Mikaël Capelle2021-01-021-0/+31
| | |
| * | Allow drop before first separator.Mikaël Capelle2021-01-021-3/+6
| | |
| * | Only expand if model is correct.Mikaël Capelle2021-01-021-2/+3
| | |
| * | Fix expansion of items when building tree.Mikaël Capelle2021-01-021-1/+1
| | |
| * | Fix drag and drop of regular mods.Mikaël Capelle2021-01-023-7/+62
| | |
| * | Disable auto-collapsing after delay.Mikaël Capelle2021-01-022-4/+38
| | |
| * | Add auto-expand.Mikaël Capelle2021-01-021-0/+1
| | |
| * | Use an intermediate structure to store the separator tree.Mikaël Capelle2021-01-027-152/+178
| | |
| * | Start working on collapsible separators.Mikaël Capelle2021-01-027-5/+282
| | |
* | | Merge pull request #1349 from isanae/masterisanae2021-01-093-5/+20
|\ \ \ | | | | | | | | Handle category cycles by putting parent ids in a set
| * | | handle cycles by putting parent ids in a setisanae2021-01-093-5/+20
| | | |
* | | | Merge pull request #1347 from isanae/masterisanae2021-01-091-1/+1
|\| | | | |_|/ |/| | Fix game selection not appearing on startup
| * | fix skipping pages in single page modeisanae2021-01-091-1/+1
|/ / | | | | | | in single page mode, ready() can return false for some pages like the instance type if the selected page is past it, so skip() has to be checked too
* | Merge pull request #1342 from isanae/shortcut-nolockisanae2021-01-052-41/+72
|\ \ | | | | | | Fix running shortcuts with locking disabled
| * | fix running shortcuts with locking disabledisanae2021-01-042-41/+72
|/ / | | | | | | | | when a ProcessRunner gets ForceWait|PreventExit and locking is disabled, wait for the process normally but without showing the ui changed references to UILocker::Session to pointers because they can now be null
* | Merge pull request #1341 from isanae/profile-crashisanae2021-01-041-46/+71
|\ \ | |/ |/| Fixes for the profiles dialog
| * 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
* Merge pull request #1340 from Holt59/update-imodinterfaceMikaël Capelle2021-01-024-1/+37
|\ | | | | Remove setName and remove from mod interface.
| * Remove setName and remove from mod interface.Mikaël Capelle2021-01-024-1/+37
|/
* Merge pull request #1336 from Holt59/fix-crash-during-extractionAl2021-01-011-4/+12
|\ | | | | Tentative fix for crash during large extraction.
| * Tentative fix for crash during large extraction.Mikaël Capelle2020-12-311-4/+12
|/
* Bump version to alpha4AL2020-12-301-1/+1
|
* Merge pull request #1334 from Holt59/dot-in-filefindinfosMikaël Capelle2020-12-301-1/+1
|\ | | | | Allow '.' for the path in findFileInfos.
| * Allow '.' for the path in findFileInfos.Mikaël Capelle2020-12-301-1/+1
|/