Ignore:
Timestamp:
Oct 28, 2015, 7:51:20 PM (9 years ago)
Author:
peter.souza
Message:

Enemies (zombies and hostile animal entities) are now shown on the map as Hostiles and require permission level 'webapi.gethostilelocation' for web viewers to see.

Animals (non-hostile entities) are now shown on the map as Animals and require permission level 'webapi.getanimalslocation' for web viewers to see.

Permission level for 'webapi.viewallclaims' is now required for a viewer to see all claims, otherwise the permission level for 'webapi.getlandclaims' will only show viewer-owned claims. A viewer requires both 'webapi.getlandclaims' and 'webapi.viewallclaims' to be set for all claims to show (you can't just set 'webapi.viewallclaims').
https://7daystodie.com/forums/showthread.php?12837-Improvements-for-the-dedicated-server&p=317405&viewfull=1#post317405

Permission level for 'webapi.viewallplayers' is now required for a viewer to see all players, otherwise the permission level for 'webapi.getplayerslocation' will only show the player for the currently-authenticated viewer. A viewer requires both 'webapi.getplayerslocation' and 'webapi.viewallplayers' to be set for all players to show (you can't just set 'webapi.viewallplayers').
https://7daystodie.com/forums/showthread.php?12837-Improvements-for-the-dedicated-server&p=317405&viewfull=1#post317405

Banned players are now hidden from the web map.
https://7daystodie.com/forums/showthread.php?12837-Improvements-for-the-dedicated-server&p=320702&viewfull=1#post320702

Items using 'CustomIcon' and 'CustomIconTint' are now supported (although the exact tinting may not be perfectly the same as the game).
https://7daystodie.com/forums/showthread.php?12837-Improvements-for-the-dedicated-server&p=317117&viewfull=1#post317117
https://7daystodie.com/forums/showthread.php?12837-Improvements-for-the-dedicated-server&p=317679&viewfull=1#post317679

Map marker icons for players, hostiles, and animals have been updated.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements/MapRendering/WebAndMapRendering.csproj

    r250 r251  
    1 <?xml version="1.0" encoding="utf-8"?>
     1<?xml version="1.0" encoding="utf-8"?>
    22<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
    33  <PropertyGroup>
     
    2121  </PropertyGroup>
    2222  <ItemGroup>
    23     <Reference Include="System" />
     23    <Reference Include="System">
     24      <HintPath>..\7dtd-binaries\System.dll</HintPath>
     25      <Private>False</Private>
     26    </Reference>
     27    <Reference Include="System.Drawing">
     28      <HintPath>..\7dtd-binaries\System.Drawing.dll</HintPath>
     29      <Private>False</Private>
     30    </Reference>
    2431    <Reference Include="LogLibrary">
    2532      <HintPath>..\7dtd-binaries\LogLibrary.dll</HintPath>
     
    5158    <Compile Include="Commands\EnableRendering.cs" />
    5259    <Compile Include="API.cs" />
     60    <Compile Include="Web\API\GetAnimalsLocation.cs" />
     61    <Compile Include="Web\API\GetRawEntitiesList.cs" />
     62    <Compile Include="Web\API\GetHostileLocation.cs" />
     63    <Compile Include="Web\API\Null.cs" />
    5364    <Compile Include="Web\Web.cs" />
    5465    <Compile Include="Web\MimeType.cs" />
     
    8798    </ProjectReference>
    8899  </ItemGroup>
    89   <ItemGroup>
    90     <Folder Include="Commands\" />
    91     <Folder Include="Web\Handlers\" />
    92   </ItemGroup>
     100  <ItemGroup />
    93101  <ItemGroup>
    94102    <None Include="ModInfo.xml">
Note: See TracChangeset for help on using the changeset viewer.