Compare commits
7 commits
main
...
anki_suppo
Author | SHA1 | Date | |
---|---|---|---|
6b8e8af1ee | |||
85629ef43f | |||
dc9c6c5cdb | |||
da574b367b | |||
e9ddba49f0 | |||
e48caa4c4b | |||
f9e1625e36 |
29
LICENSE
29
LICENSE
|
@ -1,12 +1,21 @@
|
|||
This is the Zero-Clause BSD (0BSD) license.
|
||||
MIT License
|
||||
|
||||
Permission to use, copy, modify, and/or distribute this software for any purpose
|
||||
with or without fee is hereby granted.
|
||||
Copyright (c) 2020 Samuel Dudík
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
||||
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
||||
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
||||
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
|
||||
OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
|
||||
THIS SOFTWARE.
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
|
|
30
README.md
30
README.md
|
@ -1,27 +1,24 @@
|
|||
# suckless_dictpopup
|
||||
|
||||
This is a very lightweight program to show a popup with the dictionary entry of the selected text. It uses Xlib for displaying the popup and [sdcv](https://github.com/Dushistov/sdcv) for the dictionary lookup.
|
||||
<br></br>
|
||||
#### DISCLAIMER:
|
||||
That program is intended to be used for reading monolingual dictionaries in *goldendict-ng* , it can serve others purposes, but the main goal is that you don't need to wait years until you complete your monolingual transition.
|
||||
This is a very lightweight program to show a popup with the dictionary entry of the selected text. It uses [sdcv](https://github.com/Dushistov/sdcv) for the dictionary lookup and optionally, a slightly modified version of [herbe](https://github.com/dudik/herbe) to display the popup.
|
||||
|
||||
![image](https://github.com/KonstantinDjairo/suckless_dictpopup/assets/53496273/e681f789-eac7-482b-b503-e66f8d73bb37)
|
||||
|
||||
![image](misc/showcase.png)
|
||||
|
||||
## Dependencies
|
||||
notice that most of them might be already installed, they are:
|
||||
|
||||
sselp , sdcv, perl
|
||||
`sselp , sdcv, perl`
|
||||
|
||||
|
||||
By using Perl one-liners, we are able to replace the usage of awk, grep, and sed with Perl equivalents, making the code more consistent and eliminating the need for external tools.
|
||||
|
||||
### Currently tested on:
|
||||
- GNU/Linux
|
||||
- FreeBSD
|
||||
|
||||
|
||||
## Installation
|
||||
### in Guix
|
||||
- suckless_dictpopup is available as a package in our [repository](http://localhost:3000/hashirama/ajattix)
|
||||
|
||||
### in non-guix systems
|
||||
## Setup
|
||||
First setup [sdcv](https://github.com/Dushistov/sdcv) according to their github page.
|
||||
Then install with `sudo make install`. \
|
||||
Uninstall with `sudo make uninstall`
|
||||
|
@ -50,10 +47,19 @@ that you could try to apply if you like.
|
|||
`popup` can also be used as a standalone program to show the contents of stdin.
|
||||
|
||||
|
||||
## Recommended fonts
|
||||
For low-resolution monitors i recommend that font:
|
||||
|
||||
<p>
|
||||
<img src="https://github.com/KonstantinDjairo/suckless_dictpopup/assets/53496273/a34a8a20-9e17-4915-aad4-343e76b75de8" alt>
|
||||
<br><em><a href="https://github.com/KonstantinDjairo/source-han-code-jp">source-han-code-jp<a></em></br>
|
||||
in this picture the font is set at 10px
|
||||
</p>
|
||||
|
||||
|
||||
## TODO
|
||||
- [x] Completed
|
||||
- [ ] Work in Progress
|
||||
<br><br/>
|
||||
- [ ] Switch between words in a given sentence by using the arrow keys or any user-defined key;
|
||||
Sudachi can be used to accomplish that.
|
||||
- [ ] Clipboard watch toggle
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
static const char *background_color = "#2E3440";
|
||||
static const char *border_color = "#ececec";
|
||||
static const char *font_color = "#ececec";
|
||||
static const char *font_pattern = "Noto Sans Mono CJK JP:size=10";
|
||||
static const char *font_pattern = "Noto Sans Mono CJK JP:size=12";
|
||||
static const unsigned line_spacing = 5;
|
||||
static const unsigned int padding = 15;
|
||||
|
||||
|
|
137
dictpopup
137
dictpopup
|
@ -1,13 +1,134 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Invocation: dictpopup [html] [word]
|
||||
# - If no argument is provided, the selection is used.
|
||||
# - If supplied with the 'html' option, the dictionary output will be piped through lynx
|
||||
# to format HTML as plain text.
|
||||
|
||||
word=${1:-$(sselp)}
|
||||
word_without_spaces=$(echo "$word" | tr -d ' ')
|
||||
# TODO: replace any ocurrence of xclip with sselp
|
||||
# get rid of html and create a dotfile where it reads from, for example ~/.config/dictpopup
|
||||
# this shall be better than the spaguethi at the bottom:
|
||||
|
||||
dict_lookup=$(sdcv -n --utf8-output -e "$word_without_spaces")
|
||||
|
||||
if echo "$dict_lookup" | perl -0777 -ne 'exit 0 if /Nothing similar to/; exit 1'; then
|
||||
echo "$dict_lookup" | popup
|
||||
else
|
||||
echo "$dict_lookup" | perl -0777 -pe 's/^.*\n.*\n.*\n.*\n//; s/<[^>]*>//g; s/(--->|-->)//g;' | popup
|
||||
fi
|
||||
#### Settings
|
||||
readonly ANKI_DECK="${ANKI_DECK:-Japanese::sentences}"
|
||||
readonly ANKI_MODEL="${ANKI_MODEL:-Japanese sentences}"
|
||||
readonly ANKI_SENTENCE_FIELD="${ANKI_SENTENCE_FIELD:-SentKanji}"
|
||||
readonly ANKI_WORD_FIELD="${ANKI_WORD_FIELD:-VocabKanji}"
|
||||
readonly ANKI_DEFINITION_FIELD="${ANKI_DEFINITION_FIELD:-VocabDef}"
|
||||
|
||||
HTML_SUPPORT=1
|
||||
ANKI_SUPPORT=0
|
||||
ANKI_SEARCH_AFTER_ADD=1
|
||||
####
|
||||
|
||||
die() {
|
||||
printf '%s\n' "$1"
|
||||
exit 1
|
||||
}
|
||||
|
||||
checkDependencies() {
|
||||
command -v sdcv >/dev/null 2>&1 || die "sdcv not installed."
|
||||
command -v popup >/dev/null 2>&1 || die "The popup binary is not accessible."
|
||||
command -v xclip >/dev/null 2>&1 || die "xclip is not installed."
|
||||
if ! command -v clipnotify >/dev/null 2>&1; then
|
||||
echo "clipnotify not installed. Anki support disabled"
|
||||
ANKI_SUPPORT=0
|
||||
fi
|
||||
if ! command -v lynx >/dev/null 2>&1; then
|
||||
echo "Lynx not installed. HTML support disabled"
|
||||
HTML_SUPPORT=0
|
||||
fi
|
||||
}
|
||||
|
||||
__escape_json() {
|
||||
text="$1"
|
||||
text=${text%"$'\n'"}
|
||||
text=$(printf '%s\n' "$text" | perl -pe 's/"/\\&/g; s/\t/\\t/g; s/\n/\\n/g; s/\r/\\r/g; s/\b/\\b/g; s/\f/\\f/g')
|
||||
printf '%s\n' "$text"
|
||||
unset text
|
||||
}
|
||||
|
||||
__ankiconnect_request() {
|
||||
curl -fsS localhost:8765 -X POST -d "$1"
|
||||
}
|
||||
|
||||
anki_search() {
|
||||
request='{
|
||||
"action": "guiBrowse",
|
||||
"version": 6,
|
||||
"params": {
|
||||
"query": "nid:<note_id>"
|
||||
}
|
||||
}'
|
||||
__ankiconnect_request "${request#<note_id>}" >/dev/null 2>&1
|
||||
unset request
|
||||
}
|
||||
|
||||
create_anki_card() {
|
||||
word=$(__escape_json "$1")
|
||||
definition="$2"
|
||||
# Remove the first line if it contains 【
|
||||
if printf '%s\n' "$definition" | perl -ne 'print unless /【/ && !$seen++'; then
|
||||
definition=$(printf '%s\n' "$definition" | tail -n +2)
|
||||
fi
|
||||
definition=$(__escape_json "$definition")
|
||||
|
||||
printf 'Please select the sentence\n'
|
||||
clipnotify >/dev/null && sentence=$(xclip -o 2>/dev/null)
|
||||
sentence=$(__escape_json "${sentence/$word/<b>$word</b>}")
|
||||
|
||||
request=$(cat <<-EOF
|
||||
{
|
||||
"action": "addNote",
|
||||
"version": 6,
|
||||
"params": {
|
||||
"note": {
|
||||
"deckName": "$ANKI_DECK",
|
||||
"modelName": "$ANKI_MODEL",
|
||||
"fields": {
|
||||
"$ANKI_SENTENCE_FIELD": "$sentence",
|
||||
"$ANKI_WORD_FIELD": "$word",
|
||||
"$ANKI_DEFINITION_FIELD": "$definition"
|
||||
},
|
||||
"options": {
|
||||
"allowDuplicate": true
|
||||
},
|
||||
"tags": []
|
||||
}
|
||||
}
|
||||
}
|
||||
EOF
|
||||
)
|
||||
|
||||
if output=$(__ankiconnect_request "$request" 2>&1); then
|
||||
note_id=$(printf '%s\n' "$output" | perl -ne 'print $1 if /"result": (\d+)/')
|
||||
[ $ANKI_SEARCH_AFTER_ADD -eq 1 ] && anki_search "$note_id"
|
||||
else
|
||||
die "$output"
|
||||
fi
|
||||
unset word
|
||||
unset definition
|
||||
unset request
|
||||
}
|
||||
|
||||
main() {
|
||||
if [ "$1" = "html" ] && [ $HTML_SUPPORT -eq 1 ]; then
|
||||
word=${2:-$(xclip -o 2>/dev/null)}
|
||||
dict_entry=$(sdcv -n --utf8-output -e "$word" | perl -0777 -pe 'exit 1 if /Nothing similar to/')
|
||||
dict_entry=$(printf '%s\n' "$dict_entry" | lynx -dump -stdin -assume_charset=UTF-8 -display_charset=UTF-8)
|
||||
else
|
||||
word=${1:-$(xclip -o 2>/dev/null)}
|
||||
dict_entry=$(sdcv -n --utf8-output -e "$word" | perl -0777 -pe 'exit 1 if /Nothing similar to/')
|
||||
fi
|
||||
|
||||
if [ $? -eq 0 ]; then
|
||||
printf '%s\n' "$dict_entry" | popup
|
||||
[ $? -eq 2 ] && [ $ANKI_SUPPORT -eq 1 ] && create_anki_card "$word" "$dict_entry"
|
||||
else
|
||||
echo "Pattern not found"
|
||||
fi
|
||||
}
|
||||
|
||||
checkDependencies
|
||||
main "$@"
|
||||
|
|
|
@ -3,15 +3,26 @@
|
|||
|
||||
int main()
|
||||
{
|
||||
int prevseen = 0;
|
||||
static char *buf = NULL;
|
||||
static size_t size = 0;
|
||||
long n = 1;
|
||||
while(getline(&buf, &size, stdin) > 0)
|
||||
{
|
||||
if (n++ < 5) /* overflow possible */
|
||||
if (n++ < 5)
|
||||
continue;
|
||||
if (strncmp(buf,"-->", 3) == 0)
|
||||
putchar('\n');
|
||||
{
|
||||
if (!prevseen)
|
||||
{
|
||||
prevseen = 1;
|
||||
putchar('\n');
|
||||
}
|
||||
else
|
||||
{
|
||||
prevseen = 0;
|
||||
}
|
||||
}
|
||||
else if (buf[0] != 10)
|
||||
fputs(buf, stdout);
|
||||
}
|
||||
|
|
1
misc/.gitignore
vendored
1
misc/.gitignore
vendored
|
@ -1 +0,0 @@
|
|||
|
1
misc/font/.gitignore
vendored
1
misc/font/.gitignore
vendored
|
@ -1 +0,0 @@
|
|||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1,62 +0,0 @@
|
|||
61
|
||||
adobe-dingbats /usr/share/fonts/encodings/adobe-dingbats.enc.gz
|
||||
adobe-standard /usr/share/fonts/encodings/adobe-standard.enc.gz
|
||||
adobe-symbol /usr/share/fonts/encodings/adobe-symbol.enc.gz
|
||||
armscii-8 /usr/share/fonts/encodings/armscii-8.enc.gz
|
||||
ascii-0 /usr/share/fonts/encodings/ascii-0.enc.gz
|
||||
big5-0 /usr/share/fonts/encodings/large/big5.eten-0.enc.gz
|
||||
big5.cp950-0 /usr/share/fonts/encodings/large/big5.eten-0.enc.gz
|
||||
big5.eten-0 /usr/share/fonts/encodings/large/big5.eten-0.enc.gz
|
||||
big5hkscs-0 /usr/share/fonts/encodings/large/big5hkscs-0.enc.gz
|
||||
cns11643-1 /usr/share/fonts/encodings/large/cns11643-1.enc.gz
|
||||
cns11643-2 /usr/share/fonts/encodings/large/cns11643-2.enc.gz
|
||||
cns11643-3 /usr/share/fonts/encodings/large/cns11643-3.enc.gz
|
||||
dec-special /usr/share/fonts/encodings/dec-special.enc.gz
|
||||
gb18030-0 /usr/share/fonts/encodings/large/gb18030-0.enc.gz
|
||||
gb18030.2000-0 /usr/share/fonts/encodings/large/gb18030.2000-0.enc.gz
|
||||
gb18030.2000-1 /usr/share/fonts/encodings/large/gb18030.2000-1.enc.gz
|
||||
gb2312.1980-0 /usr/share/fonts/encodings/large/gb2312.1980-0.enc.gz
|
||||
gbk-0 /usr/share/fonts/encodings/large/gbk-0.enc.gz
|
||||
ibm-cp437 /usr/share/fonts/encodings/ibm-cp437.enc.gz
|
||||
ibm-cp850 /usr/share/fonts/encodings/ibm-cp850.enc.gz
|
||||
ibm-cp852 /usr/share/fonts/encodings/ibm-cp852.enc.gz
|
||||
ibm-cp866 /usr/share/fonts/encodings/ibm-cp866.enc.gz
|
||||
iso8859-11 /usr/share/fonts/encodings/iso8859-11.enc.gz
|
||||
iso8859-13 /usr/share/fonts/encodings/iso8859-13.enc.gz
|
||||
iso8859-16 /usr/share/fonts/encodings/iso8859-16.enc.gz
|
||||
iso8859-6.16 /usr/share/fonts/encodings/iso8859-6.16.enc.gz
|
||||
iso8859-6.8x /usr/share/fonts/encodings/iso8859-6.8x.enc.gz
|
||||
jisx0201.1976-0 /usr/share/fonts/encodings/large/jisx0201.1976-0.enc.gz
|
||||
jisx0208.1983-0 /usr/share/fonts/encodings/large/jisx0208.1990-0.enc.gz
|
||||
jisx0208.1990-0 /usr/share/fonts/encodings/large/jisx0208.1990-0.enc.gz
|
||||
jisx0212.1990-0 /usr/share/fonts/encodings/large/jisx0212.1990-0.enc.gz
|
||||
ksc5601.1987-0 /usr/share/fonts/encodings/large/ksc5601.1987-0.enc.gz
|
||||
ksc5601.1992-3 /usr/share/fonts/encodings/large/ksc5601.1992-3.enc.gz
|
||||
ksx1001.1997-0 /usr/share/fonts/encodings/large/ksc5601.1987-0.enc.gz
|
||||
ksx1001.1998-0 /usr/share/fonts/encodings/large/ksc5601.1987-0.enc.gz
|
||||
ksx1001.1998-3 /usr/share/fonts/encodings/large/ksc5601.1992-3.enc.gz
|
||||
ksxjohab-1 /usr/share/fonts/encodings/large/ksc5601.1992-3.enc.gz
|
||||
microsoft-ansi /usr/share/fonts/encodings/microsoft-cp1252.enc.gz
|
||||
microsoft-cp1250 /usr/share/fonts/encodings/microsoft-cp1250.enc.gz
|
||||
microsoft-cp1251 /usr/share/fonts/encodings/microsoft-cp1251.enc.gz
|
||||
microsoft-cp1252 /usr/share/fonts/encodings/microsoft-cp1252.enc.gz
|
||||
microsoft-cp1253 /usr/share/fonts/encodings/microsoft-cp1253.enc.gz
|
||||
microsoft-cp1254 /usr/share/fonts/encodings/microsoft-cp1254.enc.gz
|
||||
microsoft-cp1255 /usr/share/fonts/encodings/microsoft-cp1255.enc.gz
|
||||
microsoft-cp1256 /usr/share/fonts/encodings/microsoft-cp1256.enc.gz
|
||||
microsoft-cp1257 /usr/share/fonts/encodings/microsoft-cp1257.enc.gz
|
||||
microsoft-cp1258 /usr/share/fonts/encodings/microsoft-cp1258.enc.gz
|
||||
microsoft-win3.1 /usr/share/fonts/encodings/microsoft-win3.1.enc.gz
|
||||
mulearabic-0 /usr/share/fonts/encodings/mulearabic-0.enc.gz
|
||||
mulearabic-1 /usr/share/fonts/encodings/mulearabic-1.enc.gz
|
||||
mulearabic-2 /usr/share/fonts/encodings/mulearabic-2.enc.gz
|
||||
mulelao-1 /usr/share/fonts/encodings/mulelao-1.enc.gz
|
||||
sun.unicode.india-0 /usr/share/fonts/encodings/large/sun.unicode.india-0.enc.gz
|
||||
suneu-greek /usr/share/fonts/encodings/suneu-greek.enc.gz
|
||||
tcvn-0 /usr/share/fonts/encodings/tcvn-0.enc.gz
|
||||
tis620-0 /usr/share/fonts/encodings/iso8859-11.enc.gz
|
||||
tis620-2 /usr/share/fonts/encodings/tis620-2.enc.gz
|
||||
tis620.2529-1 /usr/share/fonts/encodings/iso8859-11.enc.gz
|
||||
tis620.2533-0 /usr/share/fonts/encodings/iso8859-11.enc.gz
|
||||
tis620.2533-1 /usr/share/fonts/encodings/iso8859-11.enc.gz
|
||||
viscii1.1-1 /usr/share/fonts/encodings/viscii1.1-1.enc.gz
|
|
@ -1,43 +0,0 @@
|
|||
42
|
||||
SourceHanCodeJP-Bold.otf -adobe-source han code jp r-bold-r-normal--0-0-0-0-p-0-iso10646-1
|
||||
SourceHanCodeJP-Bold.otf -adobe-source han code jp r-bold-r-normal--0-0-0-0-p-0-iso8859-1
|
||||
SourceHanCodeJP-Bold.otf -adobe-source han code jp r-bold-r-normal--0-0-0-0-p-0-koi8-r
|
||||
SourceHanCodeJP-BoldIt.otf -adobe-source han code jp r-bold-i-normal--0-0-0-0-p-0-iso10646-1
|
||||
SourceHanCodeJP-BoldIt.otf -adobe-source han code jp r-bold-i-normal--0-0-0-0-p-0-iso8859-1
|
||||
SourceHanCodeJP-BoldIt.otf -adobe-source han code jp r-bold-i-normal--0-0-0-0-p-0-koi8-r
|
||||
SourceHanCodeJP-ExtraLight.otf -adobe-source han code jp el-light-r-normal--0-0-0-0-p-0-iso10646-1
|
||||
SourceHanCodeJP-ExtraLight.otf -adobe-source han code jp el-light-r-normal--0-0-0-0-p-0-iso8859-1
|
||||
SourceHanCodeJP-ExtraLight.otf -adobe-source han code jp el-light-r-normal--0-0-0-0-p-0-koi8-r
|
||||
SourceHanCodeJP-ExtraLightIt.otf -adobe-source han code jp el-light-i-normal--0-0-0-0-p-0-iso10646-1
|
||||
SourceHanCodeJP-ExtraLightIt.otf -adobe-source han code jp el-light-i-normal--0-0-0-0-p-0-iso8859-1
|
||||
SourceHanCodeJP-ExtraLightIt.otf -adobe-source han code jp el-light-i-normal--0-0-0-0-p-0-koi8-r
|
||||
SourceHanCodeJP-Heavy.otf -adobe-source han code jp h-black-r-normal--0-0-0-0-p-0-iso10646-1
|
||||
SourceHanCodeJP-Heavy.otf -adobe-source han code jp h-black-r-normal--0-0-0-0-p-0-iso8859-1
|
||||
SourceHanCodeJP-Heavy.otf -adobe-source han code jp h-black-r-normal--0-0-0-0-p-0-koi8-r
|
||||
SourceHanCodeJP-HeavyIt.otf -adobe-source han code jp h-black-i-normal--0-0-0-0-p-0-iso10646-1
|
||||
SourceHanCodeJP-HeavyIt.otf -adobe-source han code jp h-black-i-normal--0-0-0-0-p-0-iso8859-1
|
||||
SourceHanCodeJP-HeavyIt.otf -adobe-source han code jp h-black-i-normal--0-0-0-0-p-0-koi8-r
|
||||
SourceHanCodeJP-Light.otf -adobe-source han code jp l-light-r-normal--0-0-0-0-p-0-iso10646-1
|
||||
SourceHanCodeJP-Light.otf -adobe-source han code jp l-light-r-normal--0-0-0-0-p-0-iso8859-1
|
||||
SourceHanCodeJP-Light.otf -adobe-source han code jp l-light-r-normal--0-0-0-0-p-0-koi8-r
|
||||
SourceHanCodeJP-LightIt.otf -adobe-source han code jp l-light-i-normal--0-0-0-0-p-0-iso10646-1
|
||||
SourceHanCodeJP-LightIt.otf -adobe-source han code jp l-light-i-normal--0-0-0-0-p-0-iso8859-1
|
||||
SourceHanCodeJP-LightIt.otf -adobe-source han code jp l-light-i-normal--0-0-0-0-p-0-koi8-r
|
||||
SourceHanCodeJP-Medium.otf -adobe-source han code jp m-medium-r-normal--0-0-0-0-p-0-iso10646-1
|
||||
SourceHanCodeJP-Medium.otf -adobe-source han code jp m-medium-r-normal--0-0-0-0-p-0-iso8859-1
|
||||
SourceHanCodeJP-Medium.otf -adobe-source han code jp m-medium-r-normal--0-0-0-0-p-0-koi8-r
|
||||
SourceHanCodeJP-MediumIt.otf -adobe-source han code jp m-medium-i-normal--0-0-0-0-p-0-iso10646-1
|
||||
SourceHanCodeJP-MediumIt.otf -adobe-source han code jp m-medium-i-normal--0-0-0-0-p-0-iso8859-1
|
||||
SourceHanCodeJP-MediumIt.otf -adobe-source han code jp m-medium-i-normal--0-0-0-0-p-0-koi8-r
|
||||
SourceHanCodeJP-Normal.otf -adobe-source han code jp n-medium-r-normal--0-0-0-0-p-0-iso10646-1
|
||||
SourceHanCodeJP-Normal.otf -adobe-source han code jp n-medium-r-normal--0-0-0-0-p-0-iso8859-1
|
||||
SourceHanCodeJP-Normal.otf -adobe-source han code jp n-medium-r-normal--0-0-0-0-p-0-koi8-r
|
||||
SourceHanCodeJP-NormalIt.otf -adobe-source han code jp n-medium-i-normal--0-0-0-0-p-0-iso10646-1
|
||||
SourceHanCodeJP-NormalIt.otf -adobe-source han code jp n-medium-i-normal--0-0-0-0-p-0-iso8859-1
|
||||
SourceHanCodeJP-NormalIt.otf -adobe-source han code jp n-medium-i-normal--0-0-0-0-p-0-koi8-r
|
||||
SourceHanCodeJP-Regular.otf -adobe-source han code jp r-medium-r-normal--0-0-0-0-p-0-iso10646-1
|
||||
SourceHanCodeJP-Regular.otf -adobe-source han code jp r-medium-r-normal--0-0-0-0-p-0-iso8859-1
|
||||
SourceHanCodeJP-Regular.otf -adobe-source han code jp r-medium-r-normal--0-0-0-0-p-0-koi8-r
|
||||
SourceHanCodeJP-RegularIt.otf -adobe-source han code jp r-medium-i-normal--0-0-0-0-p-0-iso10646-1
|
||||
SourceHanCodeJP-RegularIt.otf -adobe-source han code jp r-medium-i-normal--0-0-0-0-p-0-iso8859-1
|
||||
SourceHanCodeJP-RegularIt.otf -adobe-source han code jp r-medium-i-normal--0-0-0-0-p-0-koi8-r
|
|
@ -1,43 +0,0 @@
|
|||
42
|
||||
SourceHanCodeJP-Bold.otf -adobe-source han code jp r-bold-r-normal--0-0-0-0-p-0-iso10646-1
|
||||
SourceHanCodeJP-Bold.otf -adobe-source han code jp r-bold-r-normal--0-0-0-0-p-0-iso8859-1
|
||||
SourceHanCodeJP-Bold.otf -adobe-source han code jp r-bold-r-normal--0-0-0-0-p-0-koi8-r
|
||||
SourceHanCodeJP-BoldIt.otf -adobe-source han code jp r-bold-i-normal--0-0-0-0-p-0-iso10646-1
|
||||
SourceHanCodeJP-BoldIt.otf -adobe-source han code jp r-bold-i-normal--0-0-0-0-p-0-iso8859-1
|
||||
SourceHanCodeJP-BoldIt.otf -adobe-source han code jp r-bold-i-normal--0-0-0-0-p-0-koi8-r
|
||||
SourceHanCodeJP-ExtraLight.otf -adobe-source han code jp el-light-r-normal--0-0-0-0-p-0-iso10646-1
|
||||
SourceHanCodeJP-ExtraLight.otf -adobe-source han code jp el-light-r-normal--0-0-0-0-p-0-iso8859-1
|
||||
SourceHanCodeJP-ExtraLight.otf -adobe-source han code jp el-light-r-normal--0-0-0-0-p-0-koi8-r
|
||||
SourceHanCodeJP-ExtraLightIt.otf -adobe-source han code jp el-light-i-normal--0-0-0-0-p-0-iso10646-1
|
||||
SourceHanCodeJP-ExtraLightIt.otf -adobe-source han code jp el-light-i-normal--0-0-0-0-p-0-iso8859-1
|
||||
SourceHanCodeJP-ExtraLightIt.otf -adobe-source han code jp el-light-i-normal--0-0-0-0-p-0-koi8-r
|
||||
SourceHanCodeJP-Heavy.otf -adobe-source han code jp h-black-r-normal--0-0-0-0-p-0-iso10646-1
|
||||
SourceHanCodeJP-Heavy.otf -adobe-source han code jp h-black-r-normal--0-0-0-0-p-0-iso8859-1
|
||||
SourceHanCodeJP-Heavy.otf -adobe-source han code jp h-black-r-normal--0-0-0-0-p-0-koi8-r
|
||||
SourceHanCodeJP-HeavyIt.otf -adobe-source han code jp h-black-i-normal--0-0-0-0-p-0-iso10646-1
|
||||
SourceHanCodeJP-HeavyIt.otf -adobe-source han code jp h-black-i-normal--0-0-0-0-p-0-iso8859-1
|
||||
SourceHanCodeJP-HeavyIt.otf -adobe-source han code jp h-black-i-normal--0-0-0-0-p-0-koi8-r
|
||||
SourceHanCodeJP-Light.otf -adobe-source han code jp l-light-r-normal--0-0-0-0-p-0-iso10646-1
|
||||
SourceHanCodeJP-Light.otf -adobe-source han code jp l-light-r-normal--0-0-0-0-p-0-iso8859-1
|
||||
SourceHanCodeJP-Light.otf -adobe-source han code jp l-light-r-normal--0-0-0-0-p-0-koi8-r
|
||||
SourceHanCodeJP-LightIt.otf -adobe-source han code jp l-light-i-normal--0-0-0-0-p-0-iso10646-1
|
||||
SourceHanCodeJP-LightIt.otf -adobe-source han code jp l-light-i-normal--0-0-0-0-p-0-iso8859-1
|
||||
SourceHanCodeJP-LightIt.otf -adobe-source han code jp l-light-i-normal--0-0-0-0-p-0-koi8-r
|
||||
SourceHanCodeJP-Medium.otf -adobe-source han code jp m-medium-r-normal--0-0-0-0-p-0-iso10646-1
|
||||
SourceHanCodeJP-Medium.otf -adobe-source han code jp m-medium-r-normal--0-0-0-0-p-0-iso8859-1
|
||||
SourceHanCodeJP-Medium.otf -adobe-source han code jp m-medium-r-normal--0-0-0-0-p-0-koi8-r
|
||||
SourceHanCodeJP-MediumIt.otf -adobe-source han code jp m-medium-i-normal--0-0-0-0-p-0-iso10646-1
|
||||
SourceHanCodeJP-MediumIt.otf -adobe-source han code jp m-medium-i-normal--0-0-0-0-p-0-iso8859-1
|
||||
SourceHanCodeJP-MediumIt.otf -adobe-source han code jp m-medium-i-normal--0-0-0-0-p-0-koi8-r
|
||||
SourceHanCodeJP-Normal.otf -adobe-source han code jp n-medium-r-normal--0-0-0-0-p-0-iso10646-1
|
||||
SourceHanCodeJP-Normal.otf -adobe-source han code jp n-medium-r-normal--0-0-0-0-p-0-iso8859-1
|
||||
SourceHanCodeJP-Normal.otf -adobe-source han code jp n-medium-r-normal--0-0-0-0-p-0-koi8-r
|
||||
SourceHanCodeJP-NormalIt.otf -adobe-source han code jp n-medium-i-normal--0-0-0-0-p-0-iso10646-1
|
||||
SourceHanCodeJP-NormalIt.otf -adobe-source han code jp n-medium-i-normal--0-0-0-0-p-0-iso8859-1
|
||||
SourceHanCodeJP-NormalIt.otf -adobe-source han code jp n-medium-i-normal--0-0-0-0-p-0-koi8-r
|
||||
SourceHanCodeJP-Regular.otf -adobe-source han code jp r-medium-r-normal--0-0-0-0-p-0-iso10646-1
|
||||
SourceHanCodeJP-Regular.otf -adobe-source han code jp r-medium-r-normal--0-0-0-0-p-0-iso8859-1
|
||||
SourceHanCodeJP-Regular.otf -adobe-source han code jp r-medium-r-normal--0-0-0-0-p-0-koi8-r
|
||||
SourceHanCodeJP-RegularIt.otf -adobe-source han code jp r-medium-i-normal--0-0-0-0-p-0-iso10646-1
|
||||
SourceHanCodeJP-RegularIt.otf -adobe-source han code jp r-medium-i-normal--0-0-0-0-p-0-iso8859-1
|
||||
SourceHanCodeJP-RegularIt.otf -adobe-source han code jp r-medium-i-normal--0-0-0-0-p-0-koi8-r
|
Binary file not shown.
Before Width: | Height: | Size: 577 KiB |
Loading…
Reference in a new issue