summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
| | | * Additional 'make install' step - install boost_python DLL to output(d)\DLLsTheBloke2014-07-081-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Extended the new ModOrganizer.pro 'make install' steps, to now also copy $$(BOOSTPATH)\stage\lib\boost_python-vc*-mt-1*.dll This is the final install step required, so that now ModOrganizer.exe works fully when a Qt-Creator "Run" step is performed. The wildcard should pick up the right version of the library regardless of MSVC compiler version used. Updated Qt5 version check to the standardised greaterThan check.
| | | * Compilation dependency tracking enabled for organizer, hook, bsaExtractor, ↵TheBloke2014-07-082-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | shared Previously, qmake did not detect when code was changed in the static libraries So for example, changing code in shared/*.cpp and then Build, would not cause a re-link and re-deploy of ModOrganizer.exe. This has been fixed by adding PRE_TARGETDEPS references to each project that depend on static libraries provided by other sub-projects. These checks are conditional on debug|release, to point to the correct lib. List of currently configured static library dependency checks - organizer - mo_shared.lib, bsatk.lib hookdll - mo_shared.lib, bsatk.lib shared - bsatk.lib bsaExtractor - bsatk.lib I have tested to confirm that changing a shared file results in re-linking and re-deplomyent of both ModOrganizer.exe and hook.dll. Note that dependencies have not been configured for DLLs, as these are loaded dynamically and so recompilation is not required. But there could be an argument for configuring DLLs as dependencies too - as if you make a change in DLL code, you might want all clients of the DLL to be recompiled to check that they have not been broken by the changes? The downside of that would be extra re-compilation every time.
| | | * .pro files - formatting/consistency fixesTheBloke2014-07-072-50/+54
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Many small formatting changes to the majority of .pro files Consistent style for Qt version checking, using greaterThan(QT_MAJOR_VERSION, 4) This seems safest, as would continue to work for a future Qt 6 etc. Note that this makes redudundant the commit before this one, to organizer.pro Consistent indenting Moved some file configuration sections to be together with related sections Moved some installation-related sections (e.g. OUTDIR/DSTDIR) to be at the bottom, immediately before the related POST_LINK install lines. Similarly, in some cases separated out CONFIG(debug,.. checks into separate LIB/INCLUDE sections (high in file) and installation directory sections (low in file)
| | | * organizer.pro - tiny tweak to Qt5 version checkTheBloke2014-07-071-1/+1
| | | | | | | | | | | | | | | | Directly checking QT_MAJOR_VERSION instead of pattern matching on QT_VERSION
| | | * Added 'make install' steps in ModOrganizer.pro -TheBloke2014-07-071-2/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added config to install required libraries to output(d) directory If the user adds a Deploy step, that runs 'jom install', he will have the necessary libraries copied to output(d)\dlls These libraries are - 7z.dll Qt4 Core Declarative Gui Network OpenGL Script Sql Svg Webkit Xml XmlPatterns Different set configured for Qt5, e.g. adding Widgets, Qml, Quick In a debug build, the 'd' DLLs will be used instead. Qt4 libraries are copied from system Qt4 installation directory. This allows the Qt-Creator user to hit "Run" in Qt-C and end up with a complete install, including all DLLs; no manual Exporer copying required. This therefore removes the need for post-build steps 10 & 11 in Readme.txt. Future thought - Update all current POST_LINK (x)copy steps to make install? Fixed DESTDIR in ModOrganizer.pro It was pointing to source/output(d) before, should be ..\output(d) It was not used before so didn't matter, but is now referenced for install.
| | * | - when highlighting a mod the overwritten and overwriting mods are now ↵Tannin2014-07-1427-10165/+14315
| | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | highlighted in the list - when starting an external application MO now wraps the process in a job and waits on that instead. This way MO is not unlocked early when skyrim is started through skse - mod info dialog no longer offers the esp tab for foreign mods because that caused confusion - updated translation files - download directory and mod directory are now created if necessary - bugfix: staging script created unnecessary copies of translation files - bugfix: potential invalid array access when trying to determine best mod order - bugfix: deleter file wasn't removed after esp hiding was disabled - bugfix: potential access to to un-initialized login reply - bugfix: changed the initialization order to allow more ui controls to be localized
| * | - qt 5 compatibility fixesTannin2014-07-155-13/+19
| | | | | | | | | | | | - detection for support of optimized find no longer depends on deprecated api
| * | MergeTannin2014-07-031-5/+17
| |\ \ | | |/ | |/|
| | * slight fixes to qt5 compatibilityTannin2014-07-031-5/+17
| | |
* | | updated packaging and build scriptsTannin2015-01-0310-48787/+3
| | |
* | | - repository info is now stored with the modTannin2015-01-034-3/+42
| | |
* | | - bugfix: no exec info returned for .exeTannin2015-01-034-19/+23
| | | | | | | | | | | | - bugfix: wide string conversion functions seem to have failed for empty string
* | | added/updated translation filesTannin2014-12-203-1330/+1885
| | |
* | | cleanupTannin2014-12-207-94/+225
| | |
* | | - drag&drop in the plugin list now also prompts a message instead of being ↵Tannin2014-12-202-43/+13
| | | | | | | | | | | | impossible
* | | - bugfix: file extensions when adding executables were treated case sensitiveTannin2014-12-201-5/+6
| | | | | | | | | | | | - exe files are now started directly, not through cmd
* | | bugfix: when merging mods with a custom installer, various ini settings ↵Tannin2014-12-201-6/+7
| | | | | | | | | | | | (incl. category) were reset
* | | endorsing is now only offered for mods with a valid nexus idTannin2014-12-201-16/+18
| | |
* | | workaround to prevent executables dialog from auto-selecting the top-most ↵Tannin2014-12-203-46/+57
| | | | | | | | | | | | executable
* | | - mod-list can now be re-ordered with drag&drop while grouping is activeTannin2014-12-144-5/+30
| | | | | | | | | | | | - drag&drop is not disabled when ordering by other columns than priority. MO will notify using messagedialog that it's impossible instead.
* | | when reinstalling a mod the existing mods name is used by defaultTannin2014-12-143-11/+13
| | |
* | | if a shortcut-started application is the same binary as a configured one, ↵Tannin2014-12-143-0/+25
| | | | | | | | | | | | the corresponding steam app id is used
* | | custom installers can now set the installation file (and the ncc installer ↵Tannin2014-12-142-2/+20
| | | | | | | | | | | | now does)
* | | - NCC installer can now discover files in other mods (thanks Reunion!) and ↵Tannin2014-12-135-1/+13
| | | | | | | | | | | | knows the script extender version
* | | all executables can now be repositioned, including auto-detected onesTannin2014-12-094-24/+62
| | |
* | | searching for steam process will no longer fail when more than 1024 ↵Tannin2014-12-092-12/+22
| | | | | | | | | | | | processes are running (and steam is past the 1024th)
* | | removed use of ModInfo::internalNameTannin2014-12-094-11/+4
| | |
* | | now stored installed files with each modTannin2014-12-094-0/+53
| | |
* | | bugfix: hitting the fix button in the diagnosis plugin could crash MO if theTannin2014-12-041-4/+9
| | | | | | | | | | | | line didn't have mouse focus
* | | bugfix: ini tweaks were not applied in priority orderTannin2014-12-041-2/+3
| | |
* | | minor fixesTannin2014-12-041-1/+1
| | |
* | | - added error handling when a file can't be deleted from vfsTannin2014-12-014-11/+20
| | | | | | | | | | | | - minor bugfixes
* | | more bugfixesTannin2014-11-265-1406/+1434
| | |
* | | several bugfixes from the bugfix-wc that I forgot to backportTannin2014-11-262-210/+218
| | |
* | | undid some changes that accidentally made it to this branchTannin2014-11-269-7444/+7293
| | |
* | | - fixed manifest for qt5Tannin2014-11-142-2/+12
| | | | | | | | | | | | - download messages can now be sent from different user accounts
* | | - updated staging script to use qt5 and to fetch translations from transifexTannin2014-11-117-6629/+9613
| | | | | | | | | | | | - removed call to function unavailable in Windows XP
* | | some work on installer scriptsTannin2014-11-111-0/+11
| | |
* | | - re-enabled use of img-tags in bbcode converterTannin2014-11-116-57/+27
| | | | | | | | | | | | | | | - addded a workaround for cases where, after a MO update, the stored modlist layout has no size for new columns - using a webview again for the nexus view of the modinfo dialog
* | | - bsa parser will now cancel in case of a read error. Before, when ↵Tannin2014-11-093-10/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | attempting to parse a broken bsa it could take forever and continuously allocate memory - better error message when bsa parsing fails - slightly better support for font colors in bbcode converter - configurator now also uses pyqt5 - bugfix: bsa hashing function converted backslashes to slashes instead of the other way around. hash calculation is still often wrong on folder names...
* | | - workaround for GetModuleFileName-calls that supply wrong buffer sizeTannin2014-11-062-3/+4
| | | | | | | | | | | | | | | | | | - removed obsoleted calls to GetVersionEx - bugfix: download urls were potentially not encoded correctly - bugfixes to tls-based recursion protection
* | | - moved the hook-recursion-protection to tlsTannin2014-09-295-45/+84
| | | | | | | | | | | | | | | | | | | | | | | | | | | - some code cleanup and consolidation - hook.dll will now report all of its own exceptions - some more logging during startup - changed the way urls are encoded for download requests - now displaying (one of the) process name(s) while waiting for a program to end - bugfix: spawned processes were forced to leave the job
* | | - archive library can now query for password during extraction (seems to be ↵Tannin2014-11-0510-24/+89
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | necessary for rars) - process blacklist is now taken from a file if there is one, not hardcoded - removed workaround for the papyrus compiler - updated loot client to work with the actual api - loot client now links with loot32.dll at runtime - loot client now produces its output in a (json-)file which includes all plugin messages and dirty flags - fomod installer now tries to parse the xml with several encodings - fomod installer will now display a diagnostics warning if the jpg imageformat isn't supported - base preview plugin now tries to be a bit smarter about resizing images to fit the screen - bugfix: fomod installer no longer tries to open an image even after detecting its invalid - bugfix: potential null-pointer dereferentiation in getprivateprofile... hooks - bugfix: potential null-pointer dereferentiation in download manager - bugfix: internal origin name showed up in one more place - bugfix: ToString function produced strings that were one (zero-termination-)character too long
* | | - several style fixes suggested by static analysisTannin2014-09-2426-193/+176
| | | | | | | | | | | | - will now support up to 4 levels of version numbers (major.minor.subminor.subsubminor
* | | - removed a use of wostringstream which seems to have been involved in a ↵Tannin2014-09-191-12/+17
| | | | | | | | | | | | | | | | | | bug. Still not sure how - rewrote widechar <-> multibyte conversion functions to handle arbitrary string lengths
* | | non-mo mods now have a constructed name that cannot conflict with a regular modTannin2014-09-102-1309/+1309
| | |
* | | when MO fails to overwrite its ini file it tries another method using qt ↵Tannin2014-09-101-2/+15
| | | | | | | | | | | | functions
* | | plugins can now query the list of masters for a pluginTannin2014-09-102-0/+15
| | |
* | | profiles are now created with an (empty) archives.txtTannin2014-09-102-1113/+1120
| | |
* | | - descriptions for plugin settings are now displayedTannin2014-09-103-1213/+1227
| | |