Add announcement picture
This commit is contained in:
25
README.md
25
README.md
@@ -1,10 +1,13 @@
|
|||||||
# 关于脚本倒卖的问题: [#1](https://github.com/StageGuard/SkyAutoPlayerScript/issues/1)
|
# 关于脚本倒卖的问题: [#1](https://github.com/StageGuard/SkyAutoPlayerScript/issues/1)
|
||||||
|
|
||||||
|
|
||||||
# SkyAutoPlayerScript
|
# SkyAutoPlayerScript
|
||||||
|
|
||||||
A script to play Sheets generated by SkyStudio automatically in game Sky with accessibility services using Auto.js
|
A script to play Sheets generated by SkyStudio automatically in game Sky with accessibility services using Auto.js
|
||||||
</br>使用Auto.js提供的无障碍权限实现在Sky光遇中自动弹奏[SkyStudio](https://play.google.com/store/apps/details?id=com.Maple.SkyStudio)导出的曲谱
|
</br>使用Auto.js提供的无障碍权限实现在Sky光遇中自动弹奏[SkyStudio](https://play.google.com/store/apps/details?id=com.Maple.SkyStudio)导出的曲谱
|
||||||
|
|
||||||
## 特性
|
## 特性
|
||||||
|
|
||||||
相比于其他脚本,SkyAutoPlayerScript拥有以下优势
|
相比于其他脚本,SkyAutoPlayerScript拥有以下优势
|
||||||
|
|
||||||
* 全GUI操作,无需编辑任何代码,流畅的UI动画。
|
* 全GUI操作,无需编辑任何代码,流畅的UI动画。
|
||||||
@@ -15,6 +18,7 @@ A script to play Sheets generated by SkyStudio automatically in game Sky with ac
|
|||||||
* ...
|
* ...
|
||||||
|
|
||||||
## 使用(Usage)
|
## 使用(Usage)
|
||||||
|
|
||||||
<br>①Auto.js`4.1.1 Alpha2 (461)`版本下载: [`Ericwyn/Auto.js/releases@V4.1.1.Alpha2`](https://github.com/Ericwyn/Auto.js/releases/tag/V4.1.1.Alpha2)
|
<br>①Auto.js`4.1.1 Alpha2 (461)`版本下载: [`Ericwyn/Auto.js/releases@V4.1.1.Alpha2`](https://github.com/Ericwyn/Auto.js/releases/tag/V4.1.1.Alpha2)
|
||||||
<br>Download `Auto.js`[`Ericwyn/Auto.js/releases@V4.1.1.Alpha2`](https://github.com/Ericwyn/Auto.js/releases/tag/V4.1.1.Alpha2)
|
<br>Download `Auto.js`[`Ericwyn/Auto.js/releases@V4.1.1.Alpha2`](https://github.com/Ericwyn/Auto.js/releases/tag/V4.1.1.Alpha2)
|
||||||
<br>手机请下载`autoJs-V4.1.1.Alpha2-common-armeabi-v7a-debug.apk`
|
<br>手机请下载`autoJs-V4.1.1.Alpha2-common-armeabi-v7a-debug.apk`
|
||||||
@@ -23,6 +27,7 @@ A script to play Sheets generated by SkyStudio automatically in game Sky with ac
|
|||||||
<br>Turn on **Accessibility service** and allow **Display pop-up window** permission for Auto.js
|
<br>Turn on **Accessibility service** and allow **Display pop-up window** permission for Auto.js
|
||||||
<br>③在Auto.js中新建一个脚本并粘贴以下代码并运行:
|
<br>③在Auto.js中新建一个脚本并粘贴以下代码并运行:
|
||||||
<br>Create a new script file in Auto.js. Copy the code below and run!
|
<br>Create a new script file in Auto.js. Copy the code below and run!
|
||||||
|
|
||||||
```javascript
|
```javascript
|
||||||
"ui";
|
"ui";
|
||||||
"use strict";
|
"use strict";
|
||||||
@@ -50,6 +55,7 @@ emitter.on('evaluate', function(s){
|
|||||||
在Auto.js版本`4.1.1 Alpha2 (461)`中测试通过,不保证其他版本的兼容性(取决于其他版本相对于此版本的API是否有`breaking changes`)
|
在Auto.js版本`4.1.1 Alpha2 (461)`中测试通过,不保证其他版本的兼容性(取决于其他版本相对于此版本的API是否有`breaking changes`)
|
||||||
|
|
||||||
## 清除数据(Clear data)
|
## 清除数据(Clear data)
|
||||||
|
|
||||||
`SkyAutoPlayerScript`在使用过程中会产生本地数据存储,若想全部删除,请使用Auto.js执行以下代码
|
`SkyAutoPlayerScript`在使用过程中会产生本地数据存储,若想全部删除,请使用Auto.js执行以下代码
|
||||||
<br>`SkyAutoPlayerScript` will store some data while using, if you want to delete all data, please run the code below in Auto.js
|
<br>`SkyAutoPlayerScript` will store some data while using, if you want to delete all data, please run the code below in Auto.js
|
||||||
|
|
||||||
@@ -63,6 +69,7 @@ files.removeDir("/storage/emulated/0/Documents/SkyAutoPlayer/");
|
|||||||
# 上传乐谱
|
# 上传乐谱
|
||||||
|
|
||||||
你可以fork本仓库,将你要上传的乐谱添加至`shared_sheets`文件夹,并按照以下要求在`shared_sheets.json`添加项目
|
你可以fork本仓库,将你要上传的乐谱添加至`shared_sheets`文件夹,并按照以下要求在`shared_sheets.json`添加项目
|
||||||
|
|
||||||
```javascript
|
```javascript
|
||||||
{
|
{
|
||||||
//乐谱名称
|
//乐谱名称
|
||||||
@@ -85,6 +92,7 @@ files.removeDir("/storage/emulated/0/Documents/SkyAutoPlayer/");
|
|||||||
```
|
```
|
||||||
|
|
||||||
修改完成后,申请`Pull Request`,等待merge即可。
|
修改完成后,申请`Pull Request`,等待merge即可。
|
||||||
|
|
||||||
> 请注意:在申请`Pull Request`之前请确保你的SkyAutoPlayerScript仓库已同步至最新,以免出现意外问题!
|
> 请注意:在申请`Pull Request`之前请确保你的SkyAutoPlayerScript仓库已同步至最新,以免出现意外问题!
|
||||||
|
|
||||||
或通过发送乐谱到邮箱[beamiscool@qq.com](mailto:beamiscool@qq.com)
|
或通过发送乐谱到邮箱[beamiscool@qq.com](mailto:beamiscool@qq.com)
|
||||||
@@ -92,26 +100,30 @@ files.removeDir("/storage/emulated/0/Documents/SkyAutoPlayer/");
|
|||||||
<br>
|
<br>
|
||||||
|
|
||||||
# 注意
|
# 注意
|
||||||
|
|
||||||
### 请仔细阅读以下使用须知!
|
### 请仔细阅读以下使用须知!
|
||||||
|
|
||||||
1. 未充分测试,若遇到BUG,请酷安私信@StageGuard或新建Issue来反馈BUG!
|
1. 未充分测试,若遇到BUG,请酷安私信@StageGuard或新建Issue来反馈BUG!
|
||||||
2. **SkyAutoPlayer是完全免费且开源的软件/脚本([https://github.com/StageGuard/SkyAutoPlayerScript](https://github.com/StageGuard/SkyAutoPlayerScript)),使用SkyAutoPlayer盈利的同时请标注源项目链接。**
|
2. **SkyAutoPlayer是完全免费且开源的软件/脚本([https://github.com/StageGuard/SkyAutoPlayerScript](https://github.com/StageGuard/SkyAutoPlayerScript)),使用SkyAutoPlayer盈利的同时请标注源项目链接。**
|
||||||
3. **共享乐谱不遵守LGPL-2.1协议,如您想在SkyAutoPlayer以外使用这些乐谱,请自行找乐谱作者授权!**
|
3. **共享乐谱不遵守LGPL-2.1协议,如您想在SkyAutoPlayer以外使用这些乐谱,请自行找乐谱作者授权!**
|
||||||
3. 本脚本仅可用作娱乐用途,请不要在正规场合使用本脚本(请自行体会\"正规场合\"是什么意思),若因使用本脚本所出现了一些不友好的问题,与脚本作者StageGuard无关。
|
4. 本脚本仅可用作娱乐用途,请不要在正规场合使用本脚本(请自行体会\"正规场合\"是什么意思),若因使用本脚本所出现了一些不友好的问题,与脚本作者StageGuard无关。
|
||||||
4. 脚本只能给你一时满足感而不能使你进步,请适当使用,只有真正的技术才是王道,才能使你感到快乐。
|
5. 脚本只能给你一时满足感而不能使你进步,请适当使用,只有真正的技术才是王道,才能使你感到快乐。
|
||||||
5. 本脚本只是一个"弹奏机",并不内置曲谱,请在GooglePlay下载[SkyStudio](https://play.google.com/store/apps/details?id=com.Maple.SkyStudio)编谱。
|
6. 本脚本只是一个"弹奏机",并不内置曲谱,请在GooglePlay下载[SkyStudio](https://play.google.com/store/apps/details?id=com.Maple.SkyStudio)编谱。
|
||||||
6. 本脚本不会增加解密乐谱功能,包括但不限于**加密的SkyStudio乐谱**,**加密的JS**等,也不接受加密乐谱的共享。
|
7. 本脚本不会增加解密乐谱功能,包括但不限于**加密的SkyStudio乐谱**,**加密的JS**等,也不接受加密乐谱的共享。
|
||||||
|
|
||||||
# 贡献
|
# 贡献
|
||||||
|
|
||||||
欢迎任何人贡献本项目,包括但不限于Pull Request,Issue,New feature request
|
欢迎任何人贡献本项目,包括但不限于Pull Request,Issue,New feature request
|
||||||
|
|
||||||
## 贡献者名单(按照首次贡献时间排序)
|
## 贡献者名单(按照首次贡献时间排序)
|
||||||
|
|
||||||
### SkyAutoPlayerScript
|
### SkyAutoPlayerScript
|
||||||
|
|
||||||
[@tiaod](https://github.com/tiaod)<br>
|
[@tiaod](https://github.com/tiaod)<br>
|
||||||
<br>
|
<br>
|
||||||
|
|
||||||
### 共享乐谱
|
### 共享乐谱
|
||||||
|
|
||||||
酷安[@Aex技术总监](http://www.coolapk.com/u/1286879)<br>
|
酷安[@Aex技术总监](http://www.coolapk.com/u/1286879)<br>
|
||||||
酷安[@夏卡卡卡](http://www.coolapk.com/u/2313452)<br>
|
酷安[@夏卡卡卡](http://www.coolapk.com/u/2313452)<br>
|
||||||
酷安[@深空失忆か](http://www.coolapk.com/u/3005974)<br>
|
酷安[@深空失忆か](http://www.coolapk.com/u/3005974)<br>
|
||||||
@@ -133,14 +145,17 @@ Twitter[Phoebe@huunhut1217](https://mobile.twitter.com/huunhut1217)<br>
|
|||||||
<br>
|
<br>
|
||||||
|
|
||||||
# 图标来源
|
# 图标来源
|
||||||
|
|
||||||
[Iconfont-阿里巴巴矢量图标库](https://www.iconfont.cn/)
|
[Iconfont-阿里巴巴矢量图标库](https://www.iconfont.cn/)
|
||||||
<br>
|
<br>
|
||||||
|
|
||||||
# 鸣谢
|
# 鸣谢
|
||||||
|
|
||||||
[projectXero](https://gitee.com/projectXero) (提供适用于Rhino的`ListAdapter`)
|
[projectXero](https://gitee.com/projectXero) (提供适用于Rhino的`ListAdapter`)
|
||||||
<br>
|
<br>
|
||||||
|
|
||||||
# 许可证协议
|
# 许可证协议
|
||||||
|
|
||||||
```
|
```
|
||||||
SkyAutoPlayer (Auto.js script)
|
SkyAutoPlayer (Auto.js script)
|
||||||
Copyright © 2020 StageGuard
|
Copyright © 2020 StageGuard
|
||||||
@@ -159,4 +174,4 @@ Twitter[Phoebe@huunhut1217](https://mobile.twitter.com/huunhut1217)<br>
|
|||||||
License along with this library; if not, write to the Free Software
|
License along with this library; if not, write to the Free Software
|
||||||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
|
||||||
USA
|
USA
|
||||||
```
|
```
|
||||||
BIN
resources/static/2020-12-19_0-6-6.PNG
Normal file
BIN
resources/static/2020-12-19_0-6-6.PNG
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.0 MiB |
BIN
resources/static/2020-12-19_0-8-40.PNG
Normal file
BIN
resources/static/2020-12-19_0-8-40.PNG
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 457 KiB |
BIN
resources/static/2020-12-19_0-9-57.PNG
Normal file
BIN
resources/static/2020-12-19_0-9-57.PNG
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 688 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 457 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 433 KiB |
Reference in New Issue
Block a user