forked from chavyleung/scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbox.release.json
More file actions
1586 lines (1586 loc) · 47 KB
/
box.release.json
File metadata and controls
1586 lines (1586 loc) · 47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"releases": [
{
"version": "0.7.58",
"tags": ["beta"],
"author": "@chavyleung",
"msg": "更新[BoxJs]: 刷新订阅添加时间缀避免网络缓存",
"notes": [
{
"name": "优化",
"descs": ["BoxJs 内的请求会可以被重写", "刷新订阅添加时间缀避免网络缓存"]
}
]
},
{
"version": "0.7.56",
"tags": ["beta"],
"author": "@chavyleung",
"msg": "更新[BoxJs TF]: 修复一处导致白屏逻辑",
"notes": [
{
"name": "修复",
"descs": ["修复一处导致白屏逻辑"]
}
]
},
{
"version": "0.7.55",
"tags": ["beta"],
"author": "@chavyleung",
"msg": "更新[BoxJs TF]: 顶栏和底栏可以设置跟随滚动",
"notes": [
{
"name": "新增",
"descs": ["顶栏和底栏可以设置跟随滚动"]
}
]
},
{
"version": "0.7.54",
"tags": ["beta"],
"author": "@id77",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"msg": "更新[BoxJs TF]: 侧栏增加新的贡献者 @id77",
"notes": [
{
"name": "贡献者",
"descs": ["新的贡献者 @id77"]
}
]
},
{
"version": "0.7.53",
"tags": ["beta"],
"author": "@GideonSenku",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"msg": "更新[BoxJs TF]: 跟随系统壁纸设置同时支持中英文",
"notes": [
{
"name": "新增",
"descs": ["跟随系统壁纸设置支持中英文,且优先考虑中文关键字"]
},
{
"name": "说明",
"descs": ["中文关键字为`暗黑`和`明亮`,英文关键字不变"]
}
]
},
{
"version": "0.7.52",
"tags": ["beta"],
"author": "@id77 @chavyleung",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"msg": "更新[BoxJs TF]: 删除备份后直接回到首页问题",
"notes": [
{
"name": "移除",
"descs": ["主屏幕的左右滑动手势", "原因: 与浏览器前进后退容易发生冲突"]
},
{
"name": "修复",
"descs": ["删除备份后直接回到首页问题"]
},
{
"name": "优化",
"descs": ["页面后退事件逻辑", "部分侧栏设置的小字说明"]
}
]
},
{
"version": "0.7.49",
"tags": ["beta"],
"author": "@GideonSenku",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"msg": "更新[BoxJs TF]: 修复主屏左滑时与侧栏冲突问题",
"notes": [
{
"name": "新增",
"descs": ["背景图片可跟随系统调整"]
},
{
"name": "调整",
"descs": ["背景清单图片默认`无`更改为`跟随系统`"]
},
{
"name": "修复",
"descs": ["主屏左滑时与侧栏冲突问题"]
},
{
"name": "说明",
"descs": ["背景图片清单中设置:无{换行} 跟随系统,跟随系统{换行} light,图片地址{换行} dark,图片地址{换行}", "如果不设置`跟随系统,跟随系统`,则默认跟随系统为无背景"]
}
]
},
{
"version": "0.7.47",
"tags": ["beta"],
"author": "@chavyleung",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"msg": "更新[BoxJs TF]: 修复代码编辑器高度, 部分界面左右滑动范围问题",
"notes": [
{
"name": "修复",
"descs": ["代码编辑器高度问题", "部分界面只能在有内容的范围左右滑动问题"]
}
]
},
{
"version": "0.7.46",
"tags": ["beta"],
"author": "@chavyleung",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"msg": "更新[BoxJs TF]: 移除滑动动画, 勿扰模式不弹脚本执行结果页, 操作优化",
"notes": [
{
"name": "优化",
"descs": ["勿扰模式下运行脚本不弹出结果页", "壁纸模式下滑更容易退出壁纸模式"]
},
{
"name": "移除",
"descs": ["左右滑动切换页面的动画"]
}
]
},
{
"version": "0.7.45",
"tags": ["beta"],
"author": "@chavyleung",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"msg": "更新[BoxJs TF]: 修复脚本执行结果、更新日志页面位置不正确, 主页左滑进入壁纸模式",
"notes": [
{
"name": "新增",
"descs": ["主页左滑进入壁纸模式"]
},
{
"name": "修复",
"descs": ["脚本执行结果、更新日志页面位置不正确"]
}
]
},
{
"version": "0.7.44",
"tags": ["beta"],
"author": "@chavyleung",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"msg": "更新[BoxJs TF]: 主屏幕左右滑动可切换 首页、应用、订阅、我的 页面",
"notes": [
{
"name": "新增",
"descs": ["Surge、QuanX、Loon 手动运行脚本时都可以显示执行结果", "主屏幕左右滑动可切换 首页、应用、订阅、我的 页面"]
},
{
"name": "修复",
"descs": ["全局搜索结果位置不正确问题"]
}
]
},
{
"version": "0.7.43",
"tags": ["beta"],
"author": "@chavyleung",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"msg": "更新[BoxJs TF]: 修复非壁纸模式下上滑仍然重新渲染壁纸",
"notes": [
{
"name": "新增",
"descs": ["在顶栏上滑可隐藏顶栏", "在底栏下滑可以隐藏底栏", "壁纸模式上滑可以重新渲染壁纸"]
},
{
"name": "修复",
"descs": ["代码编辑器不显示问题", "二次进入搜索界面无法自动获取焦点", "非壁纸模式下上滑仍然重新渲染壁纸"]
}
]
},
{
"version": "0.7.41",
"tags": ["beta"],
"author": "@chavyleung",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"msg": "更新[BoxJs TF]: 修复顶栏隐藏时图标没往上挪, 悬浮按钮上滑切壁纸, 壁纸模式隐藏悬浮按钮",
"notes": [
{
"name": "优化",
"descs": ["壁纸模式会把悬浮按钮也隐藏起来"]
},
{
"name": "修复",
"descs": ["顶栏隐藏时图标没有往上挪"]
},
{
"name": "悬浮按钮手势",
"descs": ["上滑: 重渲染&切换壁纸", "左滑: 悬浮按钮左靠", "右滑: 悬浮按钮右靠", "下滑: 切换壁纸模式"]
},
{
"name": "说明",
"descs": ["壁纸模式下: 下滑取消壁纸模式", "非壁纸模式: 下滑显示\\隐藏顶栏"]
}
]
},
{
"version": "0.7.40",
"tags": ["beta"],
"author": "@chavyleung",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"msg": "更新[BoxJs TF]: 新增壁纸模式、悬浮按钮手势",
"notes": [
{
"name": "新增",
"descs": ["壁纸模式", "悬浮按钮手势"]
},
{
"name": "悬浮按钮手势",
"descs": ["上滑: 刷新页面 (效果同双击)", "左滑: 悬浮按钮左靠", "右滑: 悬浮按钮右靠", "下滑: 切换壁纸模式"]
}
]
},
{
"version": "0.7.39",
"tags": ["beta"],
"author": "@chavyleung",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"msg": "更新[BoxJs TF]: 修复部分情况下拉出顶栏事件失效问题",
"notes": [
{
"name": "修复",
"descs": ["部分情况下拉出顶栏事件失效问题"]
},
{
"name": "优化",
"descs": ["原来顶部的加载条移到底栏上方"]
}
]
},
{
"version": "0.7.38",
"tags": ["beta"],
"author": "@chavyleung",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"msg": "更新[BoxJs TF]: 新增 Surge HTTP-API 环境下运行脚本会显示运行结果",
"notes": [
{
"name": "新增",
"descs": ["Surge HTTP-API 环境下运行脚本会显示运行结果"]
},
{
"name": "优化",
"descs": ["页面样式"]
},
{
"name": "移除",
"descs": ["顶栏跟随滚动"]
}
]
},
{
"version": "0.7.37",
"tags": ["beta"],
"author": "@chavyleung",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"msg": "更新[BoxJs TF]: 应用标题加阴影, 优化调试代码, 单击首页重渲染壁纸",
"notes": [
{
"name": "优化",
"descs": ["应用标题加阴影"]
},
{
"name": "调试",
"descs": ["优化代码"]
},
{
"name": "新增",
"descs": ["单击首页回到顶部, 再单击一次重新渲染壁纸"]
},
{
"name": "壁纸",
"descs": ["无背景,", "随机,https://uploadbeta.com/api/pictures/random", "推女郎,https://uploadbeta.com/api/pictures/random/?key=推女郎", "性感,https://uploadbeta.com/api/pictures/random/?key=性感", "车模,https://uploadbeta.com/api/pictures/random/?key=车模", "美腿,https://uploadbeta.com/api/pictures/random/?key=美腿", "美女,https://uploadbeta.com/api/pictures/random/?key=美女", "手机妹子,http://api.btstu.cn/sjbz/zsy.php", "手机美女,http://api.btstu.cn/sjbz/?m_lx=suiji"]
}
]
},
{
"version": "0.7.36",
"tags": ["beta"],
"author": "@chavyleung",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"notes": [
{
"name": "新增",
"descs": ["下拉显示&隐藏搜索栏"]
},
{
"name": "优化",
"descs": ["固定背景"]
},
{
"name": "修复",
"descs": ["搜索栏高度问题"]
}
]
},
{
"version": "0.7.35",
"tags": ["beta"],
"author": "@chavyleung",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"notes": [
{
"name": "调试",
"descs": ["调试模式下支持自定义页面源码地址"]
},
{
"name": "修复",
"descs": ["底栏事件无效问题", "部分情况下贡献者重复加载问题", "手势前进后退会白屏&卡屏问题"]
}
]
},
{
"version": "0.7.33",
"tags": ["beta"],
"author": "@chavyleung",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"notes": [
{
"name": "优化",
"descs": ["支持前进、后退", "WebApp 状态下刷新能留在当前页面"]
},
{
"name": "修复",
"descs": ["侧栏拉不到底缺陷"]
},
{
"name": "调试",
"descs": ["支持 vue devtool (侧栏开启调试模式)"]
},
{
"name": "感谢",
"descs": ["感谢 @id77 大佬 PR"]
}
]
},
{
"version": "0.7.30",
"tags": ["beta"],
"author": "@chavyleung",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"notes": [
{
"name": "优化",
"descs": ["首页背景可以一直固定住"]
},
{
"name": "感谢",
"descs": ["感谢 @id77 大佬 PR"]
}
]
},
{
"version": "0.7.29",
"tags": ["beta"],
"author": "@chavyleung",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"notes": [
{
"name": "代码编辑器",
"descs": ["Surge HTTP-API 环境下执行的代码能显示响应内容"]
}
]
},
{
"version": "0.7.28",
"tags": ["beta"],
"author": "@chavyleung",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"notes": [
{
"name": "优化",
"descs": ["数据后端渲染", "更快更平顺的首页加载", "不闪屏了"]
},
{
"name": "感谢",
"descs": ["感谢 @eslint 大佬提供帮助"]
}
]
},
{
"version": "0.7.27",
"tags": ["beta"],
"author": "@chavyleung",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"notes": [
{
"name": "优化",
"descs": ["首页样式", "操作体验"]
},
{
"name": "首页",
"descs": ["顶栏透明", "可以隐藏顶栏", "顶栏可以固定或跟随滚动"]
},
{
"name": "悬浮按钮",
"descs": ["增加搜索入口"]
}
]
},
{
"version": "0.7.26",
"tags": ["beta"],
"author": "@chavyleung",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"notes": [
{
"name": "调整",
"descs": ["搜索条样式", "搜索操作界面"]
}
]
},
{
"version": "0.7.24",
"tags": ["beta"],
"author": "@chavyleung",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"notes": [
{
"name": "修复",
"descs": ["解决首屏闪屏问题", "解决图标白边问题", "导入会话报错"]
},
{
"name": "感谢",
"descs": ["感谢 @eslint 大佬提供帮助"]
}
]
},
{
"version": "0.7.21",
"tags": ["beta"],
"author": "@chavyleung",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"notes": [
{
"name": "新增",
"descs": ["一键清空会话数据"]
},
{
"name": "优化",
"descs": ["壁纸状态下图标字体颜色为白色", "其他样式优化"]
}
]
},
{
"version": "0.7.20",
"tags": ["beta"],
"author": "@chavyleung",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"notes": [
{
"name": "优化",
"descs": ["勿扰模式下, 不再忽略手动执行脚本时发出的系统通知"]
},
{
"name": "新增",
"descs": ["可以设置多张壁纸 (偏好设置)"]
},
{
"name": "注意",
"descs": ["设置多张壁纸后,在侧栏切换"]
}
]
},
{
"version": "0.7.18",
"tags": ["beta"],
"author": "@chavyleung",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"notes": [
{
"name": "新增",
"descs": ["代码编辑器 (入口: 悬浮按钮)"]
},
{
"name": "说明",
"descs": ["除了本机运行外", "可以使用 PC 连上 QuanX 的 HTTP Backend", "实现在 PC 上写代码然后发送到 QuanX 执行", "Surge、Loon 同理"]
}
]
},
{
"version": "0.7.17",
"tags": ["beta"],
"author": "@chavyleung",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"notes": [
{
"name": "新增",
"descs": ["首页壁纸 (偏好设置)"]
}
]
},
{
"version": "0.7.16",
"tags": ["beta"],
"author": "@chavyleung",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"notes": [
{
"name": "优化",
"descs": ["首页图标样式"]
},
{
"name": "修复",
"descs": ["首页图标点击无效问题", "首页图标有轻微位移问题", "帮助页面打开空白"]
}
]
},
{
"version": "0.7.11",
"tags": ["beta"],
"author": "@chavyleung",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"notes": [
{
"name": "新增",
"descs": ["首页显示收藏应用", "订阅中的更多按钮可以链接到作者仓库"]
}
]
},
{
"version": "0.7.9",
"tags": ["beta"],
"author": "@chavyleung",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"notes": [
{
"name": "新增",
"descs": ["可以修改会话", "增加帮忙手册入口", "推荐订阅入口"]
},
{
"name": "调整",
"descs": ["调整加载动态效果"]
},
{
"name": "修复",
"descs": ["boolean 控件偶尔触发键盘问题"]
}
]
},
{
"version": "0.7.7",
"tags": ["beta"],
"author": "@chavyleung",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"notes": [
{
"name": "优化",
"descs": ["全程无刷新", "独立分离页面", "优化数据结构减少内存占用"]
},
{
"name": "操作",
"descs": ["可以修复全局备份的名字", "点击'应用'回到顶部,再次单击折叠面板", "点击'订阅'回到顶部,再次单击刷新订阅", "点击具体订阅可刷新"]
}
]
},
{
"version": "0.6.20",
"tags": ["beta"],
"author": "@chavyleung",
"msg": "更新[BoxJs]: BoxJs 内的请求会可以被重写",
"notes": [
{
"name": "优化",
"descs": ["BoxJs 内的请求会可以被重写", "刷新订阅添加时间缀避免网络缓存"]
}
]
},
{
"version": "0.6.18",
"tags": ["beta"],
"author": "@chavyleung",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"notes": [
{
"name": "修复",
"descs": ["清空设置时一直转圈问题"]
}
]
},
{
"version": "0.6.17",
"tags": ["beta"],
"author": "@chavyleung",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"notes": [
{
"name": "新增",
"descs": ["勿扰模式", "应用界面双击底栏能返回应用列表"]
},
{
"name": "注意",
"descs": ["勿扰模式下仍然可以通过日志查看通过内容"]
}
]
},
{
"version": "0.6.16",
"tags": ["beta"],
"author": "@chavyleung",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"notes": [
{
"name": "订阅配置",
"descs": ["新增: desc、descs、desc_html、descs_html 属性", "与 id、name 同级"]
},
{
"name": "示例",
"descs": ["https://gist.githubusercontent.com/chavyleung/9d53fc4809eb41dca5f5923790ec5554/raw/09742d3473420d8e0bd7b02a910849f65af879fa/chavy.app.sub.simple.json"]
},
{
"name": "注意",
"descs": ["本次更新主要面向开发者"]
}
]
},
{
"version": "0.6.15",
"tags": ["beta"],
"author": "@chavyleung",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"notes": [
{
"name": "偏好设置",
"descs": ["新增: http-api 超时时间, 默认 20 秒"]
},
{
"name": "订阅配置",
"descs": ["增加 script_timeout 属性, 与 script 同级, 可指定 http-api 超时时间, 单位: 秒"]
}
]
},
{
"version": "0.6.14",
"tags": ["beta"],
"author": "@chavyleung",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"notes": [
{
"name": "修复",
"descs": ["可能导致白屏的问题"]
}
]
},
{
"version": "0.6.13",
"tags": ["beta"],
"author": "@chavyleung",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"notes": [
{
"name": "新增",
"descs": ["开关控件可以显示详情信息"]
},
{
"name": "域名",
"descs": ["新增: http://boxjs.com"]
},
{
"name": "新的重写订阅",
"descs": ["Surge: https://raw.githubusercontent.com/chavyleung/scripts/master/box/rewrite/boxjs.rewrite.surge.sgmodule", "QuanX: https://raw.githubusercontent.com/chavyleung/scripts/master/box/rewrite/boxjs.rewrite.quanx.conf", "Loon: https://raw.githubusercontent.com/chavyleung/scripts/master/box/rewrite/boxjs.rewrite.loon.conf"]
},
{
"name": "注意",
"descs": ["新的重写订阅只有 boxjs.com", "旧的重写订阅仍然保留 8888 1111 和新增的 boxjs.com", "可以直接访问 http://boxjs.com 不加/home"]
}
]
},
{
"version": "0.6.12",
"tags": ["beta"],
"author": "@chavyleung",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"notes": [
{
"name": "优化",
"descs": ["双击底栏'应用'可以收缩面板并回到顶部", "双击底栏'订阅'可以刷新订阅并回到顶部", "双击'BoxJs'按钮可以刷新页面", "保存应用设置、清存会话数据能马上生效 (不用刷新页面)", "可以隐藏刷新按钮"]
},
{
"name": "主题",
"descs": ["页面更多元素会跟随主题色调"]
},
{
"name": "重写",
"descs": ["BoxJs 的重写已经去除代码级依赖", "意味着仅通过修改正则和主机名即可替换 BoxJs 的访问地址", "同时征集一个比较理想的国内域名作为 BoxJs 的免翻墙访问地址", "iOS14 Surge TF 下提示私密连接的问题, 可以找一个 http 的域名来试试"]
}
]
},
{
"version": "0.6.11",
"tags": ["beta"],
"author": "@chavyleung",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"notes": [
{
"name": "优化",
"descs": ["底栏颜色会跟随主题色调"]
}
]
},
{
"version": "0.6.10",
"tags": ["beta"],
"author": "@chavyleung",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"notes": [
{
"name": "调整",
"descs": ["内置应用 偏好设置、切换会话 图标"]
},
{
"name": "感谢",
"descs": ["感谢 @Orz-3 制作图标"]
}
]
},
{
"version": "0.6.9",
"tags": ["beta"],
"author": "@chavyleung",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"notes": [
{
"name": "新增",
"descs": ["内置应用: 偏好设置", "可以设置多个 http-api (设置完后在侧栏选择)", "可以分别设置暗黑、明亮主题下的主色调"]
},
{
"name": "控件",
"descs": ["拾色器: colorpicker"]
},
{
"name": "注意",
"descs": ["设置多个 http-api 时, 建议以逗号开头, 侧栏中选择空白的那个就是走 eval() 方案"]
}
]
},
{
"version": "0.6.8",
"tags": ["beta"],
"author": "@chavyleung",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"notes": [
{
"name": "调整",
"descs": ["运行按钮位置"]
},
{
"name": "新增",
"descs": ["可以显示当前切换至哪个会话", "应用可以设定多个运行脚本 scripts: {name: '', script: ''}", "示例: https://gist.githubusercontent.com/chavyleung/9d53fc4809eb41dca5f5923790ec5554/raw/4d8b140ba149c33aa1fc622e93c4035ae74a73bb/chavy.app.sub.simple.json"]
}
]
},
{
"version": "0.6.7",
"tags": ["beta"],
"author": "@chavyleung",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"notes": [
{
"name": "重写",
"descs": ["BoxJs Surge 的重写超时改为 120 秒 (避免手动运行脚本容易超时)"]
},
{
"name": "调整",
"descs": ["迁移 吾爱破解、爱奇艺 至原作者订阅: @NobyDa (野比)", "https://raw.githubusercontent.com/NobyDa/Script/master/NobyDa_BoxJs.json"]
}
]
},
{
"version": "0.6.6",
"tags": ["beta"],
"author": "@chavyleung",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"notes": [
{
"name": "调整",
"descs": ["迁移 腾讯新闻 至原作者订阅: @Sunert", "https://raw.githubusercontent.com/Sunert/Scripts/master/Task/sunert.boxjs.json"]
}
]
},
{
"version": "0.6.5",
"tags": ["beta"],
"author": "@chavyleung",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"notes": [
{
"name": "新增",
"descs": ["Surge、QuanX、Loon 都可以在 BoxJs 中手动运行脚本"]
},
{
"name": "说明",
"descs": ["手动运行脚本采用 eval() 方案", "Surge 在配置了 http-api 参数下会使用 http-api 方案运行脚本", "因为手法有点特殊, 不保证所有脚本都能良好"]
},
{
"name": "感谢",
"descs": ["感谢 @NobyDa 野比大佬提醒可以使用 eval() 方案"]
}
]
},
{
"version": "0.6.4",
"tags": ["beta"],
"author": "@chavyleung",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"notes": [
{
"name": "优化",
"descs": ["应用订阅可以排序"]
}
]
},
{
"version": "0.6.3",
"tags": ["beta"],
"author": "@chavyleung",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"notes": [
{
"name": "主题",
"descs": ["非全屏状态下使用白色头部"]
},
{
"name": "感谢",
"descs": ["感谢 @chouchoui 的 PR"]
}
]
},
{
"version": "0.6.2",
"tags": ["beta"],
"author": "@chavyleung",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"notes": [
{
"name": "主题",
"descs": ["浅色主题下使用黄色头部", "全屏状态下使用透明头部"]
},
{
"name": "注意",
"descs": ["需要重新添加到桌面才能生效"]
},
{
"name": "感谢",
"descs": ["感谢 @chouchoui 的 PR"]
}
]
},
{
"version": "0.6.0",
"tags": ["beta"],
"author": "@chavyleung",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"notes": [
{
"name": "新增",
"descs": ["可在 BoxJs 下直接运行脚本 (Surge TF)"]
},
{
"name": "注意",
"descs": ["目前仅支持 Surge iOS TF & Surge mac 4.x", "需要在 Surge配置文件中指定 http-api", "然后在 BoxJs 侧栏中设置 http-api 路径", "目前内置应用和 chavy.boxjs.json 内的应用都可以手动运行, 其他订阅需订阅作者更新订阅", "资料: https://community.nssurge.com/d/327-http-api"]
}
]
},
{
"version": "0.5.8",
"tags": ["beta"],
"author": "@chavyleung",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"notes": [
{
"name": "修复",
"descs": ["明亮主题下收藏按钮样式问题"]
}
]
},
{
"version": "0.5.7",
"tags": ["beta"],
"author": "@chavyleung",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"notes": [
{
"name": "优化",
"descs": ["Rewrite 地址换成 Gitee (更新 BoxJs 后注意重启)"]
},
{
"name": "教程",
"descs": ["QuanX 购买超 (90 > 30) 天即可一键更新"]
}
]
},
{
"version": "0.5.6",
"tags": ["beta"],
"author": "@chavyleung",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"notes": [
{
"name": "优化",
"descs": ["版本判断地址调整为 Gitee"]
}
]
},
{
"version": "0.5.4",
"tags": ["beta"],
"author": "@chavyleung",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"notes": [
{
"name": "优化",
"descs": ["版本刷新速度"]
}
]
},
{
"version": "0.5.2",
"tags": ["beta"],
"author": "@chavyleung",
"icon": "https://avatars3.githubusercontent.com/u/29748519",
"repo": "https://github.com/chavyleung",
"notes": [