File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 8383
8484 - name : Package with PyInstaller
8585 run : |
86- # pyinstaller --icon "./src/media/cat.ico" --noconsole --noconfirm --clean --add-data "./src/media/*:./media" --add-data "./src/de_DE.qm:." --add-data "./src/pl_PL.qm:." --add-data "./src/en_US.qm:." --paths src --name metaminesweeper src/main.py
87- pyinstaller --icon "./src/media/cat.ico" --noconsole --noconfirm --clean --add-data "./src/media/*:./media" --add-data "./de_DE.qm:." --add-data "./pl_PL.qm:." --add-data "./en_US.qm:." --paths src --name metaminesweeper src/main.py
86+ # pyinstaller --icon "./src/media/cat.ico" --noconsole --noconfirm --clean --add-data "./src/media/*:./media" --add-data "./src/de_DE.qm:." --add-data "./src/pl_PL.qm:." --add-data "./src/en_US.qm:." --paths src --name metasweeper src/main.py
87+ pyinstaller --icon "./src/media/cat.ico" --noconsole --noconfirm --clean --add-data "./src/media/*:./media" --add-data "./de_DE.qm:." --add-data "./pl_PL.qm:." --add-data "./en_US.qm:." --paths src --name metasweeper src/main.py
8888
8989
9090
Original file line number Diff line number Diff line change @@ -493,7 +493,7 @@ def read_or_create_game_setting(self):
493493 self ._minenum = self .game_setting .get_or_set_value ("DEFAULT/minenum" , 99 , int )
494494 self .mineUnFlagedNum = self .minenum
495495 # “自动重开比例”,大于等于该比例时,不自动重开。负数表示禁用。0相当于禁用,但可以编辑。
496- self .auto_replay = self .game_setting .get_or_set_value ("DEFAULT/auto_replay" , 30 , int )
496+ self .auto_replay = self .game_setting .get_or_set_value ("DEFAULT/auto_replay" , - 30 , int )
497497 # self.allow_auto_replay = self.game_setting.get_or_set_value("DEFAULT/allow_auto_replay", True, bool)
498498 self .auto_notification = self .game_setting .get_or_set_value ("DEFAULT/auto_notification" , True , bool )
499499 self .player_identifier = self .game_setting .get_or_set_value ("DEFAULT/player_identifier" , "匿名玩家(anonymous player)" , str )
You can’t perform that action at this time.
0 commit comments