Skip to content

Commit

Permalink
6.1.119
Browse files Browse the repository at this point in the history
🔌 最佳化
依賴更新
  • Loading branch information
yayacat committed Sep 12, 2024
1 parent 3bacf54 commit 960d171
Show file tree
Hide file tree
Showing 20 changed files with 95 additions and 59 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -141,4 +141,5 @@ TREM.MAUI
server.js
TREM.Electron/dev
TREM.Electron/replay_data
TREM.Electron/station.json
TREM.Electron/station.json
.DS_Store
4 changes: 2 additions & 2 deletions TREM.Electron/js/earthquake.js
Original file line number Diff line number Diff line change
Expand Up @@ -1069,8 +1069,8 @@ async function init() {
// const warn = (Warn) ? "⚠️" : "";
const error = (testEEWerror) ? "❌" : "";
// const unlock = (Unlock) ? "⚡" : "";
$("#log").text(`${stationnow}/${stationnowall} | ${stationPercentage}% | LB(${ws_num},${get_r_url[0]}) | ${rss}`);
$("#log1").text(`${stationnow}/${stationnowall} | ${stationPercentage}% | LB(${ws_num},${get_r_url[0]}) | ${rss}`);
$("#log").text(`${stationnow}/${stationnowall} | ${stationPercentage}% | LB(${ws_num},${route.random_global_url}) | ${rss}`);
$("#log1").text(`${stationnow}/${stationnowall} | ${stationPercentage}% | LB(${ws_num},${route.random_global_url}) | ${rss}`);
ipcRenderer.send("TREMIntensitylog2", { time: now_format(NOW()), log: `${stationnow}/${stationnowall} | ${stationPercentage}% | ${rss}`, ver: `${app.getVersion()} ${Ping} ${GetDataState} ${Warn} ${error}` });
$("#app-version").text(`${app.getVersion()} ${Ping} ${GetDataState} ${Warn} ${error}`);
$("#app-version1").text(`${app.getVersion()} ${Ping} ${GetDataState} ${Warn} ${error}`);
Expand Down
Binary file modified TREM.Electron/js/linux_arm64_client.jar
Binary file not shown.
Binary file modified TREM.Electron/js/linux_arm64_client6.jar
Binary file not shown.
Binary file modified TREM.Electron/js/linux_arm64_server.jar
Binary file not shown.
Binary file modified TREM.Electron/js/linux_x64_client.jar
Binary file not shown.
Binary file modified TREM.Electron/js/linux_x64_client6.jar
Binary file not shown.
Binary file modified TREM.Electron/js/linux_x64_server.jar
Binary file not shown.
Binary file modified TREM.Electron/js/macos_arm64_client.jar
Binary file not shown.
Binary file modified TREM.Electron/js/macos_arm64_client6.jar
Binary file not shown.
Binary file modified TREM.Electron/js/macos_arm64_server.jar
Binary file not shown.
Binary file modified TREM.Electron/js/macos_x64_client.jar
Binary file not shown.
Binary file modified TREM.Electron/js/macos_x64_client6.jar
Binary file not shown.
Binary file modified TREM.Electron/js/macos_x64_server.jar
Binary file not shown.
7 changes: 6 additions & 1 deletion TREM.Electron/js/route.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,15 @@ class Route {
this.random_api_num = this.randomAPINum();
this.ws_num = -1;
this.ws_num_bk = -1;
this.global_url = ["com.tw", "dev"];
this.global_url = ["dev"];
this.random_global_url = this.auto_run_global_url();
}

getRandomElement(list) {
const index = Math.floor(Math.random() * list.length);
return list[index];
}

/**
* @template {string} key
* @param {key} key
Expand Down
Binary file modified TREM.Electron/js/winclient.jar
Binary file not shown.
Binary file modified TREM.Electron/js/winclient6.jar
Binary file not shown.
Binary file modified TREM.Electron/js/winserver.jar
Binary file not shown.
132 changes: 81 additions & 51 deletions TREM.Electron/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 960d171

Please sign in to comment.