Skip to content

Commit

Permalink
- Support DeepStack 2022.01.1 (Fewer copies of python.exe are expecte…
Browse files Browse the repository at this point in the history
…d, Deepstack tab no longer says ERROR) #314

- New remote Telegram command:  RESTARTAITOOL (or RESTART).   This will restart AITOOL only.  #319
- New remote Telegram command:  SCREENSHOT.   Sends a screenshot of the entire screen AITOOL is running on. #319
- Added SHUTDOWNCOMPUTER telegram command.  It will shut down in 10 seconds.  #298
- Dont force 'Detection API' to be enabled (Unless NO other modes including Custom are enabled.  Previously, if Custom was enabled, it would still try to re-enable regular Detection).   This is so people that only want to run their own custom models dont have to run normal detection consuming extra memory and cpu.   #318
- Tweak how lat/long is read from blueiris registry for use with SUNRISE-SUNSET  #296
- FaceStorage path now checks to see if the folder is accessible.  If not, puts the path under the regular settings folder.   (Like in the case AITOOL folder was moved)  #316
- Rework facestorage manager.   Still havent had time to make the UI for this working but all faces are still stored when found.  See previous commit details for how it works.    May have fixed a bug where the FACES.JSON file gets too large or corrupt.  #316
- Only save every 30 seconds (or on demand) to reduce chance of settings file corruption (Controlled via 'SaveSettingsIntervalSeconds' in JSON settings file).  prior to this, it was saving for EVERY image that was processed.
- Pause now always defaults to all cameras rather than selected.
- CTRL-MOUSEWEEL to change font size in History and Log
- Added INNO setup files and automatic build of the installer (Before it was relying on Visual & Installer, a paid product)  #301
- Some prep work with fonts and scaling for eventual move to .NET Framework 6.  Changed default font to Segoe UI 8.25 for most controls.   This can be set in the settings JSON file via "DefaultFont".
  • Loading branch information
VorlonCD committed Apr 8, 2022
1 parent ba04957 commit 00dab40
Show file tree
Hide file tree
Showing 114 changed files with 13,852 additions and 3,831 deletions.
6 changes: 3 additions & 3 deletions src/AITool.Service/AITool.Service.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="AWSSDK.Core, Version=3.3.0.0, Culture=neutral, PublicKeyToken=885c28607f98e604, processorArchitecture=MSIL">
<HintPath>..\packages\AWSSDK.Core.3.5.1.42\lib\net45\AWSSDK.Core.dll</HintPath>
<HintPath>..\packages\AWSSDK.Core.3.7.10.3\lib\net45\AWSSDK.Core.dll</HintPath>
</Reference>
<Reference Include="AWSSDK.Rekognition, Version=3.3.0.0, Culture=neutral, PublicKeyToken=885c28607f98e604, processorArchitecture=MSIL">
<HintPath>..\packages\AWSSDK.Rekognition.3.5.2.15\lib\net45\AWSSDK.Rekognition.dll</HintPath>
<HintPath>..\packages\AWSSDK.Rekognition.3.7.7.33\lib\net45\AWSSDK.Rekognition.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
Expand Down Expand Up @@ -73,7 +73,7 @@
<Content Include="logo.ico" />
</ItemGroup>
<ItemGroup>
<Analyzer Include="..\packages\AWSSDK.Rekognition.3.5.2.15\analyzers\dotnet\cs\AWSSDK.Rekognition.CodeAnalysis.dll" />
<Analyzer Include="..\packages\AWSSDK.Rekognition.3.7.7.33\analyzers\dotnet\cs\AWSSDK.Rekognition.CodeAnalysis.dll" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>
4 changes: 2 additions & 2 deletions src/AITool.Service/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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.0.426.7874")]
[assembly: AssemblyFileVersion("1.0.426.7874")]
[assembly: AssemblyVersion("1.0.433.8133")]
[assembly: AssemblyFileVersion("1.0.433.8133")]
4 changes: 2 additions & 2 deletions src/AITool.Service/packages.config
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="AWSSDK.Core" version="3.5.1.42" targetFramework="net472" />
<package id="AWSSDK.Rekognition" version="3.5.2.15" targetFramework="net472" />
<package id="AWSSDK.Core" version="3.7.10.3" targetFramework="net472" />
<package id="AWSSDK.Rekognition" version="3.7.7.33" targetFramework="net472" />
</packages>
46 changes: 0 additions & 46 deletions src/AITool.Setup/AITool.Setup.innoproj

This file was deleted.

7 changes: 7 additions & 0 deletions src/AITool.Setup/BUILD.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
@echo off
::[email protected]

"%~dp0INNO\ISCC.exe" "%~dp0Script.iss"
echo done. Result=%errorlevel%.

:: Pause
Binary file added src/AITool.Setup/INNO/Compil32.exe
Binary file not shown.
384 changes: 384 additions & 0 deletions src/AITool.Setup/INNO/Default.isl

Large diffs are not rendered by default.

Binary file added src/AITool.Setup/INNO/GraphicalInstallerUI.e32
Binary file not shown.
Binary file added src/AITool.Setup/INNO/ISCC.exe
Binary file not shown.
Binary file added src/AITool.Setup/INNO/ISCmplr.dll
Binary file not shown.
Binary file added src/AITool.Setup/INNO/ISPP.chm
Binary file not shown.
Binary file added src/AITool.Setup/INNO/ISPP.dll
Binary file not shown.
Loading

0 comments on commit 00dab40

Please sign in to comment.