mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
2.5.0.6
This commit is contained in:
parent
89404a9b03
commit
b1bf267356
@ -1,5 +1,8 @@
|
|||||||
### Changelog
|
### Changelog
|
||||||
|
|
||||||
|
#### Version - 2.5.0.6 - 6/29/2021
|
||||||
|
* Add Logging for IPS4 scheme handler should help with debugging login issues
|
||||||
|
|
||||||
#### Version - 2.5.0.5 - 6/28/2021
|
#### Version - 2.5.0.5 - 6/28/2021
|
||||||
* Fix another NPE on texture matching
|
* Fix another NPE on texture matching
|
||||||
* Better logging on bad calls to IPS4 sites
|
* Better logging on bad calls to IPS4 sites
|
||||||
|
@ -6,8 +6,8 @@
|
|||||||
<AssemblyName>wabbajack-cli</AssemblyName>
|
<AssemblyName>wabbajack-cli</AssemblyName>
|
||||||
<Company>Wabbajack</Company>
|
<Company>Wabbajack</Company>
|
||||||
<Platforms>x64</Platforms>
|
<Platforms>x64</Platforms>
|
||||||
<AssemblyVersion>2.5.0.5</AssemblyVersion>
|
<AssemblyVersion>2.5.0.6</AssemblyVersion>
|
||||||
<FileVersion>2.5.0.5</FileVersion>
|
<FileVersion>2.5.0.6</FileVersion>
|
||||||
<Copyright>Copyright © 2019-2020</Copyright>
|
<Copyright>Copyright © 2019-2020</Copyright>
|
||||||
<Description>An automated ModList installer</Description>
|
<Description>An automated ModList installer</Description>
|
||||||
<PublishReadyToRun>true</PublishReadyToRun>
|
<PublishReadyToRun>true</PublishReadyToRun>
|
||||||
|
@ -4,8 +4,8 @@
|
|||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>net5.0-windows</TargetFramework>
|
<TargetFramework>net5.0-windows</TargetFramework>
|
||||||
<UseWPF>true</UseWPF>
|
<UseWPF>true</UseWPF>
|
||||||
<AssemblyVersion>2.5.0.5</AssemblyVersion>
|
<AssemblyVersion>2.5.0.6</AssemblyVersion>
|
||||||
<FileVersion>2.5.0.5</FileVersion>
|
<FileVersion>2.5.0.6</FileVersion>
|
||||||
<Copyright>Copyright © 2019-2020</Copyright>
|
<Copyright>Copyright © 2019-2020</Copyright>
|
||||||
<Description>Wabbajack Application Launcher</Description>
|
<Description>Wabbajack Application Launcher</Description>
|
||||||
<PublishReadyToRun>true</PublishReadyToRun>
|
<PublishReadyToRun>true</PublishReadyToRun>
|
||||||
|
@ -111,6 +111,7 @@ namespace Wabbajack.Lib.LibCefHelpers
|
|||||||
{
|
{
|
||||||
public IResourceHandler Create(IBrowser browser, IFrame frame, string schemeName, IRequest request)
|
public IResourceHandler Create(IBrowser browser, IFrame frame, string schemeName, IRequest request)
|
||||||
{
|
{
|
||||||
|
Utils.LogStraightToFile($"Scheme Handler Got: {schemeName} : {request.Url}");
|
||||||
if (SchemeHandler != null && schemeName == "wabbajack")
|
if (SchemeHandler != null && schemeName == "wabbajack")
|
||||||
{
|
{
|
||||||
return SchemeHandler!(browser, frame, schemeName, request);
|
return SchemeHandler!(browser, frame, schemeName, request);
|
||||||
|
@ -3,8 +3,8 @@
|
|||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>net5.0-windows</TargetFramework>
|
<TargetFramework>net5.0-windows</TargetFramework>
|
||||||
<AssemblyVersion>2.5.0.5</AssemblyVersion>
|
<AssemblyVersion>2.5.0.6</AssemblyVersion>
|
||||||
<FileVersion>2.5.0.5</FileVersion>
|
<FileVersion>2.5.0.6</FileVersion>
|
||||||
<Copyright>Copyright © 2019-2020</Copyright>
|
<Copyright>Copyright © 2019-2020</Copyright>
|
||||||
<Description>Wabbajack Server</Description>
|
<Description>Wabbajack Server</Description>
|
||||||
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
||||||
|
@ -117,8 +117,10 @@ namespace Wabbajack
|
|||||||
var state = Guid.NewGuid().ToString();
|
var state = Guid.NewGuid().ToString();
|
||||||
|
|
||||||
|
|
||||||
|
var oldHandler = Helpers.SchemeHandler;
|
||||||
Helpers.SchemeHandler = (browser, frame, _, request) =>
|
Helpers.SchemeHandler = (browser, frame, _, request) =>
|
||||||
{
|
{
|
||||||
|
Helpers.SchemeHandler = oldHandler;
|
||||||
var req = new Uri(request.Url);
|
var req = new Uri(request.Url);
|
||||||
var parsed = HttpUtility.ParseQueryString(req.Query);
|
var parsed = HttpUtility.ParseQueryString(req.Query);
|
||||||
if (parsed.Contains("state"))
|
if (parsed.Contains("state"))
|
||||||
|
@ -6,8 +6,8 @@
|
|||||||
<UseWPF>true</UseWPF>
|
<UseWPF>true</UseWPF>
|
||||||
<Platforms>x64</Platforms>
|
<Platforms>x64</Platforms>
|
||||||
<RuntimeIdentifier>win10-x64</RuntimeIdentifier>
|
<RuntimeIdentifier>win10-x64</RuntimeIdentifier>
|
||||||
<AssemblyVersion>2.5.0.5</AssemblyVersion>
|
<AssemblyVersion>2.5.0.6</AssemblyVersion>
|
||||||
<FileVersion>2.5.0.5</FileVersion>
|
<FileVersion>2.5.0.6</FileVersion>
|
||||||
<Copyright>Copyright © 2019-2020</Copyright>
|
<Copyright>Copyright © 2019-2020</Copyright>
|
||||||
<Description>An automated ModList installer</Description>
|
<Description>An automated ModList installer</Description>
|
||||||
<PublishReadyToRun>true</PublishReadyToRun>
|
<PublishReadyToRun>true</PublishReadyToRun>
|
||||||
|
Loading…
Reference in New Issue
Block a user