Skip to content

Commit

Permalink
v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
obfusk committed Jul 8, 2021
1 parent 254be3a commit 1ad572b
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 11 deletions.
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
File : README.md
Maintainer : Felix C. Stegerman <[email protected]>
Date : 2021-07-07
Date : 2021-07-08
Copyright : Copyright (C) 2021 Felix C. Stegerman
Version : v1.0.0
Version : v1.1.0
License : AGPLv3+
}}}1 -->
Expand Down Expand Up @@ -251,8 +251,7 @@ $ make

### NixOS

Jiten is now available in nixpkgs `master`. You can also use
[this nix expression](https://gist.github.com/obfusk/c51d353e75d576bd5cb8e92456cdec47).
Jiten is available in nixpkgs (un)stable.

## Miscellaneous

Expand Down
6 changes: 3 additions & 3 deletions android/buildozer.spec
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ p4a.bootstrap = webview
p4a.port = 29483

# === DON'T FORGET TO UPDATE THIS ===
version = 1.0.0
android.numeric_version = 1010000002
version = 1.1.0
android.numeric_version = 1010100002
# always "1" -------------^|||||||||
# 1.0.0 ----> 01 00 00 ----^^^^^^|||
# 1.1.0 ----> 01 01 00 ----^^^^^^|||
# #commits since last tag -------^^|
# 1 = armeabi-v7a, 2 = arm64-v8a --^
# ===================================
Expand Down
2 changes: 1 addition & 1 deletion changelog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
master
v1.1.0

• new: handwritten kanji recognition (kanjidraw)
• new: larger japanese text setting
Expand Down
1 change: 1 addition & 0 deletions fastlane/metadata/android/en-US/changelogs/1010100001.txt
5 changes: 5 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/1010100002.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
• new: handwritten kanji recognition (kanjidraw)
• new: larger japanese text setting
• new: browse kanji by SKIP code
• updated databases
• improved dark mode
6 changes: 3 additions & 3 deletions jiten/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
#
# File : jiten/version.py
# Maintainer : Felix C. Stegerman <[email protected]>
# Date : 2021-02-20
# Date : 2021-07-08
#
# Copyright : Copyright (C) 2021 Felix C. Stegerman
# Version : v1.0.0
# Version : v1.1.0
# License : AGPLv3+
#
# -- ; }}}1
Expand All @@ -25,7 +25,7 @@
with open(_vsn) as f:
__version__ = f.readline().strip().replace("v", "", 1)
else:
__version__ = "1.0.0"
__version__ = "1.1.0"

py_version = "Python " + sys.version.split()[0]
if "PyPy" in sys.version:
Expand Down

0 comments on commit 1ad572b

Please sign in to comment.