show created first

This commit is contained in:
Alex Bezdieniezhnykh
2025-05-05 09:50:49 +03:00
parent 83e5eb04e3
commit f49c4e9d37
4 changed files with 33 additions and 24 deletions
+3 -1
View File
@@ -284,7 +284,9 @@ public partial class DatasetExplorer
SelectedAnnotations.Clear(); SelectedAnnotations.Clear();
SelectedAnnotationDict.Clear(); SelectedAnnotationDict.Clear();
var annotations = _annotationsDict[ExplorerEditor.CurrentAnnClass.YoloId]; var annotations = _annotationsDict[ExplorerEditor.CurrentAnnClass.YoloId];
foreach (var ann in annotations.OrderByDescending(x => x.Value.CreatedDate)) foreach (var ann in annotations
.OrderBy(x => x.Value.AnnotationStatus)
.ThenByDescending(x => x.Value.CreatedDate))
{ {
var annThumb = new AnnotationThumbnail(ann.Value); var annThumb = new AnnotationThumbnail(ann.Value);
SelectedAnnotations.Add(annThumb); SelectedAnnotations.Add(annThumb);
+1
View File
@@ -31,6 +31,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Build", "Build", "{CF141A48
build\downloader_config.yaml = build\downloader_config.yaml build\downloader_config.yaml = build\downloader_config.yaml
build\build_cdn_manager.cmd = build\build_cdn_manager.cmd build\build_cdn_manager.cmd = build\build_cdn_manager.cmd
build\jenkins\pipeline = build\jenkins\pipeline build\jenkins\pipeline = build\jenkins\pipeline
build\build_dotnet.cmd = build\build_dotnet.cmd
EndProjectSection EndProjectSection
EndProject EndProject
Global Global
+22
View File
@@ -0,0 +1,22 @@
pushd %~dp0..
echo Build .net app
dotnet build -c Release
cd Azaion.Suite
call postbuild.cmd Release
call upload-file %cd%\config.secured.json
call upload-file %cd%\config.system.json
dotnet publish -r win-x64 -p:SatelliteResourceLanguages="en" -p:DebugSymbols=false -p:ForPublish=true --self-contained true
cd ..
rmdir dist /s /q
xcopy Azaion.Suite\bin\Release\net8.0-windows\win-x64\publish dist\ /s /e /q
del dist\config.json
move dist\config.production.json dist\config.json
mkdir dist\dummy
move dist\Azaion.Annotator.dll dist\dummy\
move dist\Azaion.Dataset.dll dist\dummy\
popd
+6 -22
View File
@@ -1,30 +1,12 @@
@echo off @echo off
pushd %~dp0
cd %~dp0.. call build_dotnet
echo Build .net app
dotnet build -c Release
cd Azaion.Suite call ..\Azaion.Inference\build.cmd
call postbuild.cmd Release
call upload-file %cd%\config.secured.json
call upload-file %cd%\config.system.json
dotnet publish -r win-x64 -p:SatelliteResourceLanguages="en" -p:DebugSymbols=false -p:ForPublish=true --self-contained true
cd ..
rmdir dist /s /q
xcopy Azaion.Suite\bin\Release\net8.0-windows\win-x64\publish dist\ /s /e /q
del dist\config.json
move dist\config.production.json dist\config.json
mkdir dist\dummy
move dist\Azaion.Annotator.dll dist\dummy\
move dist\Azaion.Dataset.dll dist\dummy\
call Azaion.Inference\build.cmd
cd %~dp0..
echo Download onnx model echo Download onnx model
cd build cd %~dp0
if not exist cdn_manager.exe ( if not exist cdn_manager.exe (
echo Install cdn_manager echo Install cdn_manager
call build_cdn_manager call build_cdn_manager
@@ -60,3 +42,5 @@ copy C:\\share\gps-models\* %DESTINATION%\models
echo building installer... echo building installer...
iscc build\installer.iss iscc build\installer.iss
popd