Ignore:
Timestamp:
Aug 19, 2023, 9:44:10 PM (15 months ago)
Author:
alloc
Message:

21.1.16.4 Release
Webserver forces query parameter decoding to use UTF-8
All mods built with portable debugging symbols

Location:
TFP-WebServer/WebServer
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • TFP-WebServer/WebServer/ModInfo.xml

    r468 r469  
    55        <Description value="Integrated Webserver for the Web Dashboard and server APIs" />
    66        <Author value="The Fun Pimps LLC" />
    7         <Version value="21.1.16.3" />
     7        <Version value="21.1.16.4" />
    88        <Website value="" />
    99</xml>
  • TFP-WebServer/WebServer/WebServer.csproj

    r463 r469  
    3333  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    3434    <OutputPath>..\bin\Mods\TFP_WebServer\</OutputPath>
    35     <DebugType>full</DebugType>
     35    <DebugType>portable</DebugType>
    3636    <DebugSymbols>true</DebugSymbols>
    3737  </PropertyGroup>
     
    4040    <DefineConstants>ENABLE_PROFILER</DefineConstants>
    4141    <DebugSymbols>true</DebugSymbols>
    42     <DebugType>full</DebugType>
     42    <DebugType>portable</DebugType>
    4343  </PropertyGroup>
    4444  <ItemGroup>
  • TFP-WebServer/WebServer/src/Web.cs

    r459 r469  
    33using System.IO;
    44using System.Net.Sockets;
     5using System.Text;
    56using SpaceWizards.HttpListener;
    67using UnityEngine;
     
    235236                                }
    236237
     238                                request.ContentEncoding = Encoding.UTF8;
    237239                                RequestContext context = new RequestContext (requestPath, request, response, conn, permissionLevel);
    238240
Note: See TracChangeset for help on using the changeset viewer.