From d5962f86495dfad09f26996b08f5e0f07d83b025 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nguy=E1=BB=85n=20H=E1=BB=93ng=20Qu=C3=A2n?= Date: Fri, 19 Jun 2020 16:58:38 +0700 Subject: [PATCH] Bump version 0.5.0 --- README.rst | 12 +++++++++--- data/meson.build | 3 ++- data/vn.hoabinh.quan.CoBang.appdata.xml | 18 ++++++++++++++++-- meson.build | 4 ++-- pyproject.toml | 2 +- 5 files changed, 30 insertions(+), 9 deletions(-) diff --git a/README.rst b/README.rst index d70f0cf..8904d0a 100644 --- a/README.rst +++ b/README.rst @@ -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 @@ -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 ------------- @@ -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+ `_ 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+ `_ for UI, `GStreamer`_ for webcam capture and a part of `ZBar`_ for decoding QR code from image. Install dependencies diff --git a/data/meson.build b/data/meson.build index 129d491..995e1fb 100644 --- a/data/meson.build +++ b/data/meson.build @@ -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() ) diff --git a/data/vn.hoabinh.quan.CoBang.appdata.xml b/data/vn.hoabinh.quan.CoBang.appdata.xml index 9fed64d..e61bb3d 100644 --- a/data/vn.hoabinh.quan.CoBang.appdata.xml +++ b/data/vn.hoabinh.quan.CoBang.appdata.xml @@ -15,14 +15,20 @@ - https://i.imgur.com/ddD4YCU.png + https://i.imgur.com/oa0YYTm.png - https://i.imgur.com/1oqDV1b.png + https://i.imgur.com/bIV57cV.png https://i.imgur.com/ldynPU6.png + + https://i.imgur.com/aORgQKj.png + + + https://i.imgur.com/a4R3iwb.png + https://github.com/hongquan/CoBang https://github.com/hongquan/CoBang/issues @@ -34,6 +40,14 @@ + + +

Display result URL with a link.

+

Display result WiFi info and let save it to NetworkManager.

+

Support scanning from SVG file.

+

Change license to GPL-v3.

+
+

Release on FlatHub.

diff --git a/meson.build b/meson.build index 385caa2..cda711f 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('cobang', - version: '0.4.0', + version: '0.5.0', meson_version: '>= 0.50.0', default_options: [ 'warning_level=2', @@ -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() diff --git a/pyproject.toml b/pyproject.toml index ead4385..9e9ba0a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 "] license = "GPL-3.0-or-later"