diff --git a/CHANGELOG.md b/CHANGELOG.md index 724e8ae..c9dc77e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,11 @@ To extract .7z archives, use [7-Zip](https://www.7-zip.org/)! ## [Click here](http://dudley.gg/squirrelies/re2/latest.7z) to download the latest release! -## [Download 1.4.1.0 Beta](http://dudley.gg/squirrelies/re2/RE2REmakeSRT-1410-Beta-Signed-Release.7z) (2020-01-02) +## [Download 1.4.2.0 Beta](http://dudley.gg/squirrelies/re2/RE2REmakeSRT-1420-Beta-Signed-Release.7z) (2020-04-05) +* Fix for JSON endpoint not listening on all interfaces. Listens on all IPv4 and IPv6 interfaces now. +* Moved some variables around in the Sample JSON HTML file. User configurable settings are near the top now. + +### [Download 1.4.1.0 Beta](http://dudley.gg/squirrelies/re2/RE2REmakeSRT-1410-Beta-Signed-Release.7z) (2020-01-02) * Added Microsoft.AspNetCore.Cors so I could allow cross-origin requests from any origin (such as the file server). Useful for local querying of the JSON data. * Added a sample HTML page with javascript query code to display the JSON values similar to how the SRT lays it out. Useful for OBS Browser Source displaying. diff --git a/RE2REmakeSRT/JSONServer.cs b/RE2REmakeSRT/JSONServer.cs index 1bb8172..6f9fb10 100644 --- a/RE2REmakeSRT/JSONServer.cs +++ b/RE2REmakeSRT/JSONServer.cs @@ -23,7 +23,7 @@ public JSONServer() hostBuilder = new WebHostBuilder() .UseKestrel() - .UseUrls("http://localhost:7190") + .UseUrls("http://::7190;http://0.0.0.0:7190") .UseContentRoot(contentRoot) .UseStartup() .UseEnvironment("Development") diff --git a/RE2REmakeSRT/Properties/AssemblyInfo.cs b/RE2REmakeSRT/Properties/AssemblyInfo.cs index 200d0bb..750733d 100644 --- a/RE2REmakeSRT/Properties/AssemblyInfo.cs +++ b/RE2REmakeSRT/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.4.1.0")] -[assembly: AssemblyFileVersion("1.4.1.0")] +[assembly: AssemblyVersion("1.4.2.0")] +[assembly: AssemblyFileVersion("1.4.2.0")] diff --git a/RE2REmakeSRT/SampleJSONDisplayPage.html b/RE2REmakeSRT/SampleJSONDisplayPage.html index ff0fb7a..3a64d0d 100644 --- a/RE2REmakeSRT/SampleJSONDisplayPage.html +++ b/RE2REmakeSRT/SampleJSONDisplayPage.html @@ -4,11 +4,18 @@ - RE2 REmake SRT JSON Display Page + RE3 REmake SRT JSON Display Page +