├── .github └── workflows │ └── update-translations.yml ├── APACHE-LICENSE-2.0.txt ├── CC-BY-NC-SA-3.0.txt ├── README.md ├── main.py ├── requirements.txt └── tag-translations ├── tag-translations-zh-rCN └── tag-translations-zh-rCN.sha1 /.github/workflows/update-translations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mapaler/EhViewer/HEAD/.github/workflows/update-translations.yml -------------------------------------------------------------------------------- /APACHE-LICENSE-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mapaler/EhViewer/HEAD/APACHE-LICENSE-2.0.txt -------------------------------------------------------------------------------- /CC-BY-NC-SA-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mapaler/EhViewer/HEAD/CC-BY-NC-SA-3.0.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mapaler/EhViewer/HEAD/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mapaler/EhViewer/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | bs4==0.0.1 2 | Markdown==3.2.1 3 | -------------------------------------------------------------------------------- /tag-translations/tag-translations-zh-rCN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mapaler/EhViewer/HEAD/tag-translations/tag-translations-zh-rCN -------------------------------------------------------------------------------- /tag-translations/tag-translations-zh-rCN.sha1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mapaler/EhViewer/HEAD/tag-translations/tag-translations-zh-rCN.sha1 --------------------------------------------------------------------------------