Skip to content

Commit

Permalink
Bump version 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hongquan committed Jun 19, 2020
1 parent 31c51e5 commit d5962f8
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 9 deletions.
12 changes: 9 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,11 @@ So I decide to build *CoBang*, a new, native Linux application for scanning QR c
Screenshots
+++++++++++

.. image:: https://i.imgur.com/ddD4YCU.png
.. image:: https://i.imgur.com/1oqDV1b.png
.. image:: https://i.imgur.com/oa0YYTm.png
.. image:: https://i.imgur.com/bIV57cV.png
.. image:: https://i.imgur.com/ldynPU6.png
.. image:: https://i.imgur.com/aORgQKj.png
.. image:: https://i.imgur.com/a4R3iwb.png


Install
Expand Down Expand Up @@ -78,6 +80,8 @@ Users of other distros (Fedora, ArchLinux etc.) can install CoBang from `FlatHub
flatpak install flathub vn.hoabinh.quan.CoBang
The release on FlatHub may come later than the one on Ubuntu PPA, due to difficulty building as Flatpak.


Compatibility
-------------
Expand All @@ -90,7 +94,9 @@ There is an known issue with file chooser button when running from Flatpak. Hope
Development
+++++++++++

This application is written in Python, using `GTK+ <gtk_>`_ for UI, `GStreamer`_ for webcam capture and a part of `ZBar`_ for decoding QR code from image.
This section is for someone who wants to join development of CoBang.

CoBang is written in Python, using `GTK+ <gtk_>`_ for UI, `GStreamer`_ for webcam capture and a part of `ZBar`_ for decoding QR code from image.


Install dependencies
Expand Down
3 changes: 2 additions & 1 deletion data/meson.build
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@


install_data(['main.glade', 'about.glade', 'cobang_128.png', 'wireframe-image-add.svg'],
install_data(['main.glade', 'about.glade', 'url-display.glade', 'wifi-display.glade',
'cobang_128.png', 'wireframe-image-add.svg'],
install_dir: get_option('datadir') / meson.project_name()
)

Expand Down
18 changes: 16 additions & 2 deletions data/vn.hoabinh.quan.CoBang.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,20 @@
</description>
<screenshots>
<screenshot type="default">
<image>https://i.imgur.com/ddD4YCU.png</image>
<image>https://i.imgur.com/oa0YYTm.png</image>
</screenshot>
<screenshot>
<image>https://i.imgur.com/1oqDV1b.png</image>
<image>https://i.imgur.com/bIV57cV.png</image>
</screenshot>
<screenshot>
<image>https://i.imgur.com/ldynPU6.png</image>
</screenshot>
<screenshot>
<image>https://i.imgur.com/aORgQKj.png</image>
</screenshot>
<screenshot>
<image>https://i.imgur.com/a4R3iwb.png</image>
</screenshot>
</screenshots>
<url type="homepage">https://github.com/hongquan/CoBang</url>
<url type="bugtracker">https://github.com/hongquan/CoBang/issues</url>
Expand All @@ -34,6 +40,14 @@
</kudos>

<releases>
<release version="0.5.0" date="2020-06-19" urgency="medium">
<description>
<p>Display result URL with a link.</p>
<p>Display result WiFi info and let save it to NetworkManager.</p>
<p>Support scanning from SVG file.</p>
<p>Change license to GPL-v3.</p>
</description>
</release>
<release version="0.4.0" date="2020-06-07" urgency="medium">
<description>
<p>Release on FlatHub.</p>
Expand Down
4 changes: 2 additions & 2 deletions meson.build
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
project('cobang',
version: '0.4.0',
version: '0.5.0',
meson_version: '>= 0.50.0',
default_options: [
'warning_level=2',
Expand All @@ -15,7 +15,7 @@ python = pymod.find_installation('python3')
pythonver = python.language_version()
# Workaround for https://github.com/mesonbuild/meson/issues/5629
# https://gitlab.freedesktop.org/gstreamer/gst-python/issues/28
python_dep = dependency('python-@0@-embed'.format(pythonver), version: '>= 3.7', required: false)
python_dep = dependency('python-@0@-embed'.format(pythonver), version: '> 3.7', required: false)

# Make sure Python is installed and found
if not python_dep.found()
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "cobang"
version = "0.4.0"
version = "0.5.0"
description = "QR code scanner for Linux desktop"
authors = ["Nguyễn Hồng Quân <[email protected]>"]
license = "GPL-3.0-or-later"
Expand Down

0 comments on commit d5962f8

Please sign in to comment.