Install "camera with exif" for capturing exif data with the mobile camera. This will eventually allow the user to take a photograph with their mobile camera and the Exposure time, ISO and f-stop can be used to establish an exposure value, that can be used to automatically set an exposure time for the Bolex to match the mobile camera's exposure setting.
This commit is contained in:
parent
a9414c6212
commit
e55154e46e
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "com.sixteenmillimeter.intval3",
|
"name": "com.sixteenmillimeter.intval3",
|
||||||
"version": "1.0.0",
|
"version": "1.0.2",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
@ -531,6 +531,11 @@
|
||||||
"resolved": "https://registry.npmjs.org/cordova-plugin-ble-central/-/cordova-plugin-ble-central-1.1.4.tgz",
|
"resolved": "https://registry.npmjs.org/cordova-plugin-ble-central/-/cordova-plugin-ble-central-1.1.4.tgz",
|
||||||
"integrity": "sha1-rZA2mnla1wChuf3WbhnnzkSnicM="
|
"integrity": "sha1-rZA2mnla1wChuf3WbhnnzkSnicM="
|
||||||
},
|
},
|
||||||
|
"cordova-plugin-camera-with-exif": {
|
||||||
|
"version": "1.2.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/cordova-plugin-camera-with-exif/-/cordova-plugin-camera-with-exif-1.2.2.tgz",
|
||||||
|
"integrity": "sha1-/kxfHWgga6QoOqtNM4MrVSwil3A="
|
||||||
|
},
|
||||||
"cordova-plugin-compat": {
|
"cordova-plugin-compat": {
|
||||||
"version": "1.2.0",
|
"version": "1.2.0",
|
||||||
"resolved": "https://registry.npmjs.org/cordova-plugin-compat/-/cordova-plugin-compat-1.2.0.tgz",
|
"resolved": "https://registry.npmjs.org/cordova-plugin-compat/-/cordova-plugin-compat-1.2.0.tgz",
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
"cordova-android": "^6.4.0",
|
"cordova-android": "^6.4.0",
|
||||||
"cordova-ios": "^4.5.4",
|
"cordova-ios": "^4.5.4",
|
||||||
"cordova-plugin-ble-central": "^1.1.4",
|
"cordova-plugin-ble-central": "^1.1.4",
|
||||||
|
"cordova-plugin-camera-with-exif": "^1.2.2",
|
||||||
"cordova-plugin-compat": "^1.2.0",
|
"cordova-plugin-compat": "^1.2.0",
|
||||||
"cordova-plugin-device": "^1.1.7",
|
"cordova-plugin-device": "^1.1.7",
|
||||||
"cordova-plugin-dialogs": "^1.3.4",
|
"cordova-plugin-dialogs": "^1.3.4",
|
||||||
|
@ -29,7 +30,8 @@
|
||||||
"cordova-plugin-ble-central": {
|
"cordova-plugin-ble-central": {
|
||||||
"BLUETOOTH_USAGE_DESCRIPTION": "INTVAL intervalometer controls"
|
"BLUETOOTH_USAGE_DESCRIPTION": "INTVAL intervalometer controls"
|
||||||
},
|
},
|
||||||
"cordova-plugin-splashscreen": {}
|
"cordova-plugin-splashscreen": {},
|
||||||
|
"cordova-plugin-camera-with-exif": {}
|
||||||
},
|
},
|
||||||
"platforms": [
|
"platforms": [
|
||||||
"android",
|
"android",
|
||||||
|
|
Loading…
Reference in New Issue