| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | merged CustomOverwrites and ForcedLibraries, they were mostly identical | isanae | 2019-06-15 | 5 | -192/+165 |
| | | | | | some comments | ||||
| * | removed concept of custom executables, everything is modifiable | isanae | 2019-06-15 | 8 | -163/+221 |
| | | | | | | | added apply button to dialog added reset button that re-adds plugin executables and renames existing ones if needed moved executables files to their filter in visual studio | ||||
| * | reduced spacing between buttons, removed chatty logging | isanae | 2019-06-15 | 2 | -2/+6 |
| | | |||||
| * | reduced margins around edit widgets, increased splitter handle width to ↵ | isanae | 2019-06-15 | 1 | -0/+12 |
| | | | | | separate the top buttons from the edit widgets a bit more | ||||
| * | changed the down/up pngs to be slightly offset vertically from what they ↵ | isanae | 2019-06-15 | 5 | -35/+82 |
| | | | | | | | | | were, they did not look aligned when next to each other added status/tooltip/whatsthis strings to new buttons change enabled status of up/down dynamically simplified move() to just move by one | ||||
| * | moved add/remove to the top, changed them to tool buttons with icons, added ↵ | isanae | 2019-06-15 | 3 | -34/+101 |
| | | | | | up/down buttons | ||||
| * | made the default size of the dialog a bit larger | isanae | 2019-06-15 | 1 | -1/+1 |
| | | |||||
| * | adjusted the position of the "(*) Profile Specific" label | isanae | 2019-06-15 | 2 | -0/+6 |
| | | | | | comments | ||||
| * | fixed plugin executables not overriding if the custom attribute was ↵ | isanae | 2019-06-15 | 1 | -2/+2 |
| | | | | | inadvertently set | ||||
| * | moved commiting changes to EditExecutablesDialog itself instead of doing it ↵ | isanae | 2019-06-15 | 3 | -83/+139 |
| | | | | | | | | from the main window use a separate enabled state for custom overwrites and forced libraries, this remembers the values even when unchecking the checkbox, as long as the dialog stays opened pass the whole OrganizerCore to EditExecutablesDialog, simplifies a bunch of things | ||||
| * | handles changing the title to one that already exists by just ignoring it | isanae | 2019-06-15 | 2 | -14/+46 |
| | | |||||
| * | removed old, unused stuff | isanae | 2019-06-15 | 3 | -246/+86 |
| | | | | | have mainwindow save all the new settings once the dialog closes | ||||
| * | moved functionality to CustomOverwrites and ForcedLibraries helper classes | isanae | 2019-06-15 | 2 | -49/+157 |
| | | |||||
| * | remove executable | isanae | 2019-06-15 | 1 | -11/+50 |
| | | |||||
| * | add executable | isanae | 2019-06-15 | 2 | -31/+46 |
| | | |||||
| * | pulled java installation detection out of getFileExecutionContext() and into ↵ | isanae | 2019-06-15 | 5 | -89/+104 |
| | | | | | | | | findJavaInstallation() because it was copy/pasted into EditExecutablesDialog fixed FileDialogMemory::getOpenFileName() to also use the given directory correctly handle browse binary button | ||||
| * | fixed FileDialogMemory::getOpenFileName() not using given directory | isanae | 2019-06-15 | 3 | -42/+63 |
| | | | | | | | disable all widgets when there's no selection now saves application icon browse working directory uses current value in file dialog | ||||
| * | save forced libraries internally | isanae | 2019-06-15 | 2 | -30/+56 |
| | | |||||
| * | save steam app id, custom overwrite and application icon | isanae | 2019-06-15 | 3 | -57/+100 |
| | | | | | custom overwrite directories now set locally, will be written to profile when closing the dialog | ||||
| * | renamed most of the widgets to shorter or more descriptive names ↵ | isanae | 2019-06-15 | 3 | -206/+256 |
| | | | | | | | (newFilesModCheckBox?) modifying widgets calls save() | ||||
| * | stop changing add button to modify, disable remove for plugin executables | isanae | 2019-06-15 | 2 | -84/+57 |
| | | | | | general clean up of member variable names, whitespace | ||||
| * | load plugin executables after settings, allows for changing the order | isanae | 2019-06-15 | 4 | -224/+328 |
| | | | | | | added warning that an executable is provided by a plugin, disable widgets that can't be changed refactoring EditExecutablesDialog | ||||
| * | replaced close with ok/cancel | isanae | 2019-06-15 | 3 | -105/+125 |
| | | | | | moved add/remove below the list | ||||
| * | rework of the executables dialog to have a horizontal splitter and use a ↵ | isanae | 2019-06-15 | 3 | -281/+347 |
| | | | | | standard QDialogButtonBox | ||||
| * | fixed EditExecutablesDialog being opened without a parent | isanae | 2019-06-15 | 6 | -57/+131 |
| | | | | | | | | | | removed Executable's constructor with values, replaced with default ctor + setters, all these strings were much too error-prone added Executable ctor overload to convert from ExecutableInfo plugin executables now override most of the custom changes renamed browseButton to browseBinaryButton to avoid confusion with the other browseDirButton fixed both browse dialogs not handling cancel EditExecutablesDialog's list used to change the text color for custom executables, replaced with italics | ||||
| * | removed temporary setters in Executable, unnecessary now that it has mergeFrom() | isanae | 2019-06-15 | 2 | -44/+1 |
| | | |||||
| * | ExecutablesList: | isanae | 2019-06-15 | 4 | -130/+77 |
| | | | | | | | - merged addExecutable(), updateExecutable() and addExecutableInternal() into a new setExecutable() - setExecutable() adds the executable to the list if not found, or forwards to Executable::mergeFrom() - mergeFrom() handles merging from/to plugin executables | ||||
| * | moved store/load to ExecutablesList | isanae | 2019-06-15 | 3 | -50/+72 |
| | | |||||
| * | replaced ExecutablesList::getExecutables() by a standard container interface | isanae | 2019-06-15 | 5 | -134/+164 |
| | | | | | | | renamed ExecutablesList::init() to addFromPlugin() renamed ExecutablesList::find() to get() and added a find() that returns an iterator changed some calls from get() to find() so they can handle failure because they didn't seem to handle std::runtime_error at all | ||||
| * | made Executable members private, added member function to get and set them | isanae | 2019-06-15 | 6 | -110/+215 |
| | | |||||
| * | Merge pull request #762 from isanae/statusbar | isanae | 2019-06-15 | 13 | -268/+718 |
| |\ | |||||
| | * | re-added the api label tooltip | isanae | 2019-06-14 | 2 | -2/+26 |
| | | | | | | | | | comments | ||||
| | * | changed the notifications action back to being disabled when there aren't ↵ | isanae | 2019-06-14 | 1 | -0/+2 |
| | | | | | | | | | any, having a coloured and clickable icon was confusing | ||||
| | * | show executable path in status bar | isanae | 2019-06-14 | 1 | -0/+1 |
| | | | |||||
| | * | fixed text color of api label when not logged in | isanae | 2019-06-14 | 1 | -1/+1 |
| | | | |||||
| | * | moved api user account classes to their own files | isanae | 2019-06-14 | 10 | -222/+263 |
| | | | | | | | | | | | | | | | | | | | api label in status bar: - now shows when not logged in - changed some of the colour thresholds to correspond to real throttling numbers make sure the api key is also cleared from the access manager when clearing from the settings removed unused bool m_ValidateAttempted in NXMAccessManager update the window title and status bar api label with correct values on startup, which fixes incorrect values when "restarting" MO after changing nexus settings | ||||
| | * | added option to hide the status bar | isanae | 2019-06-13 | 3 | -8/+60 |
| | | | | | | | | | centralized menu visibility into a showMenuBar() function | ||||
| | * | switched to stylesheet for api colors, palette doesn't seem to survive ↵ | isanae | 2019-06-13 | 1 | -12/+19 |
| | | | | | | | | | hiding/unhiding very well | ||||
| | * | changed StatusBarNotifications to a generic StatusBarAction | isanae | 2019-06-12 | 3 | -30/+57 |
| | | | | | | | | | added update notification to statusbar | ||||
| | * | added a StatusBarNotifications class to handle icon, text and double click | isanae | 2019-06-12 | 3 | -14/+58 |
| | | | |||||
| | * | fixed progress bar not updating | isanae | 2019-06-12 | 1 | -1/+2 |
| | | | |||||
| | * | max width for progress bar | isanae | 2019-06-12 | 3 | -6/+21 |
| | | | | | | | | | notification icon in status bar | ||||
| | * | added notifications label, unused | isanae | 2019-06-12 | 2 | -6/+9 |
| | | | |||||
| | * | added a few helper classes for user accounts and stats | isanae | 2019-06-12 | 9 | -234/+428 |
| | | | | | | | | | | | moved the api label to the status bar refactored a bunch of copy/pasted code in NexusInterface to use shouldThrottle() and throttledWarning() | ||||
| | * | added new statusbar class, moved refresh progress bar to it | isanae | 2019-06-12 | 5 | -18/+57 |
| | | | |||||
| * | | Merge pull request #763 from Nubbie/patch-1 | Al | 2019-06-15 | 1 | -26/+26 |
| |\ \ | |/ |/| | Correcting minor spelling mistakes in the UI + add contributor | ||||
| | * | Correcting minor spelling mistakes in the UI + add contributor | Matte A | 2019-06-15 | 1 | -26/+26 |
| |/ | | | When translating, I found some minor mistakes. Therefor I ran through the file in a proofreader and corrected some mistakes. There is also some mistakes corrected for consistency e.g. spaces and dashes | ||||
| * | Merge pull request #759 from isanae/unstyled-icons-fix | Al | 2019-06-11 | 2 | -18/+121 |
| |\ | | | | | Fixing the icons on the toolbar and menus | ||||
| | * | clarified some comments | isanae | 2019-06-09 | 1 | -3/+3 |
| | | | |||||
| | * | fixed notification icon not respecting the stylesheet on startup | isanae | 2019-06-09 | 2 | -6/+55 |
| | | | |||||
