-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
16 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 --> | ||
|
@@ -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 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
1010100002.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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: | ||
|