更新 'repository.yaml'
This commit is contained in:
13
onelist/CHANGELOG.md
Normal file
13
onelist/CHANGELOG.md
Normal file
@@ -0,0 +1,13 @@
|
||||
### 2.0.5(2024-03-23)
|
||||
|
||||
- 配置项arch支持armv7
|
||||
|
||||
### v2.0.5(2024-03-06)
|
||||
|
||||
- 版本更新
|
||||
- 新增onelist客户端,包括安卓手机版,安卓电视TV版,Windows版
|
||||
- 修正调用外部播放器未编码链接导致错误
|
||||
|
||||
### 2.0.4(2024-01-12)
|
||||
|
||||
- 首次推出
|
||||
15
onelist/DOCS.md
Normal file
15
onelist/DOCS.md
Normal file
@@ -0,0 +1,15 @@
|
||||
# onelist
|
||||
|
||||
## 配置说明
|
||||
|
||||
### 更改此主机上由加载项开放的端口:
|
||||
|
||||
- 默认端口号:5245,可自行修改
|
||||
|
||||
- 可以通过浏览器页面访问 <http://ip:port> (端口号默认5245)
|
||||
|
||||
- 详细使用指南,请进入:https://www.bilibili.com/video/BV15M41177LN
|
||||
|
||||
- 管理员: [admin@qq.com](mailto:admin@qq.com)
|
||||
|
||||
- 密码: admin
|
||||
25
onelist/README.md
Normal file
25
onelist/README.md
Normal file
@@ -0,0 +1,25 @@
|
||||
# 冬瓜甄选addons:Onelist
|
||||
|
||||
## 关于
|
||||
|
||||
一个类似emby的专注于刮削alist聚合网盘形成影视媒体库的程序。
|
||||
|
||||
### 主要解决以下痛点:
|
||||
|
||||
- alist挂载云盘后能在网页端看视频,却没有分类,没有海报墙
|
||||
|
||||
- 使用webdav挂载本地后,用jellyfin或者emby刮削会下载视频截取封面导致封号
|
||||
|
||||
- 用jellyfin或者emby之类,没有大带宽公网ip,在外难以访问
|
||||
|
||||
### 添加媒体库
|
||||
|
||||
1.对应输入媒体库名字,比如电影,类型选择movie
|
||||
|
||||
2.封面图片可以暂时不填
|
||||
|
||||
3.填写alist相关信息,这个主要用于程序查询你alist中文件,根据文件名进行刮削
|
||||
|
||||
## 来源
|
||||
|
||||
https://github.com/msterzhang/onelist/
|
||||
66
onelist/apparmor.txt
Normal file
66
onelist/apparmor.txt
Normal file
@@ -0,0 +1,66 @@
|
||||
#include <tunables/global>
|
||||
|
||||
profile onelist flags=(attach_disconnected,mediate_deleted) {
|
||||
#include <abstractions/base>
|
||||
|
||||
capability,
|
||||
file,
|
||||
signal,
|
||||
mount,
|
||||
umount,
|
||||
remount,
|
||||
network udp,
|
||||
network tcp,
|
||||
network dgram,
|
||||
network stream,
|
||||
network inet,
|
||||
network inet6,
|
||||
network netlink raw,
|
||||
network unix dgram,
|
||||
|
||||
capability setgid,
|
||||
capability setuid,
|
||||
capability sys_admin,
|
||||
capability dac_read_search,
|
||||
# capability dac_override,
|
||||
# capability sys_rawio,
|
||||
|
||||
# S6-Overlay
|
||||
/init ix,
|
||||
/run/{s6,s6-rc*,service}/** ix,
|
||||
/package/** ix,
|
||||
/command/** ix,
|
||||
/run/{,**} rwk,
|
||||
/dev/tty rw,
|
||||
/bin/** ix,
|
||||
/usr/bin/** ix,
|
||||
/usr/lib/bashio/** ix,
|
||||
/etc/s6/** rix,
|
||||
/run/s6/** rix,
|
||||
/etc/services.d/** rwix,
|
||||
/etc/cont-init.d/** rwix,
|
||||
/etc/cont-finish.d/** rwix,
|
||||
/init rix,
|
||||
/var/run/** mrwkl,
|
||||
/var/run/ mrwkl,
|
||||
/dev/i2c-1 mrwkl,
|
||||
# Files required
|
||||
/dev/fuse mrwkl,
|
||||
/dev/sda1 mrwkl,
|
||||
/dev/sdb1 mrwkl,
|
||||
/dev/nvme0 mrwkl,
|
||||
/dev/nvme1 mrwkl,
|
||||
/dev/ttyUSB0 mrwkl,
|
||||
/dev/* mrwkl,
|
||||
/tmp/** mrkwl,
|
||||
|
||||
# Data access
|
||||
/data/** rw,
|
||||
|
||||
# suppress ptrace denials when using 'docker ps' or using 'ps' inside a container
|
||||
ptrace (trace,read) peer=docker-default,
|
||||
|
||||
# docker daemon confinement requires explict allow rule for signal
|
||||
signal (receive) set=(kill,term) peer=/usr/bin/docker,
|
||||
|
||||
}
|
||||
75
onelist/config.yaml
Normal file
75
onelist/config.yaml
Normal file
@@ -0,0 +1,75 @@
|
||||
name: Onelist
|
||||
slug: onelist
|
||||
version: 2.0.5
|
||||
description: '专注于刮削alist聚合网盘形成影视媒体库的程序'
|
||||
url: https://gitcode.com/waxgourd/addons
|
||||
codenotary: wghaos@163.com
|
||||
image: r.hassbus.com/wghaos/onelist
|
||||
arch:
|
||||
- aarch64
|
||||
- amd64
|
||||
backup_exclude:
|
||||
- '*/data/'
|
||||
devices:
|
||||
- /dev/dri
|
||||
- /dev/dri/card0
|
||||
- /dev/dri/card1
|
||||
- /dev/dri/renderD128
|
||||
- /dev/vchiq
|
||||
- /dev/ttyUSB0
|
||||
- /dev/sda
|
||||
- /dev/sdb
|
||||
- /dev/nvme
|
||||
- /dev/nvme0n1p1
|
||||
- /dev/nvme0n1p2
|
||||
- /dev/mmcblk
|
||||
- /dev/fuse
|
||||
- /dev/net/tun
|
||||
apparmor: true
|
||||
init: false
|
||||
boot: manual
|
||||
startup: application
|
||||
privileged:
|
||||
- SYS_ADMIN
|
||||
- DAC_READ_SEARCH
|
||||
ports:
|
||||
'5245': 5245
|
||||
ports_description:
|
||||
'5245': web port
|
||||
webui: "http://[HOST]:[PORT:5245]/"
|
||||
options:
|
||||
env: Release
|
||||
title: onelist
|
||||
user:
|
||||
user_email: admin@qq.com
|
||||
user_password: admin
|
||||
db:
|
||||
db_driver: sqlite
|
||||
db_user: root
|
||||
db_name: onelist
|
||||
db_password_debug: "123456"
|
||||
db_password_release: "123456"
|
||||
api_secret: zaWs5gGUrYr8czqwlkqVJzDrzMplCzNp
|
||||
faviconico_url: https://wework.qpic.cn/wwpic/818353_fizV30xbQCGPQRP_1677394564/0
|
||||
download_image: 是
|
||||
img_url: https://image.tmdb.org
|
||||
video_types: https://image.tmdb.org
|
||||
key_db: 22f10ca52f109158ac7fe064ebbcf697
|
||||
schema:
|
||||
env: list(Release|Debug)
|
||||
title: str
|
||||
user:
|
||||
user_email: str
|
||||
user_password: str
|
||||
db:
|
||||
db_driver: str
|
||||
db_user: str
|
||||
db_name: str
|
||||
db_password_debug: str
|
||||
db_password_release: str
|
||||
api_secret: str
|
||||
faviconico_url: str
|
||||
download_image: str
|
||||
img_url: str
|
||||
video_types: str
|
||||
key_db: str
|
||||
BIN
onelist/icon.png
Normal file
BIN
onelist/icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 5.1 KiB |
BIN
onelist/logo.png
Normal file
BIN
onelist/logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 5.1 KiB |
71
onelist/translations/en.yaml
Normal file
71
onelist/translations/en.yaml
Normal file
@@ -0,0 +1,71 @@
|
||||
---
|
||||
configuration:
|
||||
env:
|
||||
name: env
|
||||
description: >-
|
||||
env
|
||||
title:
|
||||
name: title
|
||||
description: >-
|
||||
title
|
||||
user:
|
||||
name: user
|
||||
description: >-
|
||||
user
|
||||
user_email:
|
||||
name: user_email
|
||||
description: >-
|
||||
user_email
|
||||
user_password:
|
||||
name: user_password
|
||||
description: >-
|
||||
user_password
|
||||
db:
|
||||
name: db
|
||||
description: >-
|
||||
db
|
||||
db_driver:
|
||||
name: db_driver
|
||||
description: >-
|
||||
db_driver
|
||||
db_user:
|
||||
name: db_user
|
||||
description: >-
|
||||
db_user
|
||||
db_name:
|
||||
name: db_name
|
||||
description: >-
|
||||
db_name
|
||||
db_password_debug:
|
||||
name: db_password_debug
|
||||
description: >-
|
||||
db_password_debug
|
||||
db_password_release:
|
||||
name: db_password_release
|
||||
description: >-
|
||||
db_password_release
|
||||
api_secret:
|
||||
name: api_secret
|
||||
description: >-
|
||||
api_secret
|
||||
faviconico_url:
|
||||
name: faviconico_url
|
||||
description: >-
|
||||
faviconico_url
|
||||
download_image:
|
||||
name: download_image
|
||||
description: >-
|
||||
download_image
|
||||
img_url:
|
||||
name: img_url
|
||||
description: >-
|
||||
img_url
|
||||
video_types:
|
||||
name: video_types
|
||||
description: >-
|
||||
video_types
|
||||
key_db:
|
||||
name: key_db
|
||||
description: >-
|
||||
key_db
|
||||
|
||||
71
onelist/translations/zh-Hans.yaml
Normal file
71
onelist/translations/zh-Hans.yaml
Normal file
@@ -0,0 +1,71 @@
|
||||
---
|
||||
configuration:
|
||||
env:
|
||||
name: 环境
|
||||
description: >-
|
||||
这里选择运行的环境
|
||||
title:
|
||||
name: 标题
|
||||
description: >-
|
||||
这里填写标题
|
||||
user:
|
||||
name: 用户配置
|
||||
description: >-
|
||||
这里填写用户的信息
|
||||
user_email:
|
||||
name: 邮箱
|
||||
description: >-
|
||||
这里填写邮箱地址
|
||||
user_password:
|
||||
name: 密码
|
||||
description: >-
|
||||
这里填写用户密码
|
||||
db:
|
||||
name: 数据库配置
|
||||
description: >-
|
||||
这里填写数据库的配置项
|
||||
db_driver:
|
||||
name: db_driver
|
||||
description: >-
|
||||
db_driver
|
||||
db_user:
|
||||
name: db_user
|
||||
description: >-
|
||||
db_user
|
||||
db_name:
|
||||
name: db_name
|
||||
description: >-
|
||||
db_name
|
||||
db_password_debug:
|
||||
name: db_password_debug
|
||||
description: >-
|
||||
db_password_debug
|
||||
db_password_release:
|
||||
name: db_password_release
|
||||
description: >-
|
||||
db_password_release
|
||||
api_secret:
|
||||
name: API密钥
|
||||
description: >-
|
||||
这里填写API密钥
|
||||
faviconico_url:
|
||||
name: 收藏的url
|
||||
description: >-
|
||||
这里是收藏的url地址
|
||||
download_image:
|
||||
name: 下载图片
|
||||
description: >-
|
||||
这里配置是否下载图片
|
||||
img_url:
|
||||
name: 图片地址
|
||||
description: >-
|
||||
这里填写图片地址
|
||||
video_types:
|
||||
name: 视频类型
|
||||
description: >-
|
||||
这里填写视频类型
|
||||
key_db:
|
||||
name: 数据库键
|
||||
description: >-
|
||||
这里填写数据库的键
|
||||
|
||||
Reference in New Issue
Block a user