n1ru4l
34a058936a
v2.11.2
2019-08-08 08:50:33 +02:00
Tadas Talaikis
728534d8fe
fix: App name shouldn't be equal to the registered application ( #2393 )
2019-08-03 20:48:45 +02:00
Valentin
18ed8f7984
fix(android): Support writing custom Exif tags to modified image file ( #2402 )
2019-08-03 20:48:36 +02:00
Tim Carr
4473d7c7ce
Fix two crashes on iOS where error leads to runSession being called before commitConfiguration
2019-08-03 20:47:57 +02:00
Hanno Fellmann
cfa02695cf
fix(exif): writing EXIF data with correct data type ( #2396 )
2019-08-03 20:46:54 +02:00
semantic-release-bot
7699f5262f
chore(release): 2.11.1 [skip ci]
...
## [2.11.1](https://github.com/react-native-community/react-native-camera/compare/v2.11.0...v2.11.1 ) (2019-07-09)
### Bug Fixes
* LinkingLibrariesWindows.md link ([#2365 ](https://github.com/react-native-community/react-native-camera/issues/2365 )) ([00e9c32 ](https://github.com/react-native-community/react-native-camera/commit/00e9c32 ))
2019-07-09 20:44:44 +00:00
Rıdvan Altun
00e9c32453
fix: LinkingLibrariesWindows.md link ( #2365 )
2019-07-09 17:40:01 -03:00
Mateus Andrade
e6469bb630
Merge pull request #2332 from MateusAndrade/chore/androind-permission-example
...
Chore - setting androidCameraPermissionOptions to examples
2019-06-29 23:58:42 -03:00
Mateus Andrade
2facf5c71c
Merge pull request #2339 from canozinci/canozinci-patch-1
...
Update RNCamera.m to fix video quality mismatch while recording multiple videos
2019-06-25 13:53:14 -03:00
Can Ozinci
de88f74788
Update RNCamera.m
2019-06-25 17:27:06 +03:00
MateusAndrade
a12198b8b7
chore(camera-access): permission android Mlkit
2019-06-22 15:28:18 -03:00
MateusAndrade
1cd20cdacb
chore(camera-access): change prop to androidCameraPermissionOptions
2019-06-22 15:22:44 -03:00
Mateus Andrade
4075cdf0b0
Update README.md
2019-06-22 15:13:11 -03:00
Mateus Andrade
9b99e66e1c
Update README.md
2019-06-21 23:34:02 -03:00
Mateus Andrade
cb73ffdf68
Merge pull request #7 from react-native-community/master
...
merge
2019-06-21 23:33:41 -03:00
Andrew Chaa
a77b64cf5b
Updating README with RN Camera instruction for iOS simulator ( #2326 )
...
* Update README.md
* Update README.md
2019-06-21 10:10:59 -03:00
semantic-release-bot
47ab6b3d0c
chore(release): 2.11.0 [skip ci]
...
# [2.11.0](https://github.com/react-native-community/react-native-camera/compare/v2.10.2...v2.11.0 ) (2019-06-20)
### Bug Fixes
* **docs-ci:** setting GH_TOKEN_DOCS to deploy docs ([b891b1a ](https://github.com/react-native-community/react-native-camera/commit/b891b1a ))
### Features
* **funding:** add FUNDING.yml [skip ci] ([3e715b1 ](https://github.com/react-native-community/react-native-camera/commit/3e715b1 ))
2019-06-20 01:09:39 +00:00
Mateus Andrade
d5d849cb6d
Merge pull request #2322 from castillobgr/fix-onStatusChange-type
...
Fixes type of the onStatusChange callback in types/index.d.ts
2019-06-19 22:05:48 -03:00
David Castillo
85b6431353
Fixes type of the onStatusChange callback in types/index.d.ts
...
Currently, the `onStatusChange` has a type of
```ts
onStatusChange?(event: {
cameraStatus: CameraStatus;
recordAudioPermissionStatus: keyof RecordAudioPermissionStatus;
}): void
```
Which makes it very inconvenient to use with Typescript, having to set the `cameraStatus` field to `any` in the passed function:
```ts
const handleStatusChange = (event: {cameraStatus: any}) => {
if (event.cameraStatus === 'NOT_AUTHORIZED') {
}
}
```
By changing it to
```ts
onStatusChange?(event: {
cameraStatus: keyof CameraStatus;
recordAudioPermissionStatus: keyof RecordAudioPermissionStatus;
}): void
```
we're able to compare the new status against the intended type, autocomplete, and discard the `any`:
```ts
const handleStatusChange = (event: {cameraStatus: keyof CameraStatus}) => {
if (event.cameraStatus === 'NOT_AUTHORIZED') {
onUnauthorized()
}
}
```
2019-06-19 12:53:44 -05:00
Mateus Andrade
117c2a5dcd
Merge pull request #6 from react-native-community/master
...
merge
2019-06-17 23:15:03 -03:00
Sibelius Seraphini
3e715b1535
feat(funding): add FUNDING.yml [skip ci]
2019-06-13 15:13:56 -03:00
Mateus Andrade
4fe18a5511
Merge pull request #2314 from MateusAndrade/hotfix/setting-gh-token-doc
...
Hotfix/setting gh token doc
2019-06-12 22:39:50 -03:00
MateusAndrade
b891b1a245
fix(docs-ci): setting GH_TOKEN_DOCS to deploy docs
2019-06-12 22:38:11 -03:00
Mateus Andrade
4d01c8e113
Merge pull request #5 from react-native-community/master
...
merge
2019-06-12 22:32:46 -03:00
semantic-release-bot
663b119552
chore(release): 2.10.2 [skip ci]
...
## [2.10.2](https://github.com/react-native-community/react-native-camera/compare/v2.10.1...v2.10.2 ) (2019-06-13)
### Bug Fixes
* **gh-user:** adding gh-user to deploy with docsaurus ([01d491d ](https://github.com/react-native-community/react-native-camera/commit/01d491d ))
2019-06-13 01:29:33 +00:00
Mateus Andrade
51b83e02fe
Merge pull request #2313 from MateusAndrade/hotfix/deploy-docs-ci
...
Hotfix/deploy docs ci
2019-06-12 22:24:12 -03:00
MateusAndrade
01d491d3ff
fix(gh-user): adding gh-user to deploy with docsaurus
2019-06-12 22:21:44 -03:00
Mateus Andrade
363f513ed8
Merge pull request #4 from react-native-community/master
...
merge
2019-06-12 22:20:14 -03:00
Ronaldo Lima
f649e7a1fb
Merge pull request #2307 from MateusAndrade/feature/docsaurus-build
...
deploy docs based on master changes
2019-06-12 22:57:57 +02:00
Elphas Tori
729aa5d57e
Missing AppRegistry Import ( #2308 )
...
Added missing AppRegistry in FaCC example
2019-06-10 09:23:30 -03:00
Mateus Andrade
d06963a273
Fix $GH_EMAIL
2019-06-09 11:58:33 -03:00
MateusAndrade
7c016f742b
Setting docs deploy only when master is changed
2019-06-08 22:02:03 -03:00
MateusAndrade
6655864bd5
Setting PR username to update docs
2019-06-08 22:00:08 -03:00
MateusAndrade
13b2366eb9
Testing GIT_USER docusaurus
2019-06-08 21:42:52 -03:00
MateusAndrade
0d496befa8
Removing filter to master to test docs deploy
2019-06-08 21:37:20 -03:00
MateusAndrade
06966e496e
Setting filter to deploy docs only when master is updated
2019-06-08 21:35:31 -03:00
MateusAndrade
8d187028da
chore(docs) setting a label to start to test ci deploy on pages
2019-06-08 21:34:33 -03:00
MateusAndrade
aea6c67e29
Defining ci envs
2019-06-08 21:23:54 -03:00
MateusAndrade
cd3cb26234
removing ci check
2019-06-08 21:05:03 -03:00
MateusAndrade
cba1451f58
Setting deploy-docs
2019-06-08 20:58:44 -03:00
MateusAndrade
3eb9e5ab26
Setting build to build-app
2019-06-08 20:56:33 -03:00
MateusAndrade
59d3fb7dfc
Setting deploy docs to run only when rc is deploying. Also, setting the config to yml
2019-06-08 20:52:02 -03:00
MateusAndrade
9ce4fb5aa1
removing require build to deploy docs
2019-06-08 20:40:13 -03:00
MateusAndrade
83b0456fb7
Applying a require on deploy docs
2019-06-08 20:24:29 -03:00
MateusAndrade
1644f753b3
Fixing yml circleci
2019-06-08 20:09:44 -03:00
MateusAndrade
1f06fd3557
Adding circleci config to deploy docs
2019-06-08 17:22:08 -03:00
MateusAndrade
efa10a4bc7
Setting circle ci config to deploy docs
2019-06-08 16:51:03 -03:00
semantic-release-bot
765daf400e
chore(release): 2.10.1 [skip ci]
...
## [2.10.1](https://github.com/react-native-community/react-native-camera/compare/v2.10.0...v2.10.1 ) (2019-06-06)
### Bug Fixes
* revert breaking change upgrading to sdk 28 and androidx ([72a8d7f ](https://github.com/react-native-community/react-native-camera/commit/72a8d7f ))
2019-06-06 19:05:54 +00:00
Laurin Quast
72a8d7f34c
fix: revert breaking change upgrading to sdk 28 and androidx
...
This reverts commit e2a895ad1c .
2019-06-06 21:00:59 +02:00
dependabot[bot]
aeda5781e4
chore(deps): bump handlebars from 4.0.12 to 4.1.2 in /examples/basic ( #2303 )
...
Bumps [handlebars](https://github.com/wycats/handlebars.js ) from 4.0.12 to 4.1.2.
- [Release notes](https://github.com/wycats/handlebars.js/releases )
- [Changelog](https://github.com/wycats/handlebars.js/blob/master/release-notes.md )
- [Commits](https://github.com/wycats/handlebars.js/compare/v4.0.12...v4.1.2 )
Signed-off-by: dependabot[bot] <support@github.com>
2019-06-06 12:12:49 +02:00