Skip to content

Commit bcb2cfe

Browse files
authored
Bump version (#166)
1 parent 9bb5a7c commit bcb2cfe

File tree

3 files changed

+27
-8
lines changed

3 files changed

+27
-8
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
### v1.4.2
2+
3+
- Add prefix to XML resources so they don't collide, thanks to [@RocketRider][RocketRider] ([#162][162])
4+
- Add `videoMaxSize` API and XML attribute, to set max size video in bytes, thanks to [@chaitanyaraghav][chaitanyaraghav] ([#104][104])
5+
- Improved the preview size selection, thanks to [@YeungKC][YeungKC] ([#133][133])
6+
- Improved the playSounds attribute, was playing incorrectly, thanks to [@xp-vit][xp-vit] ([#143][143])
7+
8+
https://github.com/natario1/CameraView/compare/v1.4.1...v1.4.2
9+
110
### v1.4.1
211

312
- Fixed a bug that would flip the front camera preview on some devices ([#112][112])
@@ -56,7 +65,11 @@ https://github.com/natario1/CameraView/compare/v1.2.3...v1.3.0
5665

5766
[v-gar]: https://github.com/v-gar
5867
[andrewmunn]: https://github.com/andrewmunn
68+
[chaitanyaraghav]: https://github.com/chaitanyaraghav
69+
[YeungKC]: https://github.com/YeungKC
5970
[RobertoMorelos]: https://github.com/RobertoMorelos
71+
[RocketRider]: https://github.com/RocketRider
72+
[xp-vit]: https://github.com/xp-vit
6073

6174
[73]: https://github.com/natario1/CameraView/pull/73
6275
[80]: https://github.com/natario1/CameraView/pull/80
@@ -70,5 +83,9 @@ https://github.com/natario1/CameraView/compare/v1.2.3...v1.3.0
7083
[97]: https://github.com/natario1/CameraView/pull/97
7184
[99]: https://github.com/natario1/CameraView/pull/99
7285
[101]: https://github.com/natario1/CameraView/pull/101
86+
[104]: https://github.com/natario1/CameraView/pull/104
7387
[105]: https://github.com/natario1/CameraView/pull/105
7488
[112]: https://github.com/natario1/CameraView/pull/112
89+
[133]: https://github.com/natario1/CameraView/pull/133
90+
[143]: https://github.com/natario1/CameraView/pull/143
91+
[162]: https://github.com/natario1/CameraView/pull/162

README.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,18 @@ addressing most of the common issues and needs, and still leaving you with flexi
1212
See [CHANGELOG](https://github.com/natario1/CameraView/blob/master/CHANGELOG.md).
1313

1414
```groovy
15-
compile 'com.otaliastudios:cameraview:1.4.1'
15+
compile 'com.otaliastudios:cameraview:1.4.2'
1616
```
17-
If you're facing gradle issues while installing it, make sure your project dependencies have the jcenter() repository correctly confgured:
17+
18+
Make sure your project repositories include the `jcenter()`:
19+
1820
```groovy
1921
allprojects {
20-
+ repositories {
21-
+ jcenter()
22-
+ }
23-
+}
24-
```
22+
repositories {
23+
jcenter()
24+
}
25+
}
26+
```
2527

2628

2729
<p>

cameraview/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apply plugin: 'com.github.dcendents.android-maven'
33
apply plugin: 'com.jfrog.bintray'
44

55
// Required by bintray
6-
version = '1.4.1'
6+
version = '1.4.2'
77
group = 'com.otaliastudios'
88

99
//region android dependencies

0 commit comments

Comments
 (0)