Skip to content

Commit 85af494

Browse files
committed
Merge branch 'v2.8.1'
2 parents 71f9239 + 43d5e92 commit 85af494

File tree

881 files changed

+5466
-74012
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

881 files changed

+5466
-74012
lines changed

.gitignore

Lines changed: 30 additions & 71 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ bld/
3030

3131
# Visual Studio cache/options directory
3232
.vs/
33+
3334
# Uncomment if you have tasks that create the project's static files in wwwroot
3435
#wwwroot/
3536

@@ -302,101 +303,59 @@ MigrationBackup/
302303
/demos/clients/Python/detected
303304
/demos/clients/Python/Vision/detected
304305

305-
306-
# Installers -------------------------------------------------------------------
307-
308-
/Installers/macOS/application
309-
/Installers/macOS/build/
310-
/Installers/macOS/target
311-
/Installers/macOS/*.pkg
312-
/Installers/macOS/CodeProject.AI-Server_*_macOS_*.zip
313-
314-
/Installers/Ubuntu/build/
315-
/Installers/Ubuntu/installer/
316-
/Installers/Ubuntu/*.deb
317-
/Installers/Ubuntu/codeproject.ai-server_*_Ubuntu_*.zip
318-
319-
/Installers/Windows/Inno Setup/Output
320-
/Installers/Windows/Inno Setup/assets/dotnet-hosting-*.exe
321-
/Installers/Windows/WIX Toolset/CodeProjectAI.Server.Installer/ServerInstallFiles.wxs
322-
323-
324306
# Downloads --------------------------------------------------------------------
325307

326308
# Linux utilities
327309
wget-log*
328310

329311
# keep the folder structure but don't git commit the cached downloads
330-
!/src/downloads
331-
/src/downloads/*
312+
!/downloads
313+
/downloads/*
332314

333-
!/src/downloads/modules
334-
/src/downloads/modules/*
335-
!/src/downloads/modules/readme.txt
315+
!/downloads/modules
316+
/downloads/modules/*
317+
!/downloads/modules/readme.txt
336318

337-
!/src/downloads/models
338-
/src/downloads/models/*
339-
!/src/downloads/models/models.json
319+
!/downloads/models
320+
/downloads/models/*
321+
!/downloads/models/models.json
340322

323+
/runtimes
341324

342325
# Downloaded assets and libraries for modules
343-
/src/modules/ALPR/paddleocr
344-
/src/modules/ALPR-RKNN/paddleocr
345-
/src/modules/BackgroundRemover/models
346-
/src/modules/Cartooniser/weights
347-
/src/modules/FaceProcessing/assets
348-
/src/modules/FaceProcessing/datastore/
349-
/src/modules/LlamaChat/models/
350-
/src/modules/ObjectDetectionCoral/assets
351-
src/modules/ObjectDetectionCoral/edgetpu_runtime
352-
src/modules/ObjectDetectionYoloRKNN/assets
353-
src/modules/ObjectDetectionYoloRKNN/custom-models
354-
/src/modules/ObjectDetectionYOLOv5Net/assets/
355-
/src/modules/ObjectDetectionYOLOv5Net/custom-models
356-
/src/modules/ObjectDetectionYOLOv5Net/LocalNugets
357-
/src/modules/ObjectDetectionYOLOv5-3.1/custom-models
358-
/src/modules/ObjectDetectionYOLOv5-3.1/assets
359-
/src/modules/ObjectDetectionYOLOv5-6.2/assets
360-
/src/modules/ObjectDetectionYOLOv5-6.2/custom-models
361-
/src/modules/ObjectDetectionYOLOv8/assets
362-
/src/modules/ObjectDetectionYOLOv8/custom-models
363-
/src/modules/OCR/paddleocr
364-
/src/modules/SceneClassifier/assets
365-
/src/modules/SoundClassifierTF/data/
366-
/src/modules/Text2Image/assets
367-
/src/modules/TrainingObjectDetectionYOLOv5/assets
368-
/src/modules/TrainingObjectDetectionYOLOv5/datasets
369-
/src/modules/TrainingObjectDetectionYOLOv5/fiftyone
370-
/src/modules/TrainingObjectDetectionYOLOv5/training
371-
/src/modules/TrainingObjectDetectionYOLOv5/train
372-
/src/modules/TrainingObjectDetectionYOLOv5/zoo
373-
374-
src/demos/modules/DotNetLongProcess/assets/
375-
src/demos/modules/DotNetSimple/assets/
376-
src/demos/modules/PythonLongProcess/assets
377-
src/demos/modules/PythonSimple/assets
326+
/modules/ObjectDetectionYOLOv5Net/assets/
327+
/modules/ObjectDetectionYOLOv5Net/custom-models
328+
/modules/ObjectDetectionYOLOv5Net/LocalNugets
329+
/modules/ObjectDetectionYOLOv5-6.2/assets
330+
/modules/ObjectDetectionYOLOv5-6.2/custom-models
331+
332+
/src/demos/modules/DotNetLongProcess/assets/
333+
/src/demos/modules/DotNetSimple/assets/
334+
/src/demos/modules/PythonLongProcess/assets
335+
/src/demos/modules/PythonSimple/assets
378336

379337
# Config files -----------------------------------------------------------------
380338

381339
# Server config on install
382340
/src/server/installconfig.json
383341

384342

385-
# SDK --------------------------------------------------------------------------
343+
# Utils --------------------------------------------------------------------------
386344

387345
# The compiled form of the ParseJSON utility. We move the compiled files to its base dir it for convenience
388-
/src/SDK/Utilities/ParseJSON/ParseJSON
389-
/src/SDK/Utilities/ParseJSON/ParseJSON.exe
390-
/src/SDK/Utilities/ParseJSON/ParseJSON.deps.json
391-
/src/SDK/Utilities/ParseJSON/ParseJSON.dll
392-
/src/SDK/Utilities/ParseJSON/ParseJSON.runtimeconfig.json
393-
/src/SDK/Utilities/ParseJSON/ParseJSON.xml
346+
/utils/ParseJSON/ParseJSON
347+
/utils/ParseJSON/ParseJSON.exe
348+
/utils/ParseJSON/ParseJSON.deps.json
349+
/utils/ParseJSON/ParseJSON.runtimeconfig.json
350+
/utils/ParseJSON/ParseJSON.xml
351+
/utils/ParseJSON/*.dll
394352

395353
# Module packages --------------------------------------------------------------
396354

397355
# Generated exe packages
398356
/src/modules/*/*-[0-9]*.[0-9]*.[0-9]*.zip
399357

400358
# Debug debris -----------------------------------------------------------------
401-
/src/modules/ALPR/plate.png
402-
/src/modules/ALPR-RKNN/plate.png
359+
360+
/SDK
361+
/debug

0 commit comments

Comments
 (0)