Skip to content
This repository has been archived by the owner on Jul 1, 2020. It is now read-only.

Commit

Permalink
Bump to v1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
dm77 committed Jul 25, 2016
1 parent b23c3ba commit 166f79f
Show file tree
Hide file tree
Showing 14 changed files with 16 additions and 9 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Change Log

## [1.9] - July 25, 2016
* Scale camera preview when the view size isn't full screen. Thanks to @xolan for this pull request PR #219
* Fix inverted camera in devices with differently oriented back and forward facing cameras. Thanks to @thadcodes for PR #191
* Add ability switch view finder view to square. Thanks to @squeeish for PR #163

## [1.8.4] - Dec 30, 2015
* Improve performance by opening camera and handling preview frames in a separate HandlerThread (#1, #99)
* Do not automatically stopCamera after a result is found #115
Expand Down
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@ Android library projects that provides easy to use and extensible Barcode Scanne

Screenshots
===========
![Portrait](https://raw.github.com/dm77/barcodescanner/master/screenshots/portrait_small.png)
![Demo App](https://raw.github.com/dm77/barcodescanner/master/screenshots/main_activity.png)

![Landscape](https://raw.github.com/dm77/barcodescanner/master/screenshots/landscape_small.png)
![Scanner](https://raw.github.com/dm77/barcodescanner/master/screenshots/scanner.png)

![Scan Results](https://raw.github.com/dm77/barcodescanner/master/screenshots/scan_results.png)


Minor BREAKING CHANGE in 1.8.4
Expand All @@ -25,7 +27,7 @@ Installation

Add the following dependency to your build.gradle file.

`compile 'me.dm7.barcodescanner:zxing:1.8.4'`
`compile 'me.dm7.barcodescanner:zxing:1.9'`

Simple Usage
------------
Expand Down Expand Up @@ -126,7 +128,7 @@ Installation

Add the following dependency to your build.gradle file.

`compile 'me.dm7.barcodescanner:zbar:1.8.4'`
`compile 'me.dm7.barcodescanner:zbar:1.9'`

Simple Usage
------------
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ buildscript {

allprojects {
group = 'me.dm7.barcodescanner'
version = '1.8.4'
version = '1.9'

repositories {
mavenCentral()
Expand Down
Binary file removed screenshots/landscape.png
Binary file not shown.
Binary file removed screenshots/landscape_small.png
Binary file not shown.
Binary file added screenshots/main_activity.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed screenshots/portrait.png
Binary file not shown.
Binary file removed screenshots/portrait_small.png
Binary file not shown.
Binary file added screenshots/scan_results.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added screenshots/scanner.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion zbar-sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'com.android.application'

dependencies {
//compile project(":zbar")
compile 'me.dm7.barcodescanner:zbar:1.8.4'
compile 'me.dm7.barcodescanner:zbar:1.9'
compile supportLibraryDependency
compile 'com.android.support:appcompat-v7:24.1.1'
compile 'com.android.support:design:24.1.1'
Expand Down
2 changes: 1 addition & 1 deletion zbar/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ ext {

dependencies {
//compile project(":core")
compile 'me.dm7.barcodescanner:core:1.8.4'
compile 'me.dm7.barcodescanner:core:1.9'
compile fileTree(dir: 'libs', include: '*.jar')
}
2 changes: 1 addition & 1 deletion zxing-sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'com.android.application'

dependencies {
//compile project(":zxing")
compile 'me.dm7.barcodescanner:zxing:1.8.4'
compile 'me.dm7.barcodescanner:zxing:1.9'
compile supportLibraryDependency
compile 'com.android.support:appcompat-v7:24.1.1'
compile 'com.android.support:design:24.1.1'
Expand Down
2 changes: 1 addition & 1 deletion zxing/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ ext {

dependencies {
//compile project(":core")
compile 'me.dm7.barcodescanner:core:1.8.4'
compile 'me.dm7.barcodescanner:core:1.9'
compile 'com.google.zxing:core:3.2.1'
}

0 comments on commit 166f79f

Please sign in to comment.