-
-
Notifications
You must be signed in to change notification settings - Fork 554
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add automatically parsed data (9083)
[ci skip]
- Loading branch information
Travis CI
committed
Feb 27, 2020
1 parent
ac87d95
commit 53ca882
Showing
5 changed files
with
130 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,71 @@ | ||
--- | ||
layout: app | ||
|
||
permalink: /Yuna/ | ||
description: An anime player that integrates with AniList, Crunchyroll, and Hidive. | ||
|
||
icons: | ||
- Yuna/icons/128x128/yuna.png | ||
|
||
screenshots: | ||
- Yuna/screenshot.png | ||
|
||
authors: | ||
- name: BeeeQueue | ||
url: https://github.com/BeeeQueue | ||
|
||
links: | ||
- type: GitHub | ||
url: BeeeQueue/yuna | ||
- type: Download | ||
url: https://github.com/BeeeQueue/yuna/releases | ||
|
||
desktop: | ||
Desktop Entry: | ||
Name: Yuna | ||
Exec: AppRun | ||
Terminal: false | ||
Type: Application | ||
Icon: yuna | ||
StartupWMClass: Yuna | ||
X-AppImage-Version: 1.4.11.1991 | ||
Comment: An anime player that integrates with AniList, Crunchyroll, and Hidive. | ||
Categories: Video | ||
AppImageHub: | ||
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. | ||
X-AppImage-Type: 2 | ||
X-AppImage-Architecture: x86_64 | ||
|
||
electron: | ||
author: BeeeQueue | ||
dependencies: | ||
electron-debug: 3.0.1 | ||
electron-store: 5.1.0 | ||
electron-util: 0.12.3 | ||
husky: 3.1.0 | ||
lodash.keyby: 4.6.0 | ||
register-scheme: 0.0.2 | ||
svg-country-flags: 1.2.7 | ||
husky: | ||
hooks: | ||
pre-commit: lint-staged | ||
license: AGPL-3.0-only | ||
lint-staged: | ||
"*.{ts,vue}": | ||
- eslint --fix | ||
- prettier --write | ||
- git add | ||
"*.{js,json,graphql,yml,scss}": | ||
- prettier --write | ||
- git add | ||
main: background.js | ||
private: true | ||
repository: | ||
type: github | ||
url: https://github.com/BeeeQueue/yuna | ||
resolutions: | ||
"@types/graphql": 14.5.0 | ||
graphql: 14.5.8 | ||
--- |
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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{ | ||
"name": "yuna", | ||
"description": "An anime player that integrates with AniList, Crunchyroll, and Hidive.", | ||
"version": "1.4.11", | ||
"author": "BeeeQueue", | ||
"dependencies": { | ||
"electron-debug": "3.0.1", | ||
"electron-store": "5.1.0", | ||
"electron-util": "0.12.3", | ||
"husky": "3.1.0", | ||
"lodash.keyby": "4.6.0", | ||
"register-scheme": "0.0.2", | ||
"svg-country-flags": "1.2.7" | ||
}, | ||
"husky": { | ||
"hooks": { | ||
"pre-commit": "lint-staged" | ||
} | ||
}, | ||
"license": "AGPL-3.0-only", | ||
"lint-staged": { | ||
"*.{ts,vue}": [ | ||
"eslint --fix", | ||
"prettier --write", | ||
"git add" | ||
], | ||
"*.{js,json,graphql,yml,scss}": [ | ||
"prettier --write", | ||
"git add" | ||
] | ||
}, | ||
"main": "background.js", | ||
"private": true, | ||
"repository": { | ||
"type": "github", | ||
"url": "https://github.com/BeeeQueue/yuna" | ||
}, | ||
"resolutions": { | ||
"@types/graphql": "14.5.0", | ||
"graphql": "14.5.8" | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
[Desktop Entry] | ||
Name=Yuna | ||
Exec=AppRun | ||
Terminal=false | ||
Type=Application | ||
Icon=yuna | ||
StartupWMClass=Yuna | ||
X-AppImage-Version=1.4.11.1991 | ||
Comment=An anime player that integrates with AniList, Crunchyroll, and Hidive. | ||
Categories=Video; | ||
|
||
[AppImageHub] | ||
# Dear upstream developer, please include update information in your AppImage | ||
# (e.g., with appimagetool -u) so that users can easily update the AppImage | ||
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. | ||
X-AppImage-Type=2 | ||
X-AppImage-Architecture=x86_64 |