mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
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:
parent
f8de8deb8b
commit
ce8cc0b999
@ -1,6 +1,7 @@
|
||||
### Changelog
|
||||
|
||||
#### Version - 3.0.x.x - TBD
|
||||
* Fix Website Links
|
||||
* Game Support:
|
||||
* Added Cyberpunk 2077 Epic Games Store support
|
||||
|
||||
|
@ -121,14 +121,14 @@ namespace Wabbajack
|
||||
);
|
||||
VersionText = "Modlist version : " + Metadata.Version;
|
||||
IsBroken = metadata.ValidationSummary.HasFailures || metadata.ForceDown;
|
||||
//https://www.wabbajack.org/#/modlists/info?machineURL=eldersouls
|
||||
OpenWebsiteCommand = ReactiveCommand.Create(() => UIUtils.OpenWebsite(new Uri($"https://www.wabbajack.org/#/modlists/info?machineURL={Metadata.NamespacedName}")));
|
||||
// https://www.wabbajack.org/modlist/wj-featured/aldrnari
|
||||
OpenWebsiteCommand = ReactiveCommand.Create(() => UIUtils.OpenWebsite(new Uri($"https://www.wabbajack.org/modlists/{Metadata.NamespacedName}")));
|
||||
|
||||
IsLoadingIdle = new Subject<bool>();
|
||||
|
||||
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));
|
||||
|
||||
ExecuteCommand = ReactiveCommand.CreateFromTask(async () =>
|
||||
|
Loading…
Reference in New Issue
Block a user