Skip to content

Commit

Permalink
update release (#1404)
Browse files Browse the repository at this point in the history
  • Loading branch information
BryonLewis authored Jan 26, 2024
1 parent abec7eb commit 7632ee2
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 5 deletions.
1 change: 0 additions & 1 deletion client/dive-common/components/Viewer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -598,7 +598,6 @@ export default defineComponent({
progress.total = tracks.length + groups.length;
const trackStore = cameraStore.camMap.value.get(camera)?.trackStore;
const groupStore = cameraStore.camMap.value.get(camera)?.groupStore;
console.log(`Loading Camera: ${camera}`);
if (trackStore && groupStore) {
// We can start sorting if our total tracks are less than 20000
// If greater we do one sort at the end instead to speed loading.
Expand Down
3 changes: 0 additions & 3 deletions client/src/track.ts
Original file line number Diff line number Diff line change
Expand Up @@ -517,9 +517,6 @@ export default class Track extends BaseAnnotation {
};
});
// accept either number or string, convert to number
if (json.id === null) {
console.log(json);
}
const intTrackId = parseInt(json.id.toString(), 10);
const track = new Track(intTrackId, {
features: sparseFeatures,
Expand Down
2 changes: 1 addition & 1 deletion client/vue.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ module.exports = {
artifactName: 'DIVE-Desktop-${version}.${ext}',
},
win: {
target: ['nsis', 'portable', 'msi', 'zip'],
target: ['portable', 'zip'],
// eslint-disable-next-line no-template-curly-in-string
artifactName: 'DIVE-Desktop-${version}.${ext}',
},
Expand Down

0 comments on commit 7632ee2

Please sign in to comment.