From 5ec040873c91522d5d652b8366c5cde24d034e95 Mon Sep 17 00:00:00 2001 From: wrj2009 Date: Sun, 6 Mar 2022 15:15:29 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E8=87=AA=E5=AE=9A?= =?UTF-8?q?=E4=B9=89=E4=B8=8B=E8=BD=BD=E6=BA=90=E5=8A=9F=E8=83=BD;=20?= =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=83=A8=E5=88=86=E8=8B=B1=E6=96=87=E5=A4=A7?= =?UTF-8?q?=E5=B0=8F=E5=86=99=E5=92=8C=E7=A9=BA=E6=A0=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- index.html | 27 +++++++++++++++++---------- 2 files changed, 18 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 8eba26b..67f9e24 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ # Auto Scratch Desktop Mirror -Auto Scratch-Desktop Mirror 是一个基于 Github Workflow 的开源镜像项目,它会每周自动从 Scratch 官方网站下载最新的 Scratch3.0 安装包并上传至 Github Release 提供给用户以供下载。 +Auto Scratch-Desktop Mirror 是一个基于 Github Workflow 的开源镜像项目,它会每周自动从 Scratch 官方网站下载最新的 Scratch 3.0 安装包并上传至 Github Release 提供给用户以供下载。 感谢: Scratch Team, Github, Vue.js, Vuetify.js, Cnpmjs, FastGit 以及所有为这个项目添砖加瓦的人们! \ No newline at end of file diff --git a/index.html b/index.html index 14fd4d9..f1cc351 100644 --- a/index.html +++ b/index.html @@ -34,13 +34,13 @@
- Auto Scratch-Desktop Mirror 是一个基于 Github Workflow 的开源镜像项目, - 它会每周自动从 Scratch 官方网站下载最新的 Scratch3.0 安装包并上传至 (Github) + Auto Scratch-Desktop Mirror 是一个基于 GitHub Workflow 的开源镜像项目, + 它会每周自动从 Scratch 官方网站下载最新的 Scratch 3.0 安装包并上传至 (GitHub) Release 提供给用户以供下载。

- 项目开源于 Github,本版本由 waterblock79 开发。 + 项目开源于 GitHub,本版本由 waterblock79 开发。
- 感谢: Scratch Team, Github, Vue.js, Vuetify.js, Cnpmjs, FastGit 以及所有为这个项目添砖加瓦的人们! + 感谢: Scratch Team, GitHub, Vue.js, Vuetify.js, Cnpmjs, FastGit 以及所有为这个项目添砖加瓦的人们!
友情链接: Mirror Scratch

@@ -51,7 +51,7 @@ 下载 Scratch 3.0 未正确加载下载地址?请前往 - Fastgit 镜像 + FastGit 镜像Cnpm 镜像站点 @@ -84,10 +84,12 @@ 设置下载源 - 通常情况下您不需要更改下载源,但如果默认下载源不可用,您可以更改为另外一个。 + 通常情况下您不需要更改下载源,但如果默认下载源不可用,您可以更改为另外一个,或者自定义下载源。 + :items="['hub.fastgit.xyz','github.com.cnpmjs.org','github.com']" label="" + dense v-bind:disabled="toggle_button_text == '选择下载源'"> + {{ toggle_button_text }} + @@ -114,9 +116,10 @@ macos: '' }, date: '一周以内', - scratch_version: 'Unknown' + scratch_version: '未知' }, - download_source: 'github.com.cnpmjs.org', + download_source: 'hub.fastgit.xyz', + toggle_button_text: '自定义下载源', }, created: function () { this.release.stat = 0 @@ -139,6 +142,10 @@ }) }, methods: { + toggle_custom_source: function() { + this.toggle_button_text = this.toggle_button_text == "自定义下载源" ? "选择下载源" : "自定义下载源" + if (this.toggle_button_text == "自定义下载源") { this.download_source = "hub.fastgit.xyz" } + } } }) From 1eb1618f9c00c4f5c00707f7bdeffc713756342a Mon Sep 17 00:00:00 2001 From: waterblock79 Date: Sun, 6 Mar 2022 17:09:12 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E4=BB=A5=20v-combobox=20=E6=9B=BF=E4=BB=A3?= =?UTF-8?q?=E5=8E=9F=E8=87=AA=E5=AE=9A=E4=B9=89=E4=B8=8B=E8=BD=BD=E6=BA=90?= =?UTF-8?q?=E6=96=B9=E6=A1=88=EF=BC=9B=E4=B8=BA=E7=BD=91=E7=AB=99=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0=E5=9B=BE=E6=A0=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- index.html | 10 ++++------ 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 67f9e24..8ff3e4c 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ # Auto Scratch Desktop Mirror Auto Scratch-Desktop Mirror 是一个基于 Github Workflow 的开源镜像项目,它会每周自动从 Scratch 官方网站下载最新的 Scratch 3.0 安装包并上传至 Github Release 提供给用户以供下载。 -感谢: Scratch Team, Github, Vue.js, Vuetify.js, Cnpmjs, FastGit 以及所有为这个项目添砖加瓦的人们! \ No newline at end of file +感谢: Scratch Team, Github, Vue.js, Vuetify.js, FastGit 以及所有为这个项目添砖加瓦的人们! \ No newline at end of file diff --git a/index.html b/index.html index f1cc351..e3f611b 100644 --- a/index.html +++ b/index.html @@ -6,6 +6,7 @@ +