Skip to content

Commit

Permalink
fix 2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
kodakjerec committed Mar 14, 2024
1 parent 51df2b0 commit ba62b7f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
* Bug: 讀取、存入暫存檔修正對應錯誤
* Bug: 引言過長斷線
* Bug: gif讀取斷線
* 功能: 自動登入洽特調整發動方式
* 文字: 微調dialog大小

### 2.0.1
Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ android {
applicationId "com.kota.Bahamut"
minSdk 26
targetSdk 34
versionCode 9
versionCode 10
versionName "2.0.2"
}

Expand Down
4 changes: 2 additions & 2 deletions app/src/main/java/com/kota/Bahamut/Pages/ClassPage.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,12 @@ public void onPageDidLoad() {
// 自動登入洽特
if (TempSettings.isUnderAutoToChat()) {
// 進入洽特
// 查詢看板 => Chat => 定位到Chat:Enter => 進入版面:Enter
// 查詢看板 => Chat => 定位到Chat:Enter
Timer timer = new Timer();
TimerTask task = new TimerTask() {
@Override
public void run() {
TelnetClient.getClient().sendStringToServerInBackground("/Chat\n\n");
TelnetClient.getClient().sendStringToServerInBackground("sChat\n");
}
};
timer.schedule(task, 500);
Expand Down

0 comments on commit ba62b7f

Please sign in to comment.