Skip to content

Commit

Permalink
v0.3.3
Browse files Browse the repository at this point in the history
* v0.3.3 \o/
* document numeric_version in buildozer.spec
  • Loading branch information
obfusk committed Aug 31, 2020
1 parent c2b07c6 commit e7628bf
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Date : 2020-08-31

Copyright : Copyright (C) 2020 Felix C. Stegerman
Version : v0.3.2
Version : v0.3.3
License : AGPLv3+

<!-- }}}1 -->
Expand Down
13 changes: 9 additions & 4 deletions android/buildozer.spec
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ source.dir = .
source.include_exts = py
source.exclude_dirs = bin,p4a-recipes
source.exclude_patterns = Makefile,*.png
version = 0.3.2
requirements = python3,jiten
requirements.source.jiten = ..
icon.filename = %(source.dir)s/icon.png
Expand All @@ -19,15 +18,21 @@ android.ndk = 20b
#android.sdk_path =
android.accept_sdk_license = True
android.arch = arm64-v8a
# !!! DON'T FORGET TO UPDATE THIS !!!
# 0.3.2 -------------------vvvvvv
android.numeric_version = 1000302002
p4a.branch = develop
#p4a.source_dir =
p4a.local_recipes = ./p4a-recipes
p4a.bootstrap = webview
p4a.port = 29483

# === DON'T FORGET TO UPDATE THIS ===
version = 0.3.3
android.numeric_version = 1000303002
# always "1" -------------^|||||||||
# 0.3.3 ----> 00 03 03 ----^^^^^^|||
# #commits since last tag -------^^|
# 1 = armeabi-v7a, 2 = arm64-v8a --^
# ===================================

[buildozer]
log_level = 2
warn_on_root = 1
2 changes: 1 addition & 1 deletion android/p4a-recipes/jiten/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

class JitenRecipe(CompiledComponentsPythonRecipe):
# name = 'jiten'
# version = '0.3.0'
# version = '0.3.3'
# url = 'https://github.com/obfusk/jiten/archive/v{version}.tar.gz'

depends = ['setuptools', 'flask', 'click', 'sqlite3', 'libpcre']
Expand Down
6 changes: 3 additions & 3 deletions jiten/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
#
# File : jiten/cli.py
# Maintainer : Felix C. Stegerman <[email protected]>
# Date : 2020-08-19
# Date : 2020-08-31
#
# Copyright : Copyright (C) 2020 Felix C. Stegerman
# Version : v0.3.2
# Version : v0.3.3
# License : AGPLv3+
#
# -- ; }}}1
Expand Down Expand Up @@ -250,7 +250,7 @@
shell = True, cwd = _cwd) \
.decode().strip().replace("v", "", 1)
else:
__version__ = "0.3.2"
__version__ = "0.3.3"
name = "jiten"

import click
Expand Down

0 comments on commit e7628bf

Please sign in to comment.