Commit Graph

1534 Commits

Author SHA1 Message Date
e2ebe039d4 Merge pull request #361 from erri120/deadlystream
Deadlystream Support + VectorPlexus fixes
2020-01-06 15:19:38 -08:00
3cdb9dd37a Merge pull request #362 from erri120/mo2-force-portable
Create portable.txt after installation in MO2 dir
2020-01-06 15:18:59 -08:00
51388964b1 Merge pull request #364 from wabbajack-tools/mohidden-patch-sources
Allow .mohidden files to be patched
2020-01-06 15:18:44 -08:00
b3840ae4d8 Allow .mohidden files to be patched 2020-01-06 16:08:19 -07:00
a8aaa94dfb Merge pull request #363 from wabbajack-tools/bytearrayparsing
Parse ByteArrays from INIs as UTF8 strings
2020-01-06 15:03:52 -08:00
1eec600027 Parse ByteArrays from INIs as UTF8 strings 2020-01-06 15:00:22 -07:00
8c51c1f49e Create portable.txt after installation in MO2 dir 2020-01-06 16:20:18 +01:00
837fca2580 Added DeadlyStream and VectorPlexus to Ceras, KnownSubTypes and Downloaders 2020-01-06 16:08:54 +01:00
91cfe359a8 Created DeadlyStreamDownloader 2020-01-06 16:08:21 +01:00
643de5ccb3 Merge pull request #359 from wabbajack-tools/dont-delete-during-install
Clone the modlist so we don't delete everything on a re-install
2020-01-06 07:04:06 -08:00
2652d1ec9c Merge pull request #360 from erri120/cli-help
Added help argument to CLI
2020-01-06 07:03:39 -08:00
92c841f755 Added help argument to CLI 2020-01-06 15:54:46 +01:00
feb3e781fc Settings page work. Some experimentation /w RxUI binding 2020-01-05 23:15:10 -06:00
38f4825099 Clone the modlist so we don't delete everything on a re-install 2020-01-05 21:35:12 -07:00
b8a6db5211 Merge pull request #354 from wabbajack-tools/vector-plus-redux
Implement VectorPlexus support as a downloader
2020-01-05 16:40:34 -08:00
3e39ab8dba Implement VectorPlexus support as a downloader, abstracted common IPS4 data behind an abstract class. 2020-01-05 17:21:05 -07:00
27f0f98671 Merge pull request #353 from wabbajack-tools/abstract-login-downloader
Reworked the LL downloader
2020-01-05 14:24:08 -08:00
a380f0d59e Merge pull request #352 from erri120/cli
Cli
2020-01-05 06:40:11 -08:00
030f2563e3 Merge pull request #351 from wabbajack-tools/delete-blank-directories
Delete empty folders after install.
2020-01-05 06:37:24 -08:00
cfa5717df3 ApiKey can be encrypted via CLI 2020-01-05 14:14:53 +01:00
8106990707 Loading settings will no use CLIArguments 2020-01-05 14:10:49 +01:00
e149c6dbe7 Starting From Modlist now uses CLIArguments 2020-01-05 14:09:34 +01:00
42e4bece99 Added shortOptions support 2020-01-05 14:09:02 +01:00
e929b661b5 Parse arguments on start 2020-01-05 13:52:18 +01:00
dc2cc80bd0 Created basic CLI classes 2020-01-05 13:52:02 +01:00
5f969a00df Reworked the LL downloader to abstract commonly used items in an abstract class 2020-01-04 22:38:08 -07:00
528b1daded Delete empty folders after install. Ends up being a bit tricky because folders might exist that weren't part of the original list. So we have to find all the folders, and then find the ones that aren't part of the folders to be created by the installer, and we delete those folders. 2020-01-04 22:07:00 -07:00
f44f75d497 TabControl styling 2020-01-04 22:40:08 -06:00
7616279766 Merge pull request #349 from Noggog/context-aware-navigation
Context Aware Navigation
2020-01-04 20:25:47 -08:00
5e03ceda2e Merge remote-tracking branch 'origin/master' 2020-01-04 21:01:57 -07:00
afe12ed9e9 UTCNow != Now 2020-01-04 21:01:47 -07:00
e49f1dd5ca Basic settings page that just shows logins for now 2020-01-04 21:15:25 -06:00
43aca88879 Implemented IBackNavigatingVM various places 2020-01-04 21:06:34 -06:00
907a5a2da1 MainWindowVM.ActivePane set made private 2020-01-04 21:04:56 -06:00
2ab10fe1bb BackNavigatingVM. Removed navigation stack 2020-01-04 20:33:38 -06:00
cf2f988156 Merge pull request #348 from Noggog/downloader-adjustments
Downloader adjustments
2020-01-04 18:07:03 -08:00
553a3123bd TCS cancellations in downloaders now call TrySetCancelled
Multiple Cancel calls threw unnecessary exception otherwise.  Would rather be able to cancel multiple times without worrying about throwing
2020-01-04 19:33:00 -06:00
e13b000b54 Global UserInterventionHandler now try/catches
Any exception was borking the callback subscription, so no more interventions were handled
2020-01-04 19:31:54 -06:00
c9f3fabd69 Removed ViewModel/Notifying concepts from INeedsLogin
No properties are actually making use of the ViewModel/[Reactive] concepts, where normal properties might change after the fact, and users might want to construct an Rx observable from a property and its changes, or a GUI might want to watch (via notifypropertychange) changes.

All concepts that are mutable and want to be followed are already able to do so without the ViewModel concepts, as the implement IObservable (IsLoggedIn, for ex)

ViewModel ideally should only be used in a GUI, as it's the weird marriage of Rx + real properties that XAML can bind to.  The ViewModel is the hybrid glue to bring those two worlds together.  In a situation with no GUI, it's unnecessary
2020-01-04 19:30:53 -06:00
5aaf416dca Utils.CatchAndLog. Nexus/LL downloaders use in login commands 2020-01-04 19:30:42 -06:00
af7357e500 Removed some vestigial members 2020-01-04 19:30:34 -06:00
9eec82be0d Bump version for 1.0 beta 13 20200105.3 2020-01-04 18:22:22 -07:00
5957ce669f Merge pull request #347 from Noggog/game-handler-fixes
Game handler fixes
2020-01-04 17:11:18 -08:00
d4a7bc5ae4 Fix for GOG handler checking steam IDs instead of GOG IDs 2020-01-04 18:38:16 -06:00
ad6f398fcf Fix for steam handler contains being case sensitive 2020-01-04 18:36:43 -06:00
6ee0703ad6 Fix Metrics and ListValidation Logging 2020-01-04 16:47:51 -07:00
c26e89806d Merge pull request #345 from erri120/stardew-fix
Fixed typo
2020-01-04 21:29:11 +01:00
8712648e4c Fixed typo 2020-01-04 21:27:28 +01:00
de3c810b32 Merge pull request #343 from erri120/no-match-reason
Compilers will include Reason when for no match in output
2020-01-04 10:48:30 -08:00
96f899648d Merge pull request #339 from erri120/store-fixes
Added more verbose output to the StoreHandlers
2020-01-04 10:45:32 -08:00