Skip to content

Commit

Permalink
fix: Use Camera1 instead of UnknownCamera & bump version to 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilzyla committed Oct 20, 2021
1 parent 667dabb commit 0dd383d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "mbaza-ai",
"productName": "Mbaza AI",
"version": "1.3.0",
"version": "1.3.1",
"description": "A desktop application that allows bioconservation researchers to classify camera trap animal images and analyze the results.",
"main": "./main.prod.js",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion app/utils/exportPhotos.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ function filename(o: Observation) {
const name = [
o.project_id || 'UnknownProject',
o.station || 'UnknownStation',
'UnknownCamera',
'Camera1',
`CAM${o.camera}`,
format(o.timestamp, 'yyyy-MM-dd'),
format(o.timestamp, 'HH-mm-ss'),
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "mbaza-ai",
"productName": "Mbaza AI",
"version": "1.3.0",
"version": "1.3.1",
"description": "A desktop application that allows bioconservation researchers to classify camera trap animal images and analyze the results.",
"scripts": {
"build": "concurrently \"yarn build-main\" \"yarn build-renderer\"",
Expand Down

0 comments on commit 0dd383d

Please sign in to comment.