source: binary-improvements/MapRendering/WebAndMapRendering.csproj@ 252

Last change on this file since 252 was 251, checked in by peter.souza, 9 years ago

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 size: 4.5 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3 <PropertyGroup>
4 <Configuration Condition=" '$(Configuration)' == '' ">Release</Configuration>
5 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6 <ProductVersion>10.0.0</ProductVersion>
7 <SchemaVersion>2.0</SchemaVersion>
8 <ProjectGuid>{A1847B5F-7BFC-4BCD-94AA-A6C9FB7E7C54}</ProjectGuid>
9 <OutputType>Library</OutputType>
10 <RootNamespace>MapRendering</RootNamespace>
11 <AssemblyName>MapRendering</AssemblyName>
12 <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
13 </PropertyGroup>
14 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
15 <DebugType>none</DebugType>
16 <Optimize>true</Optimize>
17 <OutputPath>..\bin\Mods\Allocs_WebAndMapRendering\</OutputPath>
18 <ErrorReport>prompt</ErrorReport>
19 <WarningLevel>4</WarningLevel>
20 <ConsolePause>false</ConsolePause>
21 </PropertyGroup>
22 <ItemGroup>
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>
31 <Reference Include="LogLibrary">
32 <HintPath>..\7dtd-binaries\LogLibrary.dll</HintPath>
33 <Private>False</Private>
34 </Reference>
35 <Reference Include="UnityEngine">
36 <HintPath>..\7dtd-binaries\UnityEngine.dll</HintPath>
37 <Private>False</Private>
38 </Reference>
39 <Reference Include="Assembly-CSharp">
40 <HintPath>..\7dtd-binaries\Assembly-CSharp.dll</HintPath>
41 <Private>False</Private>
42 </Reference>
43 <Reference Include="mscorlib">
44 <HintPath>..\7dtd-binaries\mscorlib.dll</HintPath>
45 <Private>False</Private>
46 </Reference>
47 <Reference Include="System.Xml">
48 <HintPath>..\7dtd-binaries\System.Xml.dll</HintPath>
49 <Private>False</Private>
50 </Reference>
51 </ItemGroup>
52 <ItemGroup>
53 <Compile Include="AssemblyInfo.cs" />
54 <Compile Include="MapRendering\MapRendering.cs" />
55 <Compile Include="MapRendering\MapRenderBlockBuffer.cs" />
56 <Compile Include="MapRendering\Constants.cs" />
57 <Compile Include="Commands\RenderMap.cs" />
58 <Compile Include="Commands\EnableRendering.cs" />
59 <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" />
64 <Compile Include="Web\Web.cs" />
65 <Compile Include="Web\MimeType.cs" />
66 <Compile Include="Web\API\GetPlayersOnline.cs" />
67 <Compile Include="Web\API\WebAPI.cs" />
68 <Compile Include="Web\API\GetPlayersLocation.cs" />
69 <Compile Include="Web\API\GetPlayerInventory.cs" />
70 <Compile Include="Web\API\GetLandClaims.cs" />
71 <Compile Include="Commands\webstat.cs" />
72 <Compile Include="Web\API\GetStats.cs" />
73 <Compile Include="Web\WebConnection.cs" />
74 <Compile Include="Web\OpenID.cs" />
75 <Compile Include="Web\ConnectionHandler.cs" />
76 <Compile Include="Web\WebPermissions.cs" />
77 <Compile Include="Web\Handlers\ApiHandler.cs" />
78 <Compile Include="Web\Handlers\ItemIconHandler.cs" />
79 <Compile Include="Web\Handlers\PathHandler.cs" />
80 <Compile Include="Web\Handlers\SimpleRedirectHandler.cs" />
81 <Compile Include="Web\Handlers\StaticHandler.cs" />
82 <Compile Include="Web\Handlers\SessionHandler.cs" />
83 <Compile Include="Web\API\ExecuteConsoleCommand.cs" />
84 <Compile Include="Commands\ReloadWebPermissions.cs" />
85 <Compile Include="Web\Handlers\UserStatusHandler.cs" />
86 <Compile Include="Commands\WebTokens.cs" />
87 <Compile Include="Commands\WebPermissionsCmd.cs" />
88 <Compile Include="Web\LogBuffer.cs" />
89 <Compile Include="Web\API\GetLog.cs" />
90 <Compile Include="Web\API\GetWebUIUpdates.cs" />
91 </ItemGroup>
92 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
93 <ItemGroup>
94 <ProjectReference Include="..\7dtd-server-fixes\7dtd-server-fixes.csproj">
95 <Project>{81DA7F87-1A66-4920-AADA-6EAF1971F8D0}</Project>
96 <Name>7dtd-server-fixes</Name>
97 <Private>False</Private>
98 </ProjectReference>
99 </ItemGroup>
100 <ItemGroup />
101 <ItemGroup>
102 <None Include="ModInfo.xml">
103 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
104 </None>
105 </ItemGroup>
106</Project>
Note: See TracBrowser for help on using the repository browser.