Skip to content

Commit f146e68

Browse files
committed
Merge branch 'release/20190223'
2 parents 16d960a + abf1d8d commit f146e68

19 files changed

+111
-37
lines changed

CHANGELOG.md

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,25 @@
11
# Change Log
22

3+
## [20190223]
4+
5+
- Fix zbarlight dependency in setup.py, refs #28
6+
- Migrate to zbarlight 2.1, refs #18
7+
38
## [20190222]
49

5-
- Provide Makefile, refs #15
6-
- Setup continuous integration testing, refs #6, #14
7-
- Speedup OpenCV compilation time, refs #16
8-
- Migrated to zbarlight, refs #5, #13
9-
- Introduced UI tests, refs #4
10-
- Using non-root Docker container, refs #27
11-
- Run UI tests from Travis, refs #26
10+
- Provide Makefile, refs #15
11+
- Setup continuous integration testing, refs #6, #14
12+
- Speedup OpenCV compilation time, refs #16
13+
- Migrated to zbarlight, refs #5, #13
14+
- Introduced UI tests, refs #4
15+
- Using non-root Docker container, refs #27
16+
- Run UI tests from Travis, refs #26
1217

1318
## [20171220]
1419

15-
- Full screen camera
16-
- Kvlang refactoring
17-
- File tree refactoring
20+
- Full screen camera
21+
- Kvlang refactoring
22+
- File tree refactoring
1823

1924
## [20171117]
2025

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,4 @@ test:
5757

5858
uitest: virtualenv
5959
$(PIP) install -r requirements/test_requirements.txt
60-
$(PYTHON) -m unittest discover --top-level-directory=. --start-directory=tests/
60+
$(PYTHON) -m unittest discover --top-level-directory=. --start-directory=tests/ui/

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ BoxLayout:
2020
Label:
2121
size_y: 20
2222
size_hint_y: None
23-
text: ", ".join([str(symbol.data) for symbol in zbarcam.symbols])
23+
text: ", ".join([str(code) for code in zbarcam.codes])
2424
```
2525
2626
## Install

__init__.py

Lines changed: 0 additions & 1 deletion
This file was deleted.

buildozer.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ version.filename = %(source.dir)s/zbarcam/version.py
3838
3939
# (list) Application requirements
4040
# comma seperated e.g. requirements = sqlite3,kivy
41-
requirements = kivy, pil, libiconv, libzbar, zbarlight==1.2
41+
requirements = kivy, pil, libiconv, libzbar, zbarlight>=2.1
4242
4343
4444
# (str) Custom source folders for requirements

requirements/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
zbarlight==1.2
1+
zbarlight==2.2
22
Kivy==1.10.1
33
Kivy-Garden==0.1.4
44
Pillow==4.3.0

requirements/test_requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
isort==4.2.5
22
flake8==3.3.0
33
mock==2.0.0
4+
pytest==4.3.0

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99
url='https://github.com/AndreMiras/garden.zbarcam',
1010
packages=['zbarcam'],
1111
package_data={'zbarcam': ['*.kv']},
12-
install_requires=['zbar', 'kivy', 'pillow', 'numpy'])
12+
install_requires=['zbarlight>=2.1', 'kivy', 'pillow', 'numpy'])

tests/fixtures/no_qr_code.png

527 Bytes
Loading

tests/fixtures/one_qr_code.png

1.95 KB
Loading

0 commit comments

Comments
 (0)