-
-
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
17 changed files
with
46 additions
and
15 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-02-18 | ||
Date : 2021-02-20 | ||
Copyright : Copyright (C) 2021 Felix C. Stegerman | ||
Version : v0.4.0 | ||
Version : v1.0.0 | ||
License : AGPLv3+ | ||
}}}1 --> | ||
|
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
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 +1 @@ | ||
fe5d72221ec8c6936a39e5754c54ce7ae7796fd3 | ||
ab65c485822ec7832912fe6f59ec5aaf0045f185 |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
1000400002.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,12 @@ | ||
• updated databases: 2020 version of kyouiku kanji, more pitch data, etc. | ||
• improved help dialog | ||
• new: jlpt vocab data, search & browse by jlpt level | ||
• new: share & open jiten.obfusk.dev links in app | ||
• new: quickly switch between search forms using dropdown | ||
• new: optionally show romaji | ||
• improved button to convert romaji to hiragana and between hiragana and katakana | ||
• improved search options | ||
• improved tooltips | ||
• moved "select radical" button | ||
• fixed copying to clipboard | ||
• improvements & fixes |
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 @@ | ||
1010000002.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,6 @@ | ||
• new: french & spanish (& swedish) (jmdict meanings & sentences) | ||
• new: pitch data for readings in katakana | ||
• improved radical dialog | ||
• improved romaji/kana conversion | ||
• fixed crash on android 8 | ||
• various improvements & fixes |
Binary file modified
BIN
-10.3 KB
(92%)
fastlane/metadata/android/en-US/images/phoneScreenshots/1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+8.13 KB
(110%)
fastlane/metadata/android/en-US/images/phoneScreenshots/2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+2.65 KB
(100%)
fastlane/metadata/android/en-US/images/phoneScreenshots/3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-7.52 KB
(95%)
fastlane/metadata/android/en-US/images/phoneScreenshots/4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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/misc.py | ||
# Maintainer : Felix C. Stegerman <[email protected]> | ||
# Date : 2021-01-30 | ||
# Date : 2021-02-20 | ||
# | ||
# Copyright : Copyright (C) 2021 Felix C. Stegerman | ||
# Version : v0.4.0 | ||
# Version : v1.0.0 | ||
# License : AGPLv3+ | ||
# | ||
# -- ; }}}1 | ||
|
@@ -221,9 +221,11 @@ def download_file(url, file, sha512 = None, tmp = ".tmp"): # {{{1 | |
for k in "jmdict kanji pitch sentences".split() }, | ||
11: { k: DB_URLFMT.format("v0.4.0", k) | ||
for k in "jmdict kanji pitch sentences".split() }, | ||
13: { k: DB_URLFMT.format("v1.0.0", k) | ||
for k in "jmdict kanji pitch sentences".split() }, | ||
} | ||
|
||
DB_SHA512SUMS = { | ||
DB_SHA512SUMS = { # {{{1 | ||
8: dict( | ||
jmdict = "c94830335a9176001fbc4400a4176a135b475e87a5f91d7fe3eccdcdc777219d7132a2ef56f99563bde7d6ed614dfd1ae8a9fed3a9ae4331159b9e675e60e9e7", | ||
kanji = "f16fcca818bf9dc8a63dbcae37a1d9220db1bb5b76a006ced6ac26b6d7fc549522f9cf6620277a2b692e902224e185a7263463643715f0ff502950971f2ba9d6", | ||
|
@@ -236,7 +238,13 @@ def download_file(url, file, sha512 = None, tmp = ".tmp"): # {{{1 | |
pitch = "79727c3b52c0f3ed27acc531b81f935aef7692e92cba7f1fd90ad91264d21a1aba84c9dbfd7fa74a47dc06b17447d11a02a489b7b50180957b9f15d21bc15729", | ||
sentences = "5b022b897b7dc819681288f1e7b26a9552e33b7b0d89b53560aea3d02e5cd578d4ecda5dfc2939091e21fc4a8dd7c42a08560413a2445ffb6534ae4ceb63ccf0", | ||
), | ||
} | ||
13: dict( | ||
jmdict = "5f4f5b5ffceb93fb6b7939507527b3740a8b0dcef8d11765c94d1890a6bccd4a74b01e9e3c37083e6950f9bc6081a2efecfd4605b1e47d768df6228d90fdc218", | ||
kanji = "c114afe09979851fdd433257e6328c745b45b700754d9387a51a93473a0be14ce80602da3b1609fb61546d7d5b6c539b6f8b686bd4cc221184b5938b828ecd0b", | ||
pitch = "79727c3b52c0f3ed27acc531b81f935aef7692e92cba7f1fd90ad91264d21a1aba84c9dbfd7fa74a47dc06b17447d11a02a489b7b50180957b9f15d21bc15729", | ||
sentences = "8a1a8a0d6242d541103029230870285d236db8805fe4bac0ddd74802481326d6b8a3e9871f75c0ea0ebef98968fa0efb9bea657017639f7b921aa23f44f81c62", | ||
), | ||
} # }}}1 | ||
|
||
DEPENDENCIES = dict( # {{{1 | ||
p4a = dict( | ||
|
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-01-24 | ||
# Date : 2021-02-20 | ||
# | ||
# Copyright : Copyright (C) 2021 Felix C. Stegerman | ||
# Version : v0.4.0 | ||
# Version : v1.0.0 | ||
# License : AGPLv3+ | ||
# | ||
# -- ; }}}1 | ||
|
@@ -25,7 +25,7 @@ | |
with open(_vsn) as f: | ||
__version__ = f.readline().strip().replace("v", "", 1) | ||
else: | ||
__version__ = "0.4.0" | ||
__version__ = "1.0.0" | ||
|
||
py_version = "Python " + sys.version.split()[0] | ||
if "PyPy" in sys.version: | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
|
@@ -59,7 +59,7 @@ | |
author_email = "[email protected]", | ||
license = "AGPLv3+", | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Development Status :: 5 - Production/Stable", | ||
"Environment :: Console", | ||
"Environment :: Web Environment", | ||
"Intended Audience :: End Users/Desktop", | ||
|