Skip to content

Commit 944e129

Browse files
authored
Merge pull request AppImage#1048 from AppImage/KawAnime
Create KawAnime
2 parents 730349f + 31b821d commit 944e129

File tree

5 files changed

+158
-0
lines changed

5 files changed

+158
-0
lines changed

apps/KawAnime.md

+85
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
---
2+
layout: app
3+
4+
permalink: /KawAnime/
5+
description: Desktop app for anime fans
6+
7+
screenshots:
8+
- KawAnime/screenshot.png
9+
10+
authors:
11+
- name: Kylart
12+
url: https://github.com/Kylart
13+
14+
links:
15+
- type: GitHub
16+
url: Kylart/KawAnime
17+
- type: Install
18+
url: https://github.com/Kylart/KawAnime/releases
19+
20+
desktop:
21+
Desktop Entry:
22+
Name: KawAnime
23+
Comment: Desktop app for anime fans
24+
Exec: AppRun
25+
Terminal: false
26+
Type: Application
27+
Icon: kawanime
28+
X-AppImage-Version: 0.3.1
29+
X-AppImage-BuildId: 50e7d540-8b2d-11a8-0d97-6d89054d6302
30+
Categories: Network
31+
AppImageHub:
32+
X-AppImage-Signature: no valid OpenPGP data found. the signature could not be verified.
33+
Please remember that the signature file (.sig or .asc) should be the first file
34+
given on the command line.
35+
X-AppImage-Type: 2
36+
X-AppImage-Architecture: x86_64
37+
38+
electron:
39+
main: main.js
40+
repository: https://github.com/Kylart/KawAnime.git
41+
author:
42+
name: Kylart
43+
44+
license: MIT
45+
dependencies:
46+
axios: "^0.18.0"
47+
buttercup: "^1.7.1"
48+
chalk: "^2.4.1"
49+
colors: "^1.3.0"
50+
compression: "^1.7.3"
51+
electron-log: "^2.2.16"
52+
electron-updater: "^2.23.3"
53+
express: "^4.16.2"
54+
horrible-api: "^1.1.1"
55+
is-online: "^7.0.0"
56+
lodash: "^4.17.10"
57+
lru-cache: "^4.0.2"
58+
mal-scraper: "^2.4.2"
59+
matroska-subtitles: "^2.0.3"
60+
mime: "^2.2.0"
61+
moment: "^2.22.2"
62+
nyaapi: "^2.0.4"
63+
randomstring: "^1.1.5"
64+
range-parser: "^1.2.0"
65+
serve-favicon: "^2.4.5"
66+
sse-express: "^1.0.2"
67+
urldecode: "^1.0.1"
68+
velocity-animate: "^2.0.5"
69+
vue: "^2.5.13"
70+
vue-clipboards: "^1.2.4"
71+
vue-lazyload: "^1.2.6"
72+
vue-markdown: "^2.2.4"
73+
vue-router: "^3.0.1"
74+
vue-server-renderer: "^2.5.13"
75+
vuetify: "^1.0.19"
76+
vuex: "^3.0.1"
77+
vuex-router-sync: "^5.0.0"
78+
webtorrent: "^0.99.3"
79+
precommit: lint
80+
standard:
81+
parser: babel-eslint
82+
ignore:
83+
- test/front.test.js
84+
- public
85+
---

data/KawAnime

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
https://github.com/Kylart/KawAnime

database/KawAnime/kawanime.desktop

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
[Desktop Entry]
2+
Name=KawAnime
3+
Comment=Desktop app for anime fans
4+
Exec=AppRun
5+
Terminal=false
6+
Type=Application
7+
Icon=kawanime
8+
X-AppImage-Version=0.3.1
9+
X-AppImage-BuildId=50e7d540-8b2d-11a8-0d97-6d89054d6302
10+
Categories=Network;
11+
12+
[AppImageHub]
13+
# Dear upstream developer, please include update information in your AppImage
14+
# (e.g., with appimagetool -u) so that users can easily update the AppImage
15+
X-AppImage-Signature=no valid OpenPGP data found. the signature could not be verified. Please remember that the signature file (.sig or .asc) should be the first file given on the command line.
16+
X-AppImage-Type=2
17+
X-AppImage-Architecture=x86_64

database/KawAnime/package.json

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
{
2+
"name": "KawAnime",
3+
"description": "Desktop app for anime fans",
4+
"version": "0.3.1",
5+
"main": "main.js",
6+
"repository": "https://github.com/Kylart/KawAnime.git",
7+
"author": {
8+
"name": "Kylart",
9+
"email": "[email protected]"
10+
},
11+
"license": "MIT",
12+
"dependencies": {
13+
"axios": "^0.18.0",
14+
"buttercup": "^1.7.1",
15+
"chalk": "^2.4.1",
16+
"colors": "^1.3.0",
17+
"compression": "^1.7.3",
18+
"electron-log": "^2.2.16",
19+
"electron-updater": "^2.23.3",
20+
"express": "^4.16.2",
21+
"horrible-api": "^1.1.1",
22+
"is-online": "^7.0.0",
23+
"lodash": "^4.17.10",
24+
"lru-cache": "^4.0.2",
25+
"mal-scraper": "^2.4.2",
26+
"matroska-subtitles": "^2.0.3",
27+
"mime": "^2.2.0",
28+
"moment": "^2.22.2",
29+
"nyaapi": "^2.0.4",
30+
"randomstring": "^1.1.5",
31+
"range-parser": "^1.2.0",
32+
"serve-favicon": "^2.4.5",
33+
"sse-express": "^1.0.2",
34+
"urldecode": "^1.0.1",
35+
"velocity-animate": "^2.0.5",
36+
"vue": "^2.5.13",
37+
"vue-clipboards": "^1.2.4",
38+
"vue-lazyload": "^1.2.6",
39+
"vue-markdown": "^2.2.4",
40+
"vue-router": "^3.0.1",
41+
"vue-server-renderer": "^2.5.13",
42+
"vuetify": "^1.0.19",
43+
"vuex": "^3.0.1",
44+
"vuex-router-sync": "^5.0.0",
45+
"webtorrent": "^0.99.3"
46+
},
47+
"precommit": "lint",
48+
"standard": {
49+
"parser": "babel-eslint",
50+
"ignore": [
51+
"test/front.test.js",
52+
"public"
53+
]
54+
}
55+
}

database/KawAnime/screenshot.png

89.6 KB
Loading

0 commit comments

Comments
 (0)