forked from react-native-camera/react-native-camera
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* master: (355 commits) UPDATED renderChildren to return this.props.children instead of null feat(types): add types for react-native-camera#1547 (react-native-camera#1548) fix(rn-camera): inject correct status feat(rn-camera): use and export constants fix status for non authorized/pending camera The correct capture preset for photos is AVCaptureSessionPresetPhoto add gradle 3 on issue template feat(types): add types for react-native-camera#1523 feat(types): add types for react-native-camera#1518 (FaCC) Add missing infer annotation dependency. fix(cache): store video recordings in same directory as photos fix(rn_camera): improve naming feat(rn_camera): add function as children 1.1.2 build(change-log): v1.1.2-4 FIXED warning for focusDepth on front-facing camera chore(cameraview): integrate google's cameraview directly on rncamera? fix(search-paths): remove unnecessary search paths and add missing one 1.1.1 build(change-log): v1.1.1-3 ... # Conflicts: # ios/RCTCameraManager.m
- Loading branch information
Showing
188 changed files
with
28,541 additions
and
2,924 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
{ | ||
"parser": "babel-eslint", | ||
"env": { | ||
"browser": true, | ||
"node": true, | ||
"jest": true, | ||
"es6": true, | ||
}, | ||
"plugins": [ | ||
"react", | ||
"react-native", | ||
"flowtype", | ||
"import" | ||
], | ||
"parserOptions": { | ||
"ecmaVersion": 6, | ||
"sourceType": "module", | ||
"ecmaFeatures": { | ||
"modules": true | ||
} | ||
}, | ||
"extends": [ | ||
"eslint:recommended", | ||
"plugin:react/recommended", | ||
"plugin:import/errors" | ||
], | ||
"rules": { | ||
"comma-dangle": [2, "always-multiline"], | ||
"quotes": [2, "single", { "allowTemplateLiterals": true }], | ||
"react/prop-types": 0, | ||
"no-case-declarations": 0, | ||
"react/jsx-no-bind": 0, | ||
"react/display-name": 0, | ||
"new-cap": 0, | ||
"react-native/no-unused-styles": 2, | ||
"react-native/split-platform-components": 0, | ||
"react-native/no-inline-styles": 0, | ||
"react-native/no-color-literals": 0, | ||
"no-unexpected-multiline": 0, | ||
"no-class-assign": 1, | ||
"no-console": 2, | ||
"object-curly-spacing": [1, "always"], | ||
"flowtype/define-flow-type": 1, | ||
"flowtype/use-flow-type": 1, | ||
"import/first": 2, | ||
"import/default": 0, | ||
"no-unused-vars": ["error", { "ignoreRestSiblings": true }], | ||
"import/named": 0, | ||
"import/namespace": [2, { "allowComputed": true }], | ||
"no-extra-boolean-cast": 0, | ||
"import/no-duplicates": 2 | ||
}, | ||
"settings": { | ||
"import/resolver": { | ||
"node": { | ||
"extensions":[ | ||
".js", | ||
".android.js", | ||
".ios.js", | ||
".json" | ||
] | ||
} | ||
} | ||
}, | ||
"globals": { | ||
"__DEV__": true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
[ignore] | ||
.*/node_modules/.* | ||
|
||
[include] | ||
|
||
[libs] | ||
|
||
[lints] | ||
|
||
[options] | ||
|
||
[strict] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Disable git large files for now! | ||
# RNCameraExample/ios/Frameworks/FaceDetector/Frameworks/frameworks/FaceDetector.framework/FaceDetector filter=lfs diff=lfs merge=lfs -text |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
### Warning | ||
RCTCamera is **DEPRECATED** on v1.0.0 follow our migration guide here https://github.com/react-native-community/react-native-camera/blob/master/docs/migration.md | ||
|
||
### Gradle 3 | ||
This package required Gradle 3, follow this migration guide https://developer.android.com/studio/build/gradle-plugin-3-0-0-migration | ||
|
||
### Which implementation are you using | ||
|
||
*RNCamera* or RCTCamera (RCTCamera will be removed on v2.0.0)? | ||
|
||
### Steps to reproduce | ||
1. | ||
2. | ||
3. | ||
|
||
### Does it work with Expo Camera? | ||
RNCamera is based on Expo Camera, if this does not work with Expo Camera it won't work with RNCamera as well. | ||
You should open an issue there as well, so we can cooperate in a solution. | ||
|
||
### Expected behaviour | ||
Tell us what should happen | ||
|
||
### Actual behaviour | ||
Tell us what happens instead | ||
|
||
### Environment | ||
- **Node.js version**: | ||
- **React Native version**: | ||
- **React Native platform + platform version**: iOS 9.0, Android 5.0, etc | ||
|
||
### react-native-camera | ||
**Version**: npm version or "master" | ||
|
||
> Love react-native-camera? Please consider supporting our collective: 👉 https://opencollective.com/react-native-camera/donate |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
/Example | ||
issue_template.md | ||
/RNCameraExample |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,138 @@ | ||
#### 1.1.2-4 (2018-04-25) | ||
|
||
##### Chores | ||
|
||
* **cameraview:** integrate google's cameraview directly on rncamera? ([d11ed319](https://github.com/react-native-community/react-native-camera/commit/d11ed31917c26df151b4fb46ab166d2921a9ac99)) | ||
|
||
##### Bug Fixes | ||
|
||
* **search-paths:** remove unnecessary search paths and add missing one ([dee298b4](https://github.com/react-native-community/react-native-camera/commit/dee298b4fefca4659468fd43e914fd1c970ca930)) | ||
|
||
#### 1.1.1-3 (2018-04-15) | ||
|
||
##### Build System / Dependencies | ||
|
||
* **change-log:** v1.1.0 ([01e6c843](https://github.com/react-native-community/react-native-camera/commit/01e6c8434d87f4723feff7fec568028bfb140cb5)) | ||
|
||
##### Chores | ||
|
||
* **lint:** | ||
* more lint checks ([3bb9a648](https://github.com/react-native-community/react-native-camera/commit/3bb9a6484af306ac66083dd05ac6c46de542f3b4)) | ||
* fix some warnings ([7967e2fb](https://github.com/react-native-community/react-native-camera/commit/7967e2fbce44b15a77ae0cbddf76f0b37fc530ba)) | ||
* fix lint to make ci work ([919d07b1](https://github.com/react-native-community/react-native-camera/commit/919d07b162f4a39a2454bebdb387224e21a4ba7a)) | ||
* **package:** enforce no errors on lint and update packages ([00f4f4c1](https://github.com/react-native-community/react-native-camera/commit/00f4f4c13714a9d4e03a2cd76f2b19de7a78cfe4)) | ||
|
||
##### New Features | ||
|
||
* **ci:** add first circleci lint and check script ([ee385eec](https://github.com/react-native-community/react-native-camera/commit/ee385eec05b9be5e1f96524206e50aa96085ce19)) | ||
* **android:** make android gradle check work ([1c7f231a](https://github.com/react-native-community/react-native-camera/commit/1c7f231af460127bebf1f9970367bf64987de34b)) | ||
|
||
##### Bug Fixes | ||
|
||
* **styles:** place style sheet above everything,prevent undefined styles ([01501892](https://github.com/react-native-community/react-native-camera/commit/01501892b5711db765cc367a24ba7c3233678791)) | ||
* **warnings:** remove inline styles ([716c4e38](https://github.com/react-native-community/react-native-camera/commit/716c4e389da45fd7d240a8b4acf60a620fa2c372)) | ||
|
||
### 1.1.0-2 (2018-04-15) | ||
|
||
##### Chores | ||
|
||
* **gms:** change default gms to 12.0.0 ([94c8968b](https://github.com/react-native-community/react-native-camera/commit/94c8968b2633cfa4e16d1e4275eb831065232014)) | ||
* **cameraview:** update camera view ([501ffe83](https://github.com/react-native-community/react-native-camera/commit/501ffe8336b9d8bc9743c1ed803fe20b77f2c270)) | ||
|
||
##### Documentation Changes | ||
|
||
* **recipes:** add some recipes ([ef5c2fef](https://github.com/react-native-community/react-native-camera/commit/ef5c2fef14530110b0c5aec3a044ca27dcfa8d72)) | ||
|
||
##### New Features | ||
|
||
* **types:** | ||
* add types for [#1441](https://github.com/react-native-community/react-native-camera/pull/1441) ([be3e0ebf](https://github.com/react-native-community/react-native-camera/commit/be3e0ebfb8ff42a48211b55054325548cd304694)) | ||
* add types for [#1428](https://github.com/react-native-community/react-native-camera/pull/1428) ([6cc3d89b](https://github.com/react-native-community/react-native-camera/commit/6cc3d89bec2a55b31c2e7c4f0e597eafc8c31323)) | ||
* add types for text detection feature ([c0ace2e9](https://github.com/react-native-community/react-native-camera/commit/c0ace2e94c47a9122a386bcbe99911182da80744)) | ||
* **play-sound:** play sound on capture (android) ([69242183](https://github.com/react-native-community/react-native-camera/commit/69242183cc65460040795b866095f34090a9598d)) | ||
|
||
##### Bug Fixes | ||
|
||
* **barcode:** better name google variables and correct init ([38e96ed2](https://github.com/react-native-community/react-native-camera/commit/38e96ed24d6b59e108a0ac175eefff22d7b33c27)) | ||
* **Android:** image stretched instead of cropped ([73eb5fd2](https://github.com/react-native-community/react-native-camera/commit/73eb5fd272c28a6369705d30379dcabae3429301)) | ||
* **barcode-prop:** fix default value and add more values ([2c87b44b](https://github.com/react-native-community/react-native-camera/commit/2c87b44b1660f44e9f2bc8e7fce207c872933806)) | ||
* **docs:** | ||
* move skipProcessing to 'Supported options' ([8054200f](https://github.com/react-native-community/react-native-camera/commit/8054200f81a754ae2d29532b636f55331e996703)) | ||
* Header on the wrong position ([589a0819](https://github.com/react-native-community/react-native-camera/commit/589a08192930f96aa4f7cf255aa4ac0adfd31a12)) | ||
* **types:** fix types for [#1402](https://github.com/react-native-community/react-native-camera/pull/1402) ([26f9a1e5](https://github.com/react-native-community/react-native-camera/commit/26f9a1e53b3f3b21b86f28d27236849995e7baf9)) | ||
* **ios:** add video output early to avoid underexposed beginning ([9ef5b29a](https://github.com/react-native-community/react-native-camera/commit/9ef5b29ad5d66f0e6d52e504dab00b862148c60f)) | ||
|
||
#### 1.0.3-1 (2018-03-24) | ||
|
||
##### Chores | ||
|
||
* restored original CameraModule.java ([7bea109e](https://github.com/react-native-community/react-native-camera/commit/7bea109e47a5b7302069f9774a4c7fb2d1652275)) | ||
|
||
##### Documentation Changes | ||
|
||
* **rncamera:** | ||
* specifying onTextRecognized callback prototype ([48611212](https://github.com/react-native-community/react-native-camera/commit/48611212f56eed8d9594693c84fe3f00cbb8448b)) | ||
* docs for text recognition usage ([68639b82](https://github.com/react-native-community/react-native-camera/commit/68639b82ed98ef53ac1a0cc1762c35c5941b61b6)) | ||
* **codec:** document ios codec option ([2b9d8db2](https://github.com/react-native-community/react-native-camera/commit/2b9d8db21389af624fd7ee3fe0eafa8348a3b776)) | ||
|
||
##### New Features | ||
|
||
* **chore:** try to automate changelog ([cc5f6e62](https://github.com/react-native-community/react-native-camera/commit/cc5f6e62eb78a7de884a3b770eaa12c03a626721)) | ||
* **android:** | ||
* integrating Google Vision's text recognition ([fcaa9452](https://github.com/react-native-community/react-native-camera/commit/fcaa9452865247ba8aa63e6fd323bd86ea0f7401)) | ||
|
||
* **Android:** | ||
* **types:** update types for video recording codec ([f9252254](https://github.com/react-native-community/react-native-camera/commit/f925225484ca1599652039b612fc7deba635de6f)) | ||
* **rn-camera:** add codec option for ios ([c0d5aabf](https://github.com/react-native-community/react-native-camera/commit/c0d5aabf0b32f71326ff153d31e3cb5c588062da)) | ||
|
||
##### Bug Fixes | ||
|
||
* **typo:** fix typo on package.json ([706278d8](https://github.com/react-native-community/react-native-camera/commit/706278d807edac5bc9eb606e29b3326790d7816c)) | ||
* **textrecognition:** height of text block ([01e763b1](https://github.com/react-native-community/react-native-camera/commit/01e763b1430cdb65d82c78c08a5215da65706e6d)) | ||
* issue [#1246](https://github.com/react-native-community/react-native-camera/pull/1246) - torch will be disabled when starting the record ([8c696017](https://github.com/react-native-community/react-native-camera/commit/8c6960178922492bf49fc44fbab25b638209dc4e)) | ||
* **ios-project:** fix path to parent's ios project ([4496c321](https://github.com/react-native-community/react-native-camera/commit/4496c3217195853a36c261415f126140ddebbcc4)) | ||
|
||
#### 1.0.2 (2018-03-10) | ||
|
||
##### Chores | ||
|
||
* **flow:** add missing types to Picture options ([6bff4d93](https://github.com/react-native-community/react-native-camera/commit/6bff4d935ac421f4aea395c58f5916df78cdae0a)) | ||
* **types:** add new keys to TakePictureOptions ([cc272036](https://github.com/react-native-community/react-native-camera/commit/cc272036581f68dbdce1b596644a158a42c471dc)) | ||
* **face-detector:** make face detection stoppage smoother ([3b3c38dd](https://github.com/react-native-community/react-native-camera/commit/3b3c38dd7d08edd1dad3b6c7fb944515fcb1e9c4)) | ||
|
||
##### New Features | ||
|
||
* **types:** | ||
* add FaceDetector declarations ([ba218750](https://github.com/react-native-community/react-native-camera/commit/ba21875001df2e260feb87d71411ff89fe6942ea)) | ||
* add TypeScript definition files ([a94bad5e](https://github.com/react-native-community/react-native-camera/commit/a94bad5e3739927dd50b850f68ed57a59f782e99)) | ||
|
||
##### Bug Fixes | ||
|
||
* **types:** | ||
* fix onBarCodeRead type ([a9947b47](https://github.com/react-native-community/react-native-camera/commit/a9947b47d569227ed6b83ef2988a8cbd3e6b7b41)) | ||
* fix definition for RNCameraProps.ratio ([4d1616c5](https://github.com/react-native-community/react-native-camera/commit/4d1616c57a059127db07f52ca18a8b092ba559ad)) | ||
* **android-camera:** revert to old camera api ([8d9c06ad](https://github.com/react-native-community/react-native-camera/commit/8d9c06ad903b40abc8bef67927d4621c494aeb3b)) | ||
|
||
#### 1.0.1 (2018-02-14) | ||
|
||
##### New Features | ||
|
||
* **release-script:** add script to package json ([b0503dc8](https://github.com/react-native-community/react-native-camera/commit/b0503dc8aefc1d2a992c1778e00c5d0f8dfd6901)) | ||
* **changelog:** add changelog script ([d2263937](https://github.com/react-native-community/react-native-camera/commit/d226393783748f973cc99032343fc55e45828717)) | ||
* **mirror:** add option to give "mirrorImage" flag to takePicture. ([0b6f0abd](https://github.com/react-native-community/react-native-camera/commit/0b6f0abda07b8a9ff3daa1722a254087f30eec08)) | ||
|
||
##### Bug Fixes | ||
|
||
* **focusWarning:** fix focus depth warning being shown for ios. ([79698b81](https://github.com/react-native-community/react-native-camera/commit/79698b815b44507037a6e89fda40b5c505703c00)) | ||
* **imports:** delete some useless imports which may cause problems ([a5b9f7e7](https://github.com/react-native-community/react-native-camera/commit/a5b9f7e717bc11aad9a8e5d9e9a449ad7fd9c9fa)) | ||
|
||
### master | ||
|
||
### 1.0.0 | ||
- RNCamera as main camera implementation for both iOS and Android (base on expo module) | ||
- FaceDetector feature for both iOS and Android (based on expo module) | ||
- RCTCamera deprecated | ||
|
||
### 0.13.0 | ||
- added RNCamera implementation for android | ||
- added FaceDetector for android |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.