Changeset 512
- Timestamp:
- May 21, 2026, 2:16:22 PM (3 months ago)
- Location:
- TFP-WebServer
- Files:
-
- 6 deleted
- 11 edited
-
7dtd-binaries/README.txt (modified) (1 diff)
-
CommandExtensions/CommandExtensions.csproj (modified) (2 diffs)
-
CommandExtensions/ModInfo.xml (modified) (1 diff)
-
MapRendering (deleted)
-
MarkersMod/MarkersMod.csproj (modified) (3 diffs)
-
MarkersMod/ModInfo.xml (modified) (1 diff)
-
MarkersMod/src/Markers.cs (modified) (4 diffs)
-
SpaceWizards.HttpListener (deleted)
-
TFP-WebDashboard.sln (modified) (3 diffs)
-
WebServer (deleted)
-
bin/Mods/TFP_CommandExtensions/CommandExtensions.dll (modified) ( previous)
-
bin/Mods/TFP_CommandExtensions/ModInfo.xml (modified) (1 diff)
-
bin/Mods/TFP_MapRendering (deleted)
-
bin/Mods/TFP_WebServer (deleted)
-
bin/Mods/Xample_MarkersMod/MarkersMod.dll (modified) ( previous)
-
bin/Mods/Xample_MarkersMod/ModInfo.xml (modified) (1 diff)
-
bundle_creation (deleted)
Legend:
- Unmodified
- Added
- Removed
-
TFP-WebServer/7dtd-binaries/README.txt
r422 r512 1 1 Put the following files from your dedicated server in this folder: 2 - 0Harmony.dll3 2 - Assembly-CSharp.dll 4 3 - Assembly-CSharp-firstpass.dll 5 - com.rlabrecque.steamworks.net.dll6 4 - LogLibrary.dll 7 5 - mscorlib.dll 8 6 - System.dll 9 - System.Xml.dll10 - System.Xml.Linq.dll11 7 - UnityEngine.CoreModule.dll 12 8 - UnityEngine.dll 13 - UnityEngine.ImageConversionModule.dll14 9 - Utf8Json.dll -
TFP-WebServer/CommandExtensions/CommandExtensions.csproj
r510 r512 13 13 </PropertyGroup> 14 14 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> 15 <DebugType> none</DebugType>15 <DebugType>embedded</DebugType> 16 16 <Optimize>true</Optimize> 17 17 <OutputPath>..\bin\Mods\TFP_CommandExtensions\</OutputPath> … … 20 20 <ConsolePause>false</ConsolePause> 21 21 <NoStdLib>true</NoStdLib> 22 <DebugSymbols>true</DebugSymbols> 22 23 </PropertyGroup> 23 24 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release_Profiler|AnyCPU' "> -
TFP-WebServer/CommandExtensions/ModInfo.xml
r510 r512 5 5 <Description value="Additional commands for server operation" /> 6 6 <Author value="The Fun Pimps LLC" /> 7 <Version value=" 2.1.0.0" />7 <Version value="1.3.0.0" /> 8 8 <Website value="" /> 9 9 </xml> -
TFP-WebServer/MarkersMod/MarkersMod.csproj
r510 r512 14 14 </PropertyGroup> 15 15 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> 16 <DebugType> none</DebugType>16 <DebugType>embedded</DebugType> 17 17 <Optimize>true</Optimize> 18 18 <OutputPath>..\bin\Mods\Xample_MarkersMod\</OutputPath> … … 21 21 <ConsolePause>false</ConsolePause> 22 22 <NoStdLib>true</NoStdLib> 23 <DebugSymbols>true</DebugSymbols> 23 24 </PropertyGroup> 24 25 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release_Profiler|AnyCPU' "> … … 81 82 </ItemGroup> 82 83 <ItemGroup> 83 <ProjectReference Include="..\WebServer\WebServer.csproj">84 <Project>{01b5f981-b9fd-4364-8f9e-9127130d2542}</Project>85 <Name>WebServer</Name>86 <Private>False</Private>87 </ProjectReference>88 </ItemGroup>89 <ItemGroup>90 84 <None Include="WebMod\**" CopyToOutputDirectory="Always" LinkBase="WebMod\" /> 91 85 </ItemGroup> -
TFP-WebServer/MarkersMod/ModInfo.xml
r510 r512 5 5 <Description value="Allows placing custom markers on the web map" /> 6 6 <Author value="Catalysm and Alloc" /> 7 <Version value="1. 1.1.0" />7 <Version value="1.3.0.0" /> 8 8 <Website value="" /> 9 9 </xml> -
TFP-WebServer/MarkersMod/src/Markers.cs
r487 r512 37 37 private static readonly byte[] jsonKeyIcon = JsonWriter.GetEncodedPropertyNameWithPrefixValueSeparator ("icon"); 38 38 39 p rotectedoverride void HandleRestGet (RequestContext _context) {39 public override void HandleRestGet (RequestContext _context) { 40 40 string id = _context.RequestPath; 41 41 … … 91 91 } 92 92 93 p rotectedoverride void HandleRestPost (RequestContext _context, IDictionary<string, object> _jsonInput, byte[] _jsonInputData) {93 public override void HandleRestPost (RequestContext _context, IDictionary<string, object> _jsonInput, byte[] _jsonInputData) { 94 94 if (!JsonCommons.TryGetJsonField (_jsonInput, "x", out int x)) { 95 95 SendEmptyResponse (_context, HttpStatusCode.BadRequest, _jsonInputData, "NO_OR_INVALID_X"); … … 120 120 } 121 121 122 p rotectedoverride void HandleRestPut (RequestContext _context, IDictionary<string, object> _jsonInput, byte[] _jsonInputData) {122 public override void HandleRestPut (RequestContext _context, IDictionary<string, object> _jsonInput, byte[] _jsonInputData) { 123 123 if (!JsonCommons.TryGetJsonField (_jsonInput, "x", out int x)) { 124 124 SendEmptyResponse (_context, HttpStatusCode.BadRequest, _jsonInputData, "NO_OR_INVALID_X"); … … 158 158 } 159 159 160 p rotectedoverride void HandleRestDelete (RequestContext _context) {160 public override void HandleRestDelete (RequestContext _context) { 161 161 string id = _context.RequestPath; 162 162 -
TFP-WebServer/TFP-WebDashboard.sln
r453 r512 4 4 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CommandExtensions", "CommandExtensions\CommandExtensions.csproj", "{E273D042-57F9-4E2E-8268-5053527E5287}" 5 5 EndProject 6 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MapRendering", "MapRendering\MapRendering.csproj", "{A1847B5F-7BFC-4BCD-94AA-A6C9FB7E7C54}"7 EndProject8 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SpaceWizards.HttpListener", "SpaceWizards.HttpListener\SpaceWizards.HttpListener.csproj", "{E273D042-57F9-4E2E-8268-5053527E5287}"9 EndProject10 6 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MarkersMod", "MarkersMod\MarkersMod.csproj", "{2A008E16-6EB8-4B85-A175-3CB89D9FF4AE}" 11 EndProject12 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebServer", "WebServer\WebServer.csproj", "{01B5F981-B9FD-4364-8F9E-9127130D2542}"13 7 EndProject 14 8 Global … … 21 15 EndGlobalSection 22 16 GlobalSection(ProjectConfigurationPlatforms) = postSolution 23 {A1847B5F-7BFC-4BCD-94AA-A6C9FB7E7C54}.Release_Version|Any CPU.ActiveCfg = Release|Any CPU24 {A1847B5F-7BFC-4BCD-94AA-A6C9FB7E7C54}.Release_Version|Any CPU.Build.0 = Release|Any CPU25 {A1847B5F-7BFC-4BCD-94AA-A6C9FB7E7C54}.Release|Any CPU.ActiveCfg = Release|Any CPU26 {A1847B5F-7BFC-4BCD-94AA-A6C9FB7E7C54}.Release|Any CPU.Build.0 = Release|Any CPU27 {A1847B5F-7BFC-4BCD-94AA-A6C9FB7E7C54}.Release_Profiler|Any CPU.ActiveCfg = Release_Profiler|Any CPU28 {A1847B5F-7BFC-4BCD-94AA-A6C9FB7E7C54}.Release_Profiler|Any CPU.Build.0 = Release_Profiler|Any CPU29 {A1847B5F-7BFC-4BCD-94AA-A6C9FB7E7C54}.Debug|Any CPU.ActiveCfg = Debug|Any CPU30 {A1847B5F-7BFC-4BCD-94AA-A6C9FB7E7C54}.Debug|Any CPU.Build.0 = Debug|Any CPU31 {A1847B5F-7BFC-4BCD-94AA-A6C9FB7E7C54}.Debug_Profiler|Any CPU.ActiveCfg = Debug_Profiler|Any CPU32 {A1847B5F-7BFC-4BCD-94AA-A6C9FB7E7C54}.Debug_Profiler|Any CPU.Build.0 = Debug_Profiler|Any CPU33 {E273D042-57F9-4E2E-8268-5053527E5287}.Release_Version|Any CPU.ActiveCfg = Release|Any CPU34 {E273D042-57F9-4E2E-8268-5053527E5287}.Release_Version|Any CPU.Build.0 = Release|Any CPU35 {E273D042-57F9-4E2E-8268-5053527E5287}.Release|Any CPU.ActiveCfg = Release|Any CPU36 {E273D042-57F9-4E2E-8268-5053527E5287}.Release|Any CPU.Build.0 = Release|Any CPU37 {E273D042-57F9-4E2E-8268-5053527E5287}.Release_Profiler|Any CPU.ActiveCfg = Release_Profiler|Any CPU38 {E273D042-57F9-4E2E-8268-5053527E5287}.Release_Profiler|Any CPU.Build.0 = Release_Profiler|Any CPU39 {E273D042-57F9-4E2E-8268-5053527E5287}.Debug|Any CPU.ActiveCfg = Debug|Any CPU40 {E273D042-57F9-4E2E-8268-5053527E5287}.Debug|Any CPU.Build.0 = Debug|Any CPU41 {E273D042-57F9-4E2E-8268-5053527E5287}.Debug_Profiler|Any CPU.ActiveCfg = Debug_Profiler|Any CPU42 {E273D042-57F9-4E2E-8268-5053527E5287}.Debug_Profiler|Any CPU.Build.0 = Debug_Profiler|Any CPU43 17 {2A008E16-6EB8-4B85-A175-3CB89D9FF4AE}.Release|Any CPU.ActiveCfg = Release|Any CPU 44 18 {2A008E16-6EB8-4B85-A175-3CB89D9FF4AE}.Release|Any CPU.Build.0 = Release|Any CPU … … 51 25 {2A008E16-6EB8-4B85-A175-3CB89D9FF4AE}.Debug_Profiler|Any CPU.ActiveCfg = Debug_Profiler|Any CPU 52 26 {2A008E16-6EB8-4B85-A175-3CB89D9FF4AE}.Debug_Profiler|Any CPU.Build.0 = Debug_Profiler|Any CPU 53 {01B5F981-B9FD-4364-8F9E-9127130D2542}.Release|Any CPU.ActiveCfg = Release|Any CPU 54 {01B5F981-B9FD-4364-8F9E-9127130D2542}.Release|Any CPU.Build.0 = Release|Any CPU 55 {01B5F981-B9FD-4364-8F9E-9127130D2542}.Release_Version|Any CPU.ActiveCfg = Release|Any CPU 56 {01B5F981-B9FD-4364-8F9E-9127130D2542}.Release_Version|Any CPU.Build.0 = Release|Any CPU 57 {01B5F981-B9FD-4364-8F9E-9127130D2542}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 58 {01B5F981-B9FD-4364-8F9E-9127130D2542}.Debug|Any CPU.Build.0 = Debug|Any CPU 59 {01B5F981-B9FD-4364-8F9E-9127130D2542}.Release_Profiler|Any CPU.ActiveCfg = Release_Profiler|Any CPU 60 {01B5F981-B9FD-4364-8F9E-9127130D2542}.Release_Profiler|Any CPU.Build.0 = Release_Profiler|Any CPU 61 {01B5F981-B9FD-4364-8F9E-9127130D2542}.Debug_Profiler|Any CPU.ActiveCfg = Debug_Profiler|Any CPU 62 {01B5F981-B9FD-4364-8F9E-9127130D2542}.Debug_Profiler|Any CPU.Build.0 = Debug_Profiler|Any CPU 27 {E273D042-57F9-4E2E-8268-5053527E5287}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 28 {E273D042-57F9-4E2E-8268-5053527E5287}.Debug|Any CPU.Build.0 = Debug|Any CPU 29 {E273D042-57F9-4E2E-8268-5053527E5287}.Release|Any CPU.ActiveCfg = Debug|Any CPU 30 {E273D042-57F9-4E2E-8268-5053527E5287}.Release|Any CPU.Build.0 = Debug|Any CPU 63 31 EndGlobalSection 64 32 GlobalSection(MonoDevelopProperties) = preSolution -
TFP-WebServer/bin/Mods/TFP_CommandExtensions/ModInfo.xml
r510 r512 5 5 <Description value="Additional commands for server operation" /> 6 6 <Author value="The Fun Pimps LLC" /> 7 <Version value=" 2.1.0.0" />7 <Version value="1.3.0.0" /> 8 8 <Website value="" /> 9 9 </xml> -
TFP-WebServer/bin/Mods/Xample_MarkersMod/ModInfo.xml
r510 r512 5 5 <Description value="Allows placing custom markers on the web map" /> 6 6 <Author value="Catalysm and Alloc" /> 7 <Version value="1. 1.1.0" />7 <Version value="1.3.0.0" /> 8 8 <Website value="" /> 9 9 </xml>
Note:
See TracChangeset
for help on using the changeset viewer.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)