Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 29 additions & 2 deletions en/guide/download.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,36 @@ const packages = ref<Package[]>([
},
{
os: "Android",
arch: "universal",
arch: "arm64",
gui_pkg_tmpl: {
"apk": 'https://github.com/EasyTier/EasyTier/releases/download/v{}/app-arm64-release.apk',
},
cli_pkg_tmpl: {},
comment: "Choose this version for new Android devices. If you encounter abnormal display issues, please try upgrading WebView"
},
{
os: "Android",
arch: "arm",
gui_pkg_tmpl: {
"apk": 'https://github.com/EasyTier/EasyTier/releases/download/v{}/app-arm-release.apk',
},
cli_pkg_tmpl: {},
comment: "Choose this version for older Android devices. If you encounter abnormal display issues, please try upgrading WebView"
},
{
os: "Android",
arch: "x86_64",
gui_pkg_tmpl: {
"apk": 'https://github.com/EasyTier/EasyTier/releases/download/v{}/app-x86_64-release.apk',
},
cli_pkg_tmpl: {},
comment: "If you encounter abnormal display issues, please try upgrading WebView"
},
{
os: "Android",
arch: "x86",
gui_pkg_tmpl: {
"apk": 'https://github.com/EasyTier/EasyTier/releases/download/v{}/app-universal-release.apk',
"apk": 'https://github.com/EasyTier/EasyTier/releases/download/v{}/app-x86-release.apk',
},
cli_pkg_tmpl: {},
comment: "If you encounter abnormal display issues, please try upgrading WebView"
Expand Down
31 changes: 29 additions & 2 deletions guide/download.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,36 @@ const packages = ref<Package[]>([
},
{
os: "Android",
arch: "universal",
arch: "arm64",
gui_pkg_tmpl: {
"apk": 'https://github.com/EasyTier/EasyTier/releases/download/v{}/app-arm64-release.apk',
},
cli_pkg_tmpl: {},
comment: "近十年内的安卓移动设备都可以选择此版本。遇到显示界面显示异常,请尝试升级 WebView"
},
{
os: "Android",
arch: "arm",
gui_pkg_tmpl: {
"apk": 'https://github.com/EasyTier/EasyTier/releases/download/v{}/app-arm-release.apk',
},
cli_pkg_tmpl: {},
comment: "较旧的安卓设备可以选择此版本。遇到显示界面显示异常,请尝试升级 WebView"
},
{
os: "Android",
arch: "x86_64",
gui_pkg_tmpl: {
"apk": 'https://github.com/EasyTier/EasyTier/releases/download/v{}/app-x86_64-release.apk',
},
cli_pkg_tmpl: {},
comment: "遇到显示界面显示异常,请尝试升级 WebView"
},
{
os: "Android",
arch: "x86",
gui_pkg_tmpl: {
"apk": 'https://github.com/EasyTier/EasyTier/releases/download/v{}/app-universal-release.apk',
"apk": 'https://github.com/EasyTier/EasyTier/releases/download/v{}/app-x86-release.apk',
},
cli_pkg_tmpl: {},
comment: "遇到显示界面显示异常,请尝试升级 WebView"
Expand Down
4 changes: 2 additions & 2 deletions metadata.data.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
export default {
load() {
return {
easytier_latest_version: '2.4.5',
easytier_pre_release_version: '2.6.0',
easytier_latest_version: '2.6.4',
easytier_pre_release_version: '2.6.3',
github_accels: [
'https://ghfast.top/',
'https://v6.gh-proxy.org/',
Expand Down