summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | | | | Merge pull request #400 from LostDragonist/DevelopAl2018-06-102-1/+11
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Sort by game and fix for instance names
| * | | | | | | Prevent instances from ending in a spaceLostDragonist2018-06-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Windows directories are not allowed to end in a space. Allowing this creates a broken directory that is difficult for the user to remove.
| * | | | | | | Allow sorting by "source game" columnLost Dragonist2018-06-081-0/+10
|/ / / / / / /
* | | | | | | Updated stringsSilarn2018-06-081-343/+394
| | | | | | |
* | | | | | | *Avoided some unnecessary refreshes while removing mods.Al12rs2018-05-257-26/+88
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | *Added "Visit on Nexus" menu entry in the downloads tab. *Added confirmation message when deleting a single download. *Changed text of messages to more easily distinguish deleting from hiding.
* | | | | | | Added un-hide all option to downlods tab.Al12rs2018-05-215-24/+64
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Improved performace when hiding/unhiding. There is still room for improvement for hiding but it requires refactoring the function
* | | | | | | Made downlods file sizes human readable instead of just being KBAl12rs2018-05-203-1/+25
| | | | | | |
* | | | | | | Added "Open Plugins folder" option to Open folder menu.Al12rs2018-05-202-8/+10
| | | | | | |
* | | | | | | Merge pull request #369 from iaz3/DevelopAl2018-05-182-32/+36
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Fix a memory leak in updateToolBar
| * | | | | | | Fix a memory leak in updateToolBarDiana2018-05-182-32/+36
|/ / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | updateToolBar was creating new QActions and QWidgets every call, without cleaning them up. The spacer, help widgets, and toolbuttons only need to be created once. Those have been moved out into the MainWindow constructor updateToolBar is called in various places, importantly when adding/removing executable shortcuts. Also adds a deleteLater() call to clean up executable shortcut actions.
* | | | | | | Merge pull request #362 from Al12rs/dirWatcherAl2018-05-172-4/+112
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Downloads tab: fix for freezes and greatly improved performance and responsiveness
| * | | | | | | Huge performace improvements for downloads tab by disabling the dirWatcher ↵Al12rs2018-05-172-23/+34
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | triggered refreshes. Avoid app freezes caused by stacked refresh calls. Added chack to see if a download is alerady hidden before trying to hide it. Made sure to refresh Download tab where it was othwerwise relying in the dirwatcher to refresh.
| * | | | | | | Initial work on avoiding the spamming of the Downlods tab refresh caused by ↵Al12rs2018-05-172-2/+99
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the fileSystemWatcher picking up changes made by MO itself and triggering multiple refreshes
* | | | | | | | Updated strings for downloadsSilarn2018-05-161-102/+106
|/ / / / / / /
* | | | | | | Add UA to resume and fix edge case for hung download checkSilarn2018-05-161-1/+3
| | | | | | |
* | | | | | | Add the MO user agent string to the download requests (fixes EU#1)Silarn2018-05-162-2/+3
| | | | | | |
* | | | | | | Merge pull request #361 from AnyOldName3/even-better-version-parsingJeremy Rimpo2018-05-165-50/+52
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Move improved version parsing to util.h and use it everywhere.
| * | | | | | | Move improved version parsing to util.h and use it everywhere.AnyOldName32018-05-165-50/+52
|/ / / / / / /
* | | | | | | Merge pull request #360 from AnyOldName3/better-version-parsingJeremy Rimpo2018-05-154-5/+72
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Better version parsing
| * | | | | | | Remove sneaky test qDebug instance.AnyOldName32018-05-151-1/+0
| | | | | | | |
| * | | | | | | Change how the VersionInfo object is created from version.rc such that ↵AnyOldName32018-05-154-5/+73
|/ / / / / / / | | | | | | | | | | | | | | | | | | | | | non-release builds are possible and get labelled as such
* | | | | | | Push version update for 2.1.4 devSilarn2018-05-151-3/+3
| | | | | | |
* | | | | | | Fixes for download errors and retrying with alternate mirrorsSilarn2018-05-151-14/+12
| | | | | | |
* | | | | | | Download resume fixes for restarting MO, hung downloadsSilarn2018-05-132-1/+22
| | | | | | |
* | | | | | | Refresh the sort proxy when the data is changedSilarn2018-05-101-0/+2
| | | | | | |
* | | | | | | Fix plugin lock slot typoSilarn2018-05-101-1/+1
| |_|_|_|_|/ |/| | | | |
* | | | | | Better error message when archives can't be extractedSilarn2018-05-082-111/+108
| |_|_|_|/ |/| | | |
* | | | | Fix issue with resuming a download that was already complete.Silarn2018-05-081-1/+12
| | | | |
* | | | | Small compat fix for Qt 5.11Silarn2018-05-081-1/+1
| |_|_|/ |/| | |
* | | | Reset the progress bar data after completing the extractionSilarn2018-05-081-4/+4
| |_|/ |/| |
* | | Remove a pointless error when the game doesn't have a script extenderSilarn2018-05-071-2/+2
| | |
* | | Changes to allow installer_NCC to use the game source set in the DL metaSilarn2018-05-075-1/+17
| | |
* | | Updating about dialog with additional supportersSilarn2018-05-062-1/+11
| | |
* | | Translation updatesSilarn2018-05-061-127/+122
| | |
* | | Fixes for downloads and installsSilarn2018-05-064-54/+49
| | |
* | | Make sure project_path is set before trying to use itSilarn2018-05-061-10/+7
| | |
* | | Rework the existing file download dialog to pause the download while waitingSilarn2018-05-052-19/+36
| | | | | | | | | | | | - Also fixes direct calls to downloadFinished
* | | Make sure to update the index when data is changedSilarn2018-05-042-0/+11
| | |
* | | Vastly improved plugin index generation and sortingSilarn2018-05-043-38/+25
| | |
* | | Update the about dialogSilarn2018-05-042-64/+90
| | |
* | | Incorporate uibase translations into organizerSilarn2018-05-042-59/+182
| | |
* | | Use queued connections and do while loops to finish event processingSilarn2018-05-042-20/+12
| | |
* | | Allow update processor to include the managed game if nexus info matchesSilarn2018-05-041-0/+8
| | |
* | | Further offload setValue to avoid threading issuesSilarn2018-05-042-1/+9
| | |
* | | invokeMethod was getting called too late and is unneeded nowSilarn2018-05-041-3/+1
| | |
* | | Updating gitignoreSilarn2018-05-041-7/+4
| | |
* | | Update translation fileSilarn2018-05-041-415/+426
| | |
* | | Bump to version 2.1.3Silarn2018-05-031-4/+4
| | |
* | | Add version check and update processorSilarn2018-05-033-0/+26
| | |
* | | Initial icons for alternate gamesSilarn2018-05-034-1/+3
| | |