Update broken website links (#2255)

* Update broken website links

Fixes #2250

* Update CHANGELOG.md

Co-authored-by: Luca <52624146+EzioTheDeadPoet@users.noreply.github.com>
This commit is contained in:
erri120 2022-12-22 09:16:50 +01:00 committed by GitHub
parent f8de8deb8b
commit ce8cc0b999
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 3 deletions

View File

@ -1,6 +1,7 @@
### Changelog ### Changelog
#### Version - 3.0.x.x - TBD #### Version - 3.0.x.x - TBD
* Fix Website Links
* Game Support: * Game Support:
* Added Cyberpunk 2077 Epic Games Store support * Added Cyberpunk 2077 Epic Games Store support

View File

@ -121,14 +121,14 @@ namespace Wabbajack
); );
VersionText = "Modlist version : " + Metadata.Version; VersionText = "Modlist version : " + Metadata.Version;
IsBroken = metadata.ValidationSummary.HasFailures || metadata.ForceDown; IsBroken = metadata.ValidationSummary.HasFailures || metadata.ForceDown;
//https://www.wabbajack.org/#/modlists/info?machineURL=eldersouls // https://www.wabbajack.org/modlist/wj-featured/aldrnari
OpenWebsiteCommand = ReactiveCommand.Create(() => UIUtils.OpenWebsite(new Uri($"https://www.wabbajack.org/#/modlists/info?machineURL={Metadata.NamespacedName}"))); OpenWebsiteCommand = ReactiveCommand.Create(() => UIUtils.OpenWebsite(new Uri($"https://www.wabbajack.org/modlists/{Metadata.NamespacedName}")));
IsLoadingIdle = new Subject<bool>(); IsLoadingIdle = new Subject<bool>();
ModListContentsCommend = ReactiveCommand.Create(async () => ModListContentsCommend = ReactiveCommand.Create(async () =>
{ {
UIUtils.OpenWebsite(new Uri("https://www.wabbajack.org/search/" + Metadata.NamespacedName)); UIUtils.OpenWebsite(new Uri($"https://www.wabbajack.org/search/{Metadata.NamespacedName}"));
}, IsLoadingIdle.StartWith(true)); }, IsLoadingIdle.StartWith(true));
ExecuteCommand = ReactiveCommand.CreateFromTask(async () => ExecuteCommand = ReactiveCommand.CreateFromTask(async () =>