Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
501b221
Move to .net 4.8 for TLS1.3
CyberTech Sep 21, 2020
247d55c
Now that we're on 4.8, move to SecurityProtocolType.SystemDefault
CyberTech Sep 21, 2020
2f0fb93
Update refererUri, remove ignoreClientStyle, to match official launcher.
CyberTech Sep 21, 2020
a24f0a5
CreateHttpWebRequest, if referer is "URL", use the full current reque…
CyberTech Sep 21, 2020
61830fb
Add CustomHeaders to enable forcing the Host header to be first, whic…
CyberTech Sep 21, 2020
f008885
Remove unused variables (warnings removal)
CyberTech Sep 21, 2020
f49644b
Change AnyCpu config to actually use AnyCpu again.
CyberTech Sep 21, 2020
c115603
Remove extraneous _body var and use _responseBody in it's place.
CyberTech Sep 21, 2020
7fffae2
Restore Prefer32Bit for max compat, as some were getting issues with …
CyberTech Sep 22, 2020
1f4e3d1
Disable the Singularity profile dropdown/button unless use singularit…
CyberTech Sep 22, 2020
fbb26aa
Change version to 1.0.0.36 to differentiate during testing.
CyberTech Sep 23, 2020
2af0101
update
wanjizheng Nov 3, 2020
aebb6cc
v1.0.0.37
wanjizheng Nov 3, 2020
3bf6e41
update
wanjizheng Nov 3, 2020
186be56
update
wanjizheng Nov 3, 2020
56779f0
beta2
wanjizheng Nov 3, 2020
1cc1a39
Beta3
wanjizheng Nov 7, 2020
110c6fc
Update app.manifest
wanjizheng Nov 9, 2020
fa2fc4d
Revert "Update app.manifest"
wanjizheng Nov 9, 2020
3d66382
Revert "Beta3"
wanjizheng Nov 9, 2020
7fb17dc
Revert "Revert "Beta3""
wanjizheng Nov 9, 2020
5713214
update
wanjizheng Nov 14, 2020
93e7197
Beta-4
wanjizheng Nov 14, 2020
dc2d121
beta5
wanjizheng Nov 15, 2020
8b3955a
Beta7
wanjizheng Nov 17, 2020
0e10e74
v1.0.0.37-Beta7
wanjizheng Nov 21, 2020
5ce0995
update
wanjizheng Nov 21, 2020
935ba23
update
wanjizheng Nov 22, 2020
d952fcd
v1.0.0.37-Beta7
wanjizheng Nov 23, 2020
5629c30
v1.0.0.37
wanjizheng Feb 21, 2021
e2207ae
v1.0.0.38-Beta1
wanjizheng Feb 22, 2021
3557cfb
update
wanjizheng Jul 17, 2021
2d53a43
v1.0.0.38
wanjizheng Sep 9, 2021
cc4e4e7
Merge branch 'Development'
wanjizheng Sep 9, 2021
2aca4c3
v1.0.0.39
wanjizheng Oct 12, 2021
0493a8f
Merge branch 'Development'
wanjizheng Oct 12, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 22 additions & 2 deletions App.config
Original file line number Diff line number Diff line change
@@ -1,14 +1,34 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8" />
</startup>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-12.0.0.0" newVersion="12.0.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Security.Cryptography.Cng" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.3.3.0" newVersion="4.3.3.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.1.1" newVersion="4.0.1.1" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Text.Encoding.CodePages" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Buffers" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.3.0" newVersion="4.0.3.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
</configuration>
Loading