forked from gentlepumpkin/bi-aidetection
-
-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Just a reminder, Faces have been stored for a few versions now in \…
…_Settings\FaceStorage. If you edit FACES.JSON (without AITOOLS open) you can control "MaxFilesPerFace" (defaults to 1000) and "MaxFilesAgeDays" (defaults to 182), "SaveUnknownFaces" (defaults to true), "SaveKnownFaces" (defaults to true. Sorry, no face training or UI for this feature yet. #256 #241 - Fix crash that happens when you try to open Deepstack > STDERR.TXT. If Windows 11 has broken TXT file associations you have to re-associate manually to fix. - Increase FileSystemWatcher.InternalBufferSize from 8k to 65k to try to avoid "too many changes at once in directory" error - Fix error about for input path & copy alert images to folder if both paths were EMPTY. #294 - Allow for "empty" deepstack CUSTOM model MODE field. And do not force mode to uppercase since it appears to be case sensitive in the back end python code. Force first letter upper, the rest lower. Needs only Low Medium and High so MEDIUM fails with error in STDERR.TXT. #281 - Update default camera Trigger URL to be more compatible with newer releases of BI - The new one seems to work with a single URL rather than multiple. #273 - Lower default ActionDelayMS from 500 to 250.
- Loading branch information
Showing
10 changed files
with
76 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,46 @@ | ||
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | ||
<ProductVersion>1.0</ProductVersion> | ||
<SchemaVersion>2.0</SchemaVersion> | ||
<ProjectGuid>977e04cc-69c8-4ca9-b599-89b5e5b25772</ProjectGuid> | ||
<AssemblyName>AITool.Setup</AssemblyName> | ||
<Name>AITool.Setup</Name> | ||
<RootNamespace>AITool.Setup</RootNamespace> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' "> | ||
<OutputPath> | ||
</OutputPath> | ||
<CompilerOutput /> | ||
<CompilerBaseFileName /> | ||
<CompilerSignTool /> | ||
<DirectivesSymbol /> | ||
<DirectivesOption /> | ||
<DirectivesParseOption /> | ||
<DirectivesInclude /> | ||
<DirectivesIncludeFile /> | ||
<DirectivesInlineStart /> | ||
<DirectivesInlineEnd /> | ||
<LaunchToolBeforeBuild> | ||
</LaunchToolBeforeBuild> | ||
<LaunchToolAfterBuild> | ||
</LaunchToolAfterBuild> | ||
<RunInstaller>No</RunInstaller> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> | ||
<OutputPath> | ||
</OutputPath> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<PreBuildEvent> | ||
</PreBuildEvent> | ||
<PostBuildEvent> | ||
</PostBuildEvent> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Compile Include="Script.iss"> | ||
</Compile> | ||
</ItemGroup> | ||
<Import Project="$(MSBuildExtensionsPath)\VisualInstaller\InnoSetupProject.targets" /> | ||
<PropertyGroup> | ||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | ||
<ProductVersion>1.0</ProductVersion> | ||
<SchemaVersion>2.0</SchemaVersion> | ||
<ProjectGuid>977e04cc-69c8-4ca9-b599-89b5e5b25772</ProjectGuid> | ||
<AssemblyName>AITool.Setup</AssemblyName> | ||
<Name>AITool.Setup</Name> | ||
<RootNamespace>AITool.Setup</RootNamespace> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' "> | ||
<OutputPath> | ||
</OutputPath> | ||
<CompilerOutput /> | ||
<CompilerBaseFileName /> | ||
<CompilerSignTool /> | ||
<DirectivesSymbol /> | ||
<DirectivesOption /> | ||
<DirectivesParseOption /> | ||
<DirectivesInclude /> | ||
<DirectivesIncludeFile /> | ||
<DirectivesInlineStart /> | ||
<DirectivesInlineEnd /> | ||
<LaunchToolBeforeBuild> | ||
</LaunchToolBeforeBuild> | ||
<LaunchToolAfterBuild> | ||
</LaunchToolAfterBuild> | ||
<RunInstaller>No</RunInstaller> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> | ||
<OutputPath> | ||
</OutputPath> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<PreBuildEvent> | ||
</PreBuildEvent> | ||
<PostBuildEvent> | ||
</PostBuildEvent> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Compile Include="Script.iss"> | ||
</Compile> | ||
</ItemGroup> | ||
<Import Project="$(MSBuildExtensionsPath)\VisualInstaller64\InnoSetupProject.targets" /> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file renamed
BIN
+8.36 MB
src/UI/Installer/AIToolSetup.2.1.1.exe → src/UI/Installer/AIToolSetup.2.1.2.exe
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters