Skip to content

Commit

Permalink
Update sup repositories.
Browse files Browse the repository at this point in the history
  • Loading branch information
SpringsteinM committed Mar 18, 2024
1 parent 3b77d8d commit bfa0dce
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion backend
Submodule backend updated 62 files
+1 −1 backend/__init__.py
+44 −1 backend/apps.py
+0 −1 backend/management/commands/user_change_limits.py
+0 −1 backend/management/commands/video_add.py
+18 −0 backend/migrations/0012_auto_20240122_1541.py
+18 −0 backend/migrations/0013_auto_20240122_1549.py
+43 −0 backend/migrations/0014_auto_20240122_2009.py
+17 −0 backend/migrations/0015_auto_20240208_0958.py
+23 −0 backend/migrations/0016_auto_20240212_1359.py
+27 −0 backend/migrations/0017_auto_20240215_0910.py
+117 −0 backend/migrations/0018_auto_20240213_0903_squashed_0020_auto_20240216_1213.py
+150 −68 backend/models.py
+83 −19 backend/plugin_manager.py
+1 −0 backend/tasks/__init__.py
+5 −4 backend/tasks/aggregate_scalar.py
+2 −0 backend/tasks/audio_amp.py
+2 −0 backend/tasks/audio_freq.py
+2 −0 backend/tasks/audio_rms.py
+2 −0 backend/tasks/blip_vqa.py
+4 −0 backend/tasks/clip.py
+6 −0 backend/tasks/clip_ontology.py
+174 −0 backend/tasks/cluster_to_scalar.py
+23 −9 backend/tasks/color_analysis.py
+11 −3 backend/tasks/color_brightness_analysis.py
+49 −17 backend/tasks/deepface_emotion.py
+132 −42 backend/tasks/face_clustering.py
+6 −0 backend/tasks/insightface_facesize.py
+42 −41 backend/tasks/insightface_identification.py
+176 −176 backend/tasks/place_clustering.py
+4 −0 backend/tasks/place_identification.py
+2 −0 backend/tasks/places_classification.py
+5 −2 backend/tasks/shot_type_classification.py
+5 −5 backend/tasks/whisper.py
+5 −0 backend/tasks/xclip.py
+136 −33 backend/urls.py
+16 −20 backend/utils/analyser_client.py
+4 −1 backend/utils/communication.py
+5 −2 backend/utils/dicts.py
+7 −4 backend/utils/parser.py
+5 −2 backend/utils/task.py
+5 −2 backend/utils/upload.py
+2 −2 backend/views/__init__.py
+9 −9 backend/views/analyser_api.py
+10 −6 backend/views/annotation.py
+8 −4 backend/views/annotation_category.py
+8 −5 backend/views/annotation_shortcut.py
+81 −0 backend/views/cluster_item.py
+58 −71 backend/views/cluster_timeline_item.py
+0 −60 backend/views/face.py
+0 −60 backend/views/place.py
+5 −3 backend/views/plugin.py
+16 −14 backend/views/plugin_run.py
+10 −11 backend/views/plugin_run_result.py
+9 −5 backend/views/shortcut.py
+22 −20 backend/views/timeline.py
+11 −9 backend/views/timeline_import.py
+19 −17 backend/views/timeline_segment.py
+16 −14 backend/views/timeline_segment_annotation.py
+27 −21 backend/views/user.py
+17 −18 backend/views/video.py
+349 −456 backend/views/video_export.py
+26 −2 tibava/settings.py
2 changes: 1 addition & 1 deletion frontend
Submodule frontend updated 76 files
+6 −6 src/App.vue
+1 −5 src/components/AnnotationMenu.vue
+251 −126 src/components/ClusterExploration.vue
+279 −0 src/components/ClusterItemCard.vue
+27 −0 src/components/ClusterTimelineItemOverview.vue
+33 −28 src/components/CurrentEntitiesOverView.vue
+0 −51 src/components/EntitiesCard.vue
+1 −1 src/components/History.vue
+0 −1 src/components/ModalCopyTimeline.vue
+0 −1 src/components/ModalCreateTimeline.vue
+0 −1 src/components/ModalDeleteTimeline.vue
+1 −3 src/components/ModalExport.vue
+3 −5 src/components/ModalExportResult.vue
+2 −3 src/components/ModalImportTimeline.vue
+189 −151 src/components/ModalPlugin.vue
+0 −1 src/components/ModalRenameTimeline.vue
+74 −75 src/components/ModalShortcut.vue
+6 −5 src/components/ModalTimelineSegmentAnnotate.vue
+0 −1 src/components/ModalVideoRename.vue
+1 −6 src/components/ModalVideoUpload.vue
+1 −2 src/components/ModalVisualizationTimeline.vue
+2 −0 src/components/Parameters.vue
+0 −303 src/components/PersonCard.vue
+42 −45 src/components/PersonGraph.vue
+0 −68 src/components/PersonOverview.vue
+0 −315 src/components/PlaceCard.vue
+0 −66 src/components/PlacesOverview.vue
+1 −1 src/components/PluginMenu.vue
+29 −17 src/components/ShotCard.vue
+2 −1 src/components/ShotsOverview.vue
+8 −9 src/components/TimeSelector.vue
+20 −25 src/components/Timeline.vue
+30 −30 src/components/TranscriptCard.vue
+69 −39 src/components/TranscriptOverview.vue
+1 −1 src/components/UserAccount.vue
+11 −3 src/components/UserLogin.vue
+10 −3 src/components/UserRegister.vue
+1 −1 src/components/VideoMenu.vue
+26 −1 src/components/VideoPlayer.vue
+1 −1 src/components/VideoVisualization.vue
+229 −0 src/components/VisualisationConstellationGraph.vue
+119 −0 src/components/VisualizationGraph.vue
+51 −199 src/components/VisualizationMenu.vue
+9 −5 src/components/WordcloudCard.vue
+382 −344 src/locales/en.json
+4 −7 src/plugins/draw/annotation_timeline.js
+0 −1 src/plugins/draw/color_timeline.js
+2 −7 src/plugins/draw/hist_timeline.js
+0 −4 src/plugins/draw/scalar_color_timeline.js
+2 −3 src/plugins/draw/scalar_line_timeline.js
+1 −1 src/plugins/draw/time_bar.js
+3 −3 src/plugins/draw/time_scale.js
+1 −1 src/plugins/draw/timeline.js
+0 −3 src/router/index.js
+17 −12 src/store/annotation.js
+13 −16 src/store/annotation_category.js
+1 −2 src/store/annotation_shortcut.js
+145 −110 src/store/cluster_timeline_item.js
+0 −126 src/store/face.js
+0 −115 src/store/facecluster.js
+0 −126 src/store/place.js
+0 −129 src/store/placecluster.js
+2 −1 src/store/player.js
+14 −22 src/store/plugin_run.js
+1 −2 src/store/plugin_run_result.js
+2 −3 src/store/shortcut.js
+2 −2 src/store/shot.js
+17 −11 src/store/timeline.js
+6 −4 src/store/timeline_segment.js
+21 −158 src/store/timeline_segment_annotation.js
+12 −31 src/store/user.js
+3 −18 src/store/video.js
+1 −2 src/store/video_upload.js
+47 −5 src/views/Home.vue
+0 −132 src/views/Login.vue
+23 −19 src/views/VideoAnalysis.vue

0 comments on commit bfa0dce

Please sign in to comment.