Skip to content

Commit

Permalink
修改版本号为0.1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
xwintop committed Aug 25, 2019
1 parent 0d8bbf2 commit 929ac5e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -289,3 +289,4 @@ xJavaFxTool
![输入图片说明](images/剪贴板历史工具.png "剪贴板历史工具.png")
![输入图片说明](images/久坐提醒工具.png "久坐提醒工具.png")
![输入图片说明](images/印章生成工具.png "印章生成工具.png")
![输入图片说明](images/猜数字游戏.png "猜数字游戏.png")
1 change: 1 addition & 0 deletions README_EN.md
Original file line number Diff line number Diff line change
Expand Up @@ -285,3 +285,4 @@ From time to time, add the pain points tool that summarizes the requirements in
![输入图片说明](images/剪贴板历史工具.png "剪贴板历史工具.png")
![输入图片说明](images/久坐提醒工具.png "久坐提醒工具.png")
![输入图片说明](images/印章生成工具.png "印章生成工具.png")
![输入图片说明](images/猜数字游戏.png "猜数字游戏.png")
Binary file added images/猜数字游戏.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import com.xwintop.xJavaFxTool.services.games.BullsAndCowsGameService;
import com.xwintop.xJavaFxTool.view.games.BullsAndCowsGameView;
import com.xwintop.xcore.util.javafx.AlertUtil;
import javafx.application.Platform;
import javafx.event.ActionEvent;
import javafx.event.Event;
Expand Down Expand Up @@ -120,6 +121,7 @@ private void initEvent() {
private void initService() {
bullsAndCowsGameService.initAnswerNumber();
bullsAndCowsGameService.initRecordData();
AlertUtil.showInfoAlert("游戏说明", "程序生成一个每个数字不同的四位数,根据游戏者每次猜测的数字做出提示,有喜者经过逻辑推理,在最短的时间内用最少的猜测次数得到正确的数字,来挑战一下自己的记录吧!!");
}

@FXML
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/xwintop/xJavaFxTool/utils/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
public class Config {
public static Locale defaultLocale = Locale.getDefault();// 设置系统语言

public static final String xJavaFxToolVersions = "V0.1.8-beta1";// xJavaFxTool版本信息
public static final String xJavaFxToolVersions = "V0.1.8";// xJavaFxTool版本信息
public static final int xJavaFxToolVersionsInteger = 9;// xJavaFxTool更新信息
}

0 comments on commit 929ac5e

Please sign in to comment.