33 Commits
v13 ... v15

Author SHA1 Message Date
StageGuard
c0976b30c1 Update version 15 2020-10-01 00:09:46 +08:00
StageGuard
65fdecb9be Update version 15 2020-10-01 00:09:10 +08:00
StageGuard
2a16af252f Add sheet attribute. 2020-09-28 21:56:15 +08:00
StageGuard
cd967af5c8 Upload user shared sheets 2020-09-28 21:18:36 +08:00
StageGuard
df9ddff4e4 Upload user shared sheets 2020-09-27 12:06:45 +08:00
StageGuard
8f26c9e1de Upload user shared sheets 2020-09-25 10:10:02 +08:00
StageGuard
b88515f4f2 Upload user shared sheets 2020-09-24 21:34:27 +08:00
StageGuard
46b88f4c6f Upload user shared sheets 2020-09-24 21:32:56 +08:00
StageGuard
03af82818a Upgrade user agreements 2020-09-23 16:25:01 +08:00
StageGuard
9f5a6ab58e Upgrade user agreements 2020-09-23 16:24:35 +08:00
StageGuard
f468dabb89 Update README.md 2020-09-23 16:20:06 +08:00
StageGuard
bb570e1b5c Upload user shared sheets 2020-09-22 08:01:30 +08:00
StageGuard
e57d7d5ad3 Add English instruction for usage 2020-09-21 21:27:41 +08:00
StageGuard
b3d3f77ba5 Update README.md 2020-09-21 07:03:06 +08:00
StageGuard
8abf823182 Upload user shared sheets 2020-09-18 19:49:58 +08:00
StageGuard
064a8fbe9a fix stupid bug 2020-09-14 20:48:11 +08:00
StageGuard
c43edd8549 fix stupid bug 2020-09-14 20:47:27 +08:00
StageGuard
eca5b79934 fix stupid bug 2020-09-14 20:42:40 +08:00
StageGuard
4e14a0d2c9 fix user infomation 2020-09-13 22:22:30 +08:00
StageGuard
f38adb904f Upload user shared sheets 2020-09-13 22:13:52 +08:00
StageGuard
44aab3f525 Upload user shared sheets 2020-09-13 22:12:16 +08:00
StageGuard
1383f66726 Upload user shared sheets 2020-09-13 22:09:46 +08:00
StageGuard
715e21a420 Fix contributor list 2020-09-13 21:56:15 +08:00
StageGuard
a9cbc2348f Update version 14 2020-09-13 20:55:41 +08:00
StageGuard
13979f81ae Update version 14 2020-09-13 20:54:26 +08:00
StageGuard
8ff1de8e21 Upload user shared sheets 2020-09-13 17:30:27 +08:00
StageGuard
383d79f95b Upload user shared sheets 2020-09-13 17:28:49 +08:00
StageGuard
93918c8a8a Upload resource 2020-09-13 15:30:09 +08:00
StageGuard
8f737fa07b Add resources 2020-09-12 23:40:16 +08:00
StageGuard
32d83d3b3d small change 2020-09-10 20:48:42 +08:00
StageGuard
ae090a2141 small change 2020-09-10 20:47:33 +08:00
StageGuard
e9dc16cf9d Upload user shared sheets 2020-09-06 08:53:12 +08:00
StageGuard
d88424e659 ? 2020-09-05 10:54:55 +08:00
45 changed files with 1310 additions and 669 deletions

View File

@@ -14,9 +14,15 @@ A script to play Sheets generated by SkyStudio automatically in game Sky with ac
* 自动更新及时修复BUG无需担心版本过时问题。
* ...
## 使用
Auto.js开启**无障碍服务**和**悬浮窗权限**。
</br>②在Auto.js中新建一个脚本并粘贴以下代码并运行
## 使用(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>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>Please download `autoJs-V4.1.1.Alpha2-common-armeabi-v7a-debug.apk`
<br>②为Auto.js开启**无障碍服务**和**悬浮窗权限**。
<br>Turn on **Accessibility service** and allow **Display pop-up window** permission for Auto.js
<br>③在Auto.js中新建一个脚本并粘贴以下代码并运行
<br>Create a new script file in Auto.js. Copy the code below and run!
```javascript
"ui";
"use strict";
@@ -42,11 +48,11 @@ emitter.on('evaluate', function(s){
```
在Auto.js版本`4.1.1 Alpha2 (461)`中测试通过,不保证其他版本的兼容性(取决于其他版本相对于此版本的API是否有`breaking changes`)
</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>手机请下载`autoJs-V4.1.1.Alpha2-common-armeabi-v7a-debug.apk`
## 清除数据
SkyAutoPlayer在使用过程中会产生本地数据存储若想全部删除请使用Auto.js执行以下代码
## 清除数据(Clear data)
`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
```
storages.remove("StageGuard:SkyAutoPlayer:Config");
files.removeDir("/storage/emulated/0/Documents/SkyAutoPlayer/");
@@ -71,6 +77,8 @@ files.removeDir("/storage/emulated/0/Documents/SkyAutoPlayer/");
"bpm" : 320,
//暂时没用
"suggested_instrument": 1,
//乐谱键位数(8键或15键)
"keyCount": 15,
//乐谱音高
"pitchLevel": 0
}
@@ -79,6 +87,8 @@ files.removeDir("/storage/emulated/0/Documents/SkyAutoPlayer/");
修改完成后,申请`Pull Request`等待merge即可。
> 请注意:在申请`Pull Request`之前请确保你的SkyAutoPlayerScript仓库已同步至最新以免出现意外问题
或通过发送乐谱到邮箱[beamiscool@qq.com](mailto:beamiscool@qq.com)
<br>
# 注意
@@ -89,6 +99,7 @@ files.removeDir("/storage/emulated/0/Documents/SkyAutoPlayer/");
3. 本脚本仅可用作娱乐用途,请不要在正规场合使用本脚本(请自行体会\"正规场合\"是什么意思)若因使用本脚本所出现了一些不友好的问题与脚本作者StageGuard无关。
4. 脚本只能给你一时满足感而不能使你进步,请适当使用,只有真正的技术才是王道,才能使你感到快乐。
5. 本脚本只是一个"弹奏机"并不内置曲谱请在GooglePlay下载[SkyStudio](https://play.google.com/store/apps/details?id=com.Maple.SkyStudio)编谱。
6. 本脚本不会增加解密乐谱功能,包括但不限于**加密的SkyStudio乐谱****加密的JS**等,也不接受加密乐谱的共享。
# 贡献
欢迎任何人贡献本项目包括但不限于Pull RequestIssueNew feature request
@@ -106,9 +117,12 @@ files.removeDir("/storage/emulated/0/Documents/SkyAutoPlayer/");
酷安[@你们很有趣呢](http://www.coolapk.com/u/2416229)<br>
酷安[@情如风雪无常](http://www.coolapk.com/u/643670)<br>
酷安[@慕疵](http://www.coolapk.com/u/3286967)<br>
酷安[@九方辰](http://www.coolapk.com/u/)<br>
酷安[@社区最弱萌新](http://www.coolapk.com/u/3291313)<br>
酷安[@九方辰](http://www.coolapk.com/u/634078)<br>
酷安[@北极马可罗尼](http://www.coolapk.com/u/463478)<br>
哔哩哔哩[@UTF16](https://space.bilibili.com/623364258)<br>
酷安[@Syngenex](http://www.coolapk.com/u/1093421)<br>
Twitter[Phoebe@huunhut1217](https://mobile.twitter.com/huunhut1217)<br>
<br>
# 图标来源
@@ -136,4 +150,4 @@ files.removeDir("/storage/emulated/0/Documents/SkyAutoPlayer/");
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>
```
```

View File

@@ -1 +1 @@
adca548b639a893c4679a68346a8cb1dbdd330e5
65fdecb9be4821eaa1ef42a71598c250e64a3de5

BIN
resources/filter.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

BIN
resources/search.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

View File

@@ -1,11 +1,354 @@
{
"sheets": [{
"name": "恋爱循环",
"file": "恋爱循环.txt",
"author": "酷安@Syngenex",
"desc": "酷安酷友<a href=http://www.coolapk.com/u/1093421>@Syngenex<a/>分享乐谱 恋爱循环",
"bpm" : 480,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "微微",
"file": "微微.txt",
"author": "酷安@Syngenex",
"desc": "酷安酷友<a href=http://www.coolapk.com/u/1093421>@Syngenex<a/>分享乐谱 微微",
"bpm" : 204,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "Dream It Possible",
"file": "Dream_It_Possible.txt",
"author": "酷安@Syngenex",
"desc": "酷安酷友<a href=http://www.coolapk.com/u/1093421>@Syngenex<a/>分享乐谱 Dream It Possible\n华为加油",
"bpm" : 455,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "Love 5",
"file": "Love_5.txt",
"author": "Phoebe(twitter@huunhut1217)",
"desc": "Twitter用户<a href=https://mobile.twitter.com/huunhut1217>Phoebe(twitter@huunhut1217)<a/>分享乐谱 Love 5",
"bpm" : 600,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 2
}, {
"name": "Co Chac Yeu La Day - MTP",
"file": "Co_Chac_Yeu_La_Day-MTP.txt",
"author": "Phoebe(twitter@huunhut1217)",
"desc": "Twitter用户<a href=https://mobile.twitter.com/huunhut1217>Phoebe(twitter@huunhut1217)<a/>分享乐谱 Co Chac Yeu La Day - MTP",
"bpm" : 720,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 6
}, {
"name": "Hanava",
"file": "Hanava.txt",
"author": "Phoebe(twitter@huunhut1217)",
"desc": "Twitter用户<a href=https://mobile.twitter.com/huunhut1217>Phoebe(twitter@huunhut1217)<a/>分享乐谱 Hanava",
"bpm" : 800,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 10
}, {
"name": "Summertime",
"file": "Summertime.txt",
"author": "Phoebe(twitter@huunhut1217)",
"desc": "Twitter用户<a href=https://mobile.twitter.com/huunhut1217>Phoebe(twitter@huunhut1217)<a/>分享乐谱 Summertime",
"bpm" : 850,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 2
}, {
"name": "See You Again (Stb)",
"file": "See_You_Again_(Stb).txt",
"author": "Phoebe(twitter@huunhut1217)",
"desc": "Twitter用户<a href=https://mobile.twitter.com/huunhut1217>Phoebe(twitter@huunhut1217)<a/>分享乐谱 See You Again (Stb)",
"bpm" : 280,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "不知所措",
"file": "不知所措.txt",
"author": "哔哩哔哩@UTF16",
"desc": "哔哩哔哩用户<a href=https://space.bilibili.com/623364258>@UTF16<a/>分享乐谱 不知所措",
"bpm" : 300,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "那女孩对我说",
"file": "那女孩对我说.txt",
"author": "哔哩哔哩@UTF16",
"desc": "哔哩哔哩用户<a href=https://space.bilibili.com/623364258>@UTF16<a/>分享乐谱 那女孩对我说",
"bpm" : 190,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "演员",
"file": "演员.txt",
"author": "哔哩哔哩@UTF16",
"desc": "哔哩哔哩用户<a href=https://space.bilibili.com/623364258>@UTF16<a/>分享乐谱 演员",
"bpm" : 240,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "追光者",
"file": "追光者.txt",
"author": "酷安@Syngenex",
"desc": "酷安酷友<a href=http://www.coolapk.com/u/1093421>@Syngenex<a/>分享乐谱 追光者",
"bpm" : 286,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "走马",
"file": "走马.txt",
"author": "酷安@Syngenex",
"desc": "酷安酷友<a href=http://www.coolapk.com/u/1093421>@Syngenex<a/>分享乐谱 走马",
"bpm" : 289,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "Mojito",
"file": "Mojito.txt",
"author": "酷安@Syngenex",
"desc": "酷安酷友<a href=http://www.coolapk.com/u/1093421>@Syngenex<a/>分享乐谱 Mojito",
"bpm" : 245,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "下雨天",
"file": "下雨天.txt",
"author": "哔哩哔哩@UTF16",
"desc": "哔哩哔哩用户<a href=https://space.bilibili.com/623364258>@UTF16<a/>分享乐谱 下雨天",
"bpm" : 207,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "极乐净土(和弦)",
"file": "极乐净土(和弦).txt",
"author": "酷安@Syngenex",
"desc": "酷安酷友<a href=http://www.coolapk.com/u/1093421>@Syngenex<a/>分享乐谱 极乐净土(和弦)",
"bpm" : 532,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "极乐净土(无和弦)",
"file": "极乐净土(无和弦).txt",
"author": "酷安@Syngenex",
"desc": "酷安酷友<a href=http://www.coolapk.com/u/1093421>@Syngenex<a/>分享乐谱 极乐净土(无和弦)",
"bpm" : 532,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "童话镇",
"file": "童话镇.txt",
"author": "哔哩哔哩@UTF16",
"desc": "哔哩哔哩用户<a href=https://space.bilibili.com/623364258>@UTF16<a/>分享乐谱 童话镇",
"bpm" : 240,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "体面",
"file": "体面.txt",
"author": "哔哩哔哩@UTF16",
"desc": "哔哩哔哩用户<a href=https://space.bilibili.com/623364258>@UTF16<a/>分享乐谱 体面",
"bpm" : 241,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "阿珍爱上了阿强",
"file": "阿珍爱上了阿强_UTF16.txt",
"author": "哔哩哔哩@UTF16",
"desc": "哔哩哔哩用户<a href=https://space.bilibili.com/623364258>@UTF16<a/>分享乐谱 阿珍爱上了阿强",
"bpm" : 197,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "虫儿飞儿歌",
"file": "虫儿飞儿歌_UTF16.txt",
"author": "哔哩哔哩@UTF16",
"desc": "哔哩哔哩用户<a href=https://space.bilibili.com/623364258>@UTF16<a/>分享乐谱 虫儿飞儿歌",
"bpm" : 240,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "辞乆门回忆",
"file": "辞乆门回忆_UTF16.txt",
"author": "哔哩哔哩@UTF16",
"desc": "哔哩哔哩用户<a href=https://space.bilibili.com/623364258>@UTF16<a/>分享乐谱 辞乆门回忆",
"bpm" : 270,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "打上花火",
"file": "打上花火_UTF16.txt",
"author": "哔哩哔哩@UTF16",
"desc": "哔哩哔哩用户<a href=https://space.bilibili.com/623364258>@UTF16<a/>分享乐谱 打上花火",
"bpm" : 300,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "大悲咒",
"file": "大悲咒_UTF16.txt",
"author": "哔哩哔哩@UTF16",
"desc": "哔哩哔哩用户<a href=https://space.bilibili.com/623364258>@UTF16<a/>分享乐谱 大悲咒",
"bpm" : 230,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "好运来HX",
"file": "好运来HX_UTF16.txt",
"author": "哔哩哔哩@UTF16",
"desc": "哔哩哔哩用户<a href=https://space.bilibili.com/623364258>@UTF16<a/>分享乐谱 好运来HX",
"bpm" : 240,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "幻昼CH",
"file": "幻昼CH_UTF16.txt",
"author": "哔哩哔哩@UTF16",
"desc": "哔哩哔哩用户<a href=https://space.bilibili.com/623364258>@UTF16<a/>分享乐谱 幻昼CH",
"bpm" : 200,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "偏爱",
"file": "偏爱_UTF16.txt",
"author": "哔哩哔哩@UTF16",
"desc": "哔哩哔哩用户<a href=https://space.bilibili.com/623364258>@UTF16<a/>分享乐谱 偏爱",
"bpm" : 220,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "四月是你的谎言",
"file": "四月是你的谎言_UTF16.txt",
"author": "哔哩哔哩@UTF16",
"desc": "哔哩哔哩用户<a href=https://space.bilibili.com/623364258>@UTF16<a/>分享乐谱 四月是你的谎言",
"bpm" : 240,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "误红装A1",
"file": "误红装A1_UTF16.txt",
"author": "哔哩哔哩@UTF16",
"desc": "哔哩哔哩用户<a href=https://space.bilibili.com/623364258>@UTF16<a/>分享乐谱 误红装A1",
"bpm" : 200,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "夏天的风",
"file": "夏天的风_UTF16.txt",
"author": "哔哩哔哩@UTF16",
"desc": "哔哩哔哩用户<a href=https://space.bilibili.com/623364258>@UTF16<a/>分享乐谱 夏天的风",
"bpm" : 220,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "夏天的风GF",
"file": "夏天的风GF_UTF16.txt",
"author": "哔哩哔哩@UTF16",
"desc": "哔哩哔哩用户<a href=https://space.bilibili.com/623364258>@UTF16<a/>分享乐谱 夏天的风GF",
"bpm" : 220,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "小星星",
"file": "小星星_UTF16.txt",
"author": "哔哩哔哩@UTF16",
"desc": "哔哩哔哩用户<a href=https://space.bilibili.com/623364258>@UTF16<a/>分享乐谱 小星星",
"bpm" : 240,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "心作",
"file": "心作_UTF16.txt",
"author": "哔哩哔哩@UTF16",
"desc": "哔哩哔哩用户<a href=https://space.bilibili.com/623364258>@UTF16<a/>分享乐谱 心作",
"bpm" : 240,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "雨林",
"file": "雨林_UTF16.txt",
"author": "哔哩哔哩@UTF16",
"desc": "哔哩哔哩用户<a href=https://space.bilibili.com/623364258>@UTF16<a/>分享乐谱 雨林",
"bpm" : 249,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "猪猪侠",
"file": "猪猪侠_UTF16.txt",
"author": "哔哩哔哩@UTF16",
"desc": "哔哩哔哩用户<a href=https://space.bilibili.com/623364258>@UTF16<a/>分享乐谱 猪猪侠",
"bpm" : 280,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "もペもぺmopemope",
"file": "もペもぺmopemope.txt",
"author": "酷安@夏卡卡卡",
"desc": "酷安酷友<a href=http://www.coolapk.com/u/2313452>@夏卡卡卡<a/>分享乐谱 もペもぺmopemope\n一首音游玩家熟悉的、好听的儿歌(并不)\n非完整版",
"bpm" : 400,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 7
}, {
"name": "[IPhone]马林巴琴",
"file": "IPhone马林巴琴.txt",
"author": "酷安@夏卡卡卡",
"desc": "酷安酷友<a href=http://www.coolapk.com/u/2313452>@夏卡卡卡<a/>分享乐谱 [IPhone]马林巴琴",
"bpm" : 660,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "穿越时空的思念",
"file": "穿越时空的思念.txt",
"author": "酷安@北极马可罗尼",
"desc": "酷安酷友<a href=http://www.coolapk.com/u/463478>@北极马可罗尼<a/>分享乐谱 穿越时空的思念",
"bpm" : 160,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "不染",
"file": "不染_enhanced.txt",
"author": "酷安@九方辰",
"desc": "酷安酷友<a href=http://www.coolapk.com/u/634078>酷安@九方辰<a/>分享乐谱 不染\n原作者为 抖音用户@子哲啊🌈(zizhe1880689503) \n 完善后续,修改了杂音",
"bpm" : 150,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "Souvevirs d'Enfance\n童年的回忆",
@@ -14,6 +357,7 @@
"desc": "酷安酷友<a href=http://www.coolapk.com/u/2416229>酷安@你们很有趣呢<a/>分享乐谱\n Souvevirs d'Enfance童年的回忆\n作者理查德·克莱德曼Richard Clayderman又名爱的记忆\n曲子比原曲慢了一点点建议加速播放",
"bpm" : 720,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 7
}, {
"name": "Canon卡农 C大调 简易版",
@@ -22,6 +366,7 @@
"desc": "酷安酷友<a href=http://www.coolapk.com/u/2313452>@夏卡卡卡<a/>分享乐谱 Canon卡农 C大调 简易版",
"bpm" : 300,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "九九八十一",
@@ -30,6 +375,7 @@
"desc": "酷安酷友<a href=http://www.coolapk.com/u/3286967>@慕疵<a/>分享乐谱 九九八十一",
"bpm" : 550,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "Коробейники (货郎)\n俄罗斯方块BGM",
@@ -38,6 +384,7 @@
"desc": "酷安酷友<a href=http://www.coolapk.com/u/2313452>@夏卡卡卡<a/>分享乐谱 Коробейники (货郎)",
"bpm" : 720,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "土耳其进行曲(莫扎特)",
@@ -46,6 +393,7 @@
"desc": "酷安酷友<a href=http://www.coolapk.com/u/2313452>@夏卡卡卡<a/>分享乐谱 土耳其进行曲(莫扎特)",
"bpm" : 528,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "The truth that you leave\n你离开的事实",
@@ -54,6 +402,7 @@
"desc": "酷安酷友<a href=http://www.coolapk.com/u/643670>@情如风雪如常<a/>分享乐谱 The truth that you leave",
"bpm" : 520,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 11
}, {
"name": "名侦探柯南",
@@ -62,6 +411,7 @@
"desc": "酷安酷友<a href=http://www.coolapk.com/u/643670>@情如风雪如常<a/>分享乐谱 名侦探柯南",
"bpm" : 511,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 8
}, {
"name": "Unity",
@@ -70,6 +420,7 @@
"desc": "酷安酷友<a href=http://www.coolapk.com/u/2313452>@夏卡卡卡<a/>分享乐谱 Unity",
"bpm" : 600,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "大鱼(简易)",
@@ -78,6 +429,7 @@
"desc": "酷安酷友<a href=http://www.coolapk.com/u/2313452>@夏卡卡卡<a/>分享乐谱 大鱼(简易)",
"bpm" : 288,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "嘿咻狂想曲",
@@ -86,6 +438,7 @@
"desc": "酷安酷友<a href=http://www.coolapk.com/u/2313452>@夏卡卡卡<a/>分享乐谱 嘿咻狂想曲\n<b>I love you🎵 , I miss you🎵</b>\n<u>建议在雨林右侧副本的隐藏图(两人掉下去那个),释放蝴蝶后弹奏</u>",
"bpm" : 480,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 5
}, {
"name": "城南花已开",
@@ -94,6 +447,7 @@
"desc": "酷安酷友<a href=http://www.coolapk.com/u/2313452>@夏卡卡卡<a/>分享乐谱 城南花已开",
"bpm" : 480,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "撒野完整版",
@@ -102,6 +456,7 @@
"desc": "酷安酷友<a href=http://www.coolapk.com/u/3005974>@深空失忆か<a/>分享乐谱 撒野完整版",
"bpm" : 240,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "婚礼进行曲(整活用)",
@@ -110,6 +465,7 @@
"desc": "酷安酷友<a href=http://www.coolapk.com/u/2313452>@夏卡卡卡<a/>分享乐谱 婚礼进行曲(整活用)(简易版)\n<b>不推荐在别人递白蜡烛🕯时使用,因为会导致画面极度生草,且伴有顺着网线被暴打一顿的风险,没听懂的话我再强调一遍( 滑稽 )</b>",
"bpm" : 280,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "Graze the Roof",
@@ -118,6 +474,7 @@
"desc": "酷安酷友<a href=http://www.coolapk.com/u/2313452>@夏卡卡卡<a/>分享乐谱 Graze the Roof\n游戏《植物大战僵尸》(Plants vs. Zombies Soundtrack) 屋顶关卡背景音乐",
"bpm" : 520,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 8
}, {
"name": "Only My Railgun",
@@ -126,6 +483,7 @@
"desc": "酷安酷友<a href=http://www.coolapk.com/u/2313452>@夏卡卡卡<a/>分享乐谱 Only My Railgun \n(TVアニメ「とある科学の超電磁砲」OP1テーマ) \n你指尖跳跃的电光是我此生不灭的信仰",
"bpm" : 440,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "生命之名(いのちの名前)",
@@ -134,6 +492,7 @@
"desc": "酷安酷友<a href=http://www.coolapk.com/u/2416229>酷安@你们很有趣呢<a/>分享乐谱\n 生命之名(いのちの名前)\n(千と千寻の神隠し插曲One Summers Day完整版)\n这是我第一次的手编谱可能有些音转的不完美。\nPs:这谱很长很长,而且越弹到后面越不对劲。",
"bpm" : 595,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 1
}, {
"name": "Martin Ermen - River Flows in You",
@@ -142,6 +501,7 @@
"desc": "没写outro",
"bpm" : 572,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 4
}, {
"name": "神々が恋した幻想郷(修改版)",
@@ -150,6 +510,7 @@
"desc": "源谱来自酷安酷友<a href=http://www.coolapk.com/u/2313452>@夏卡卡卡<a/>\n稍作修改使节奏更接近原曲\n(过一段时间出完整版)",
"bpm" : 512,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 5
}, {
"name": "猪八戒背媳妇(简易单指)",
@@ -158,6 +519,7 @@
"desc": "酷安酷友<a href=http://www.coolapk.com/u/2313452>@夏卡卡卡<a/>分享乐谱 猪八戒背媳妇(简易单指)\n背 背 友 尽 曲 ",
"bpm" : 440,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "猪八戒背媳妇",
@@ -166,6 +528,7 @@
"desc": "酷安酷友<a href=http://www.coolapk.com/u/2313452>@夏卡卡卡<a/>分享乐谱 猪八戒背媳妇\n背 背 友 尽 曲 ",
"bpm" : 440,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "夜的钢琴曲(五)",
@@ -174,6 +537,7 @@
"desc": "酷安酷友<a href=http://www.coolapk.com/u/2313452>@夏卡卡卡<a/>分享乐谱 夜的钢琴曲(五)\n<u>应尽量避免洞穴效应</u>",
"bpm" : 400,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 3
}, {
"name": "雨的印记Kiss the Rain)",
@@ -182,6 +546,7 @@
"desc": "酷安酷友<a href=http://www.coolapk.com/u/2416229>酷安@你们很有趣呢<a/>分享乐谱\n 雨的印记Kiss the Rain)\n初始手编作更多谱子即将到来。",
"bpm" : 225,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 9
}, {
"name": "The Right Path",
@@ -190,6 +555,7 @@
"desc": "酷安酷友<a href=http://www.coolapk.com/u/2313452>@夏卡卡卡<a/>分享乐谱 The Right Path",
"bpm" : 500,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 10
}, {
"name": "[C418]Danny (Minecraft BGM)",
@@ -198,6 +564,7 @@
"desc": "酷安酷友<a href=http://www.coolapk.com/u/2313452>@夏卡卡卡<a/>分享乐谱 [C418]Danny (Minecraft BGM)",
"bpm" : 320,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "[C418]Wet Hands (Minecraft BGM)",
@@ -206,6 +573,7 @@
"desc": "酷安酷友<a href=http://www.coolapk.com/u/2313452>@夏卡卡卡<a/>分享乐谱 [C418]Wet Hands (Minecraft BGM)",
"bpm" : 272,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 9
}, {
"name": "[C418]Hal2 (Minecraft BGM)",
@@ -214,6 +582,7 @@
"desc": "酷安酷友<a href=http://www.coolapk.com/u/2313452>@夏卡卡卡<a/>分享乐谱 [C418]Hal2 (Minecraft BGM)",
"bpm" : 300,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "MIUI铃声(循环)",
@@ -222,6 +591,7 @@
"desc": "酷安酷友<a href=http://www.coolapk.com/u/2313452>@夏卡卡卡<a/>分享乐谱 MIUI铃声(循环)",
"bpm" : 280,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "美丽拍档(朱一旦枯燥曲)",
@@ -230,6 +600,7 @@
"desc": "酷安酷友<a href=http://www.coolapk.com/u/2313452>@夏卡卡卡<a/>分享乐谱 \n美丽拍档(朱一旦枯燥曲)",
"bpm" : 266,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "Flower Dance",
@@ -238,6 +609,7 @@
"desc": "酷安酷友<a href=http://www.coolapk.com/u/2313452>@夏卡卡卡<a/>分享乐谱 Flower Dance",
"bpm" : 400,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 11
}, {
"name": "不染",
@@ -246,6 +618,7 @@
"desc": "抖音用户@子哲啊🌈(zizhe1880689503)上传乐谱 不染",
"bpm" : 150,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "赤岭",
@@ -254,6 +627,7 @@
"desc": "抖音用户@子哲啊🌈(zizhe1880689503)上传乐谱 赤岭",
"bpm" : 145,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "大鱼海棠",
@@ -262,6 +636,7 @@
"desc": "抖音用户@子哲啊🌈(zizhe1880689503)上传乐谱 大鱼海棠",
"bpm" : 123,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "失眠飞行t",
@@ -270,6 +645,7 @@
"desc": "抖音用户@子哲啊🌈(zizhe1880689503)上传乐谱 失眠飞行t",
"bpm" : 200,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "千本桜",
@@ -278,6 +654,7 @@
"desc": "酷安酷友<a href=http://www.coolapk.com/u/2313452>@夏卡卡卡<a/>分享乐谱 千本桜",
"bpm" : 614,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 5
}, {
"name": "神々が恋した幻想郷",
@@ -286,6 +663,7 @@
"desc": "越共探头(\n酷安酷友<a href=http://www.coolapk.com/u/2313452>@夏卡卡卡<a/>分享乐谱 神々が恋した幻想郷",
"bpm" : 256,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 5
}, {
"name": "Vicetone - Nevada",
@@ -294,6 +672,7 @@
"desc": "Nevada SkyStudio钢琴版。\n内包含<u>比较复杂的和弦</u>,不适合手弹(笑\n你可以在SkyStudio的练习模式试试[狗头]",
"bpm" : 497,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 3
}, {
"name": "TK from Ling tosite sigure - Unravel",
@@ -302,6 +681,7 @@
"desc": "TK from Ling tosite sigure - Unravel钢琴版。\n咕了很长时间的Unravel终于整完了\n难度适中(指比Nevada简单一点)\n有些地方实在不知道该怎么谱所以有一点点瑕疵啦",
"bpm" : 530,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 10
}, {
"name": "[CL]だんご大家族",
@@ -310,6 +690,7 @@
"desc": "<b>写作CL译作经典拼读人生。</b>\n酷安酷友<a href=http://www.coolapk.com/u/2313452>@夏卡卡卡<a/>分享乐谱 だんご大家族",
"bpm" : 200,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 6
}, {
"name": "いつも何度でも (「千と千尋の神隠し」主題歌)",
@@ -318,6 +699,7 @@
"desc": "酷安酷友<a href=http://www.coolapk.com/u/2313452>@夏卡卡卡<a/>分享乐谱 いつも何度でも \n(「千と千尋の神隠し」主題歌)",
"bpm" : 230,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 5
}, {
"name": "[钢琴曲]潮鸣り(原速)",
@@ -326,6 +708,7 @@
"desc": "酷安酷友<a href=http://www.coolapk.com/u/2313452>@夏卡卡卡<a/>分享乐谱 [钢琴曲]潮鸣り(原速)\n<b>只建议用钢琴演奏原速</b>\n如需切合其他乐器请<u>通过Sky Studio修改更高的速度</u>",
"bpm" : 108,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "Lemon",
@@ -334,6 +717,7 @@
"desc": "酷安酷友<a href=http://www.coolapk.com/u/3005974>@深空失忆か<a/>分享乐谱 Lemon",
"bpm" : 500,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "克罗地亚狂想曲",
@@ -342,6 +726,7 @@
"desc": "酷安酷友<a href=http://www.coolapk.com/u/3005974>@深空失忆か<a/>分享乐谱 克罗地亚狂想曲",
"bpm" : 720,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 3
}, {
"name": "斗地主",
@@ -350,6 +735,7 @@
"desc": "酷安酷友<a href=http://www.coolapk.com/u/3005974>@深空失忆か<a/>分享乐谱 斗地主",
"bpm" : 240,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 10
}, {
"name": "黑人抬棺Astronomia",
@@ -358,6 +744,7 @@
"desc": "酷安酷友<a href=http://www.coolapk.com/u/3005974>@深空失忆か<a/>分享乐谱 黑人抬棺Astronomia",
"bpm" : 240,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 10
}, {
"name": "简易茉莉花",
@@ -366,6 +753,7 @@
"desc": "酷安酷友<a href=http://www.coolapk.com/u/2313452>@夏卡卡卡<a/>分享乐谱 简易茉莉花\n建议在由洞穴效应的地方弹;最后的部分因音高问题进行了小修改",
"bpm" : 200,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "大悲咒",
@@ -374,6 +762,7 @@
"desc": "酷安酷友<a href=http://www.coolapk.com/u/1286879>@Aex技术总监</a>分享乐谱 大悲咒",
"bpm" : 151,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 3
}, {
"name": "坏苹果",
@@ -382,6 +771,7 @@
"desc": "酷安酷友<a href=http://www.coolapk.com/u/1286879>@Aex技术总监</a>分享乐谱 坏苹果",
"bpm" : 720,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 6
}, {
"name": "三葉",
@@ -390,6 +780,7 @@
"desc": "酷安酷友<a href=http://www.coolapk.com/u/1286879>@Aex技术总监</a>分享乐谱 三葉",
"bpm" : 318,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 0
}, {
"name": "亡灵序曲选节",
@@ -398,6 +789,7 @@
"desc": "酷安酷友<a href=http://www.coolapk.com/u/1286879>@Aex技术总监</a>分享乐谱 亡灵序曲选节",
"bpm" : 240,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 6
}, {
"name": "天空之城",
@@ -406,6 +798,7 @@
"desc": "酷安酷友<a href=http://www.coolapk.com/u/1286879>@Aex技术总监</a>分享乐谱 天空之城",
"bpm" : 240,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 3
}, {
"name": "幻昼",
@@ -414,6 +807,7 @@
"desc": "酷安酷友<a href=http://www.coolapk.com/u/1286879>@Aex技术总监</a>分享乐谱 幻昼",
"bpm" : 281,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 10
}, {
"name": "烟花易冷",
@@ -422,6 +816,7 @@
"desc": "酷安酷友<a href=http://www.coolapk.com/u/1286879>@Aex技术总监</a>分享乐谱 烟花易冷",
"bpm" : 132,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 4
}, {
"name": "菊次郎的夏天",
@@ -430,6 +825,7 @@
"desc": "酷安酷友<a href=http://www.coolapk.com/u/1286879>@Aex技术总监</a>分享乐谱 菊次郎的夏天",
"bpm" : 349,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 2
}, {
"name": "起风了",
@@ -438,6 +834,7 @@
"desc": "酷安酷友<a href=http://www.coolapk.com/u/1286879>@Aex技术总监</a>分享乐谱 起风了",
"bpm" : 236,
"suggested_instrument": 1,
"keyCount": 15,
"pitchLevel": 6
}]
}

Binary file not shown.

Binary file not shown.

BIN
shared_sheets/Hanava.txt Normal file

Binary file not shown.

Binary file not shown.

BIN
shared_sheets/Love_5.txt Normal file

Binary file not shown.

BIN
shared_sheets/Mojito.txt Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
shared_sheets/下雨天.txt Normal file

Binary file not shown.

Binary file not shown.

BIN
shared_sheets/体面.txt Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
shared_sheets/微微.txt Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
shared_sheets/演员.txt Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
shared_sheets/童话镇.txt Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
shared_sheets/走马.txt Normal file

Binary file not shown.

Binary file not shown.

BIN
shared_sheets/追光者.txt Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@@ -1,3 +1,14 @@
版本: 15
更新时间: 2020.10.01 00:00
更新内容:
* 新增8键位乐谱支持
版本: 14
更新时间: 2020.09.13 20:51
更新内容:
* 新增:共享乐谱支持搜索功能
* 改善:窗口拓展功能
版本: 13
更新时间: 2020.09.05 10:46
更新内容: