Skip to content

Commit d44c2ea

Browse files
committed
Merge branch 'master' into master
2 parents 437d1d1 + 0511796 commit d44c2ea

5 files changed

Lines changed: 13 additions & 10 deletions

File tree

Metaminesweeper.iss

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,19 @@
44
; 或者 cd 到Inno Setup 的安装目录,然后在命令行中使用 iscc "{xxx.iss}" 进行编译
55
; 安装程序生成在该脚本的根目录下的Output目录下
66
; 程序名称
7-
#define MyAppName "Metaminesweeper"
7+
#define MyAppName "Metasweeper"
88
; 程序版本
9-
#define MyAppVersion "3.1.11"
9+
#define MyAppVersion "3.2.0"
1010
; 发行商
1111
#define MyAppPublisher "eee555"
1212
; 官网
13-
#define MyAppURL "https://github.com/eee555/Solvable-Minesweeper"
13+
#define MyAppURL "https://github.com/eee555/Metasweeper"
1414
; 运行主程序名称
1515
#define MyAppExeName "metaminesweeper.exe"
1616
; 程序目录
1717
#define AppPath "metaminesweeper"
1818
; 根目录
19-
#define RootPath "Metaminesweeper-v3.1.11"
19+
#define RootPath "Metaminesweeper-snapshot"
2020
; 图标
2121
#define IconPath "media\cat.ico"
2222
[Setup]

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
- 包含8种模式的扫雷项目、第三代扫雷录像播放器及高性能算法工具箱
33
- project with 8 modes of minesweeper, third generation minesweeper video player and high performance algorithm toolbox
44

5-
[![MetaSweeper](https://img.shields.io/badge/MetaSweeper-v3.1.11-brightgreen.svg)](https://github.com/eee555/Solvable-Minesweeper)
5+
[![MetaSweeper](https://img.shields.io/badge/MetaSweeper-v3.2.0-brightgreen.svg)](https://github.com/eee555/Solvable-Minesweeper)
66
[![stars](https://img.shields.io/github/stars/eee555/Solvable-Minesweeper)](https://github.com/eee555/Solvable-Minesweeper/stargazers)
77
[![forks](https://img.shields.io/github/forks/eee555/Solvable-Minesweeper)](https://github.com/eee555/Solvable-Minesweeper/forks)
88

@@ -159,6 +159,10 @@ Currently in the lengthy development phase, with updates approximately every 1 t
159159

160160
## 下载链接
161161

162+
### 正式版v3.2.0:
163+
修改为安装包安装。“竞速无猜”更名为“经典无猜”。修复了游戏开始前点“保存”会崩溃,标准模式pb不能正常保存,标雷后缩放窗口导致异常,不同缩放下窗口尺寸不同,切屏引发崩溃等问题。现在任务栏只会出现一个主窗口,能够正确处理盲扫和标雷相关的弹窗逻辑。增加了自动更新的模块,可以在游戏内选择服务器自动更新。
164+
链接:[https://gitee.com/ee55/Metasweeper/releases/download/3.2.0/Metaminesweeper-3.2.0.exe](https://gitee.com/ee55/Metasweeper/releases/download/3.2.0/Metaminesweeper-3.2.0.exe)[https://github.com/eee555/Metasweeper/releases/download/3.2.0/Metaminesweeper-3.2.0.exe](https://github.com/eee555/Metasweeper/releases/download/3.2.0/Metaminesweeper-3.2.0.exe)
165+
162166
### 正式版v3.1.11:
163167
修复了若干严重问题。计数器标题可以翻译。兼容高清屏。
164168
链接:[https://fff666.top/download/Metaminesweeper-v3.1.11.zip](https://fff666.top/download/Metaminesweeper-v3.1.11.zip)

src/githubApi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -478,7 +478,7 @@ def removeDownloadFile(self):
478478
app = QCoreApplication([])
479479
data = {
480480
"Github": "https://api.github.com/repos/",
481-
"fff666": "https://fff666.top/",
481+
"gitee": "https://api.gitee.com/repos/",
482482
}
483483
github = GitHub(SourceManager(data), "eee555",
484484
"Solvable-Minesweeper", "3.1.9", "(\d+\.\d+\.\d+)")

src/mineSweeperGUI.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1134,10 +1134,10 @@ def action_AEvent(self):
11341134
def auto_Update(self):
11351135
data = {
11361136
"Github": "https://api.github.com/repos/",
1137-
"fff666": "https://fff666.top/",
1137+
# "Gitee": "https://api.gitee.com/repos/",
11381138
}
11391139
update_dialog = CheckUpdateGui(GitHub(SourceManager(data), "eee555",
1140-
"Solvable-Minesweeper", superGUI.version.decode( "UTF-8" ), "(\d+\.\d+\.\d+)"), parent = self)
1140+
"Metasweeper", superGUI.version.decode( "UTF-8" ), "(\d+\.\d+\.\d+)"), parent = self)
11411141
update_dialog.setModal(True)
11421142
update_dialog.show()
11431143
update_dialog.exec_()

src/superGUI.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@
1515
from country_name import country_name
1616

1717

18-
# version = "元3.1.11".encode( "UTF-8" )
19-
version = "测试3.1.16".encode( "UTF-8" )
18+
version = "元3.2.0".encode( "UTF-8" )
2019

2120

2221
class Ui_MainWindow(Ui_MainWindow):

0 commit comments

Comments
 (0)