mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
Some small changes for Release 1.0.3
This commit is contained in:
parent
a6fae2a38a
commit
2e5fc5fc98
4 changed files with 8 additions and 4 deletions
|
@ -112,7 +112,7 @@ public class MageFrame extends javax.swing.JFrame implements MageClient {
|
|||
private static Preferences prefs = Preferences.userNodeForPackage(MageFrame.class);
|
||||
private JLabel title;
|
||||
private Rectangle titleRectangle;
|
||||
private static final MageVersion version = new MageVersion(1, 0, 3, "dev");
|
||||
private static final MageVersion version = new MageVersion(1, 0, 3, "");
|
||||
private UUID clientId;
|
||||
private static MagePane activeFrame;
|
||||
private static boolean liteMode = false;
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
Welcome! You are playing Mage version 1.0.2.
|
||||
Find what was changed since previous versions on project Wiki.
|
||||
Welcome! You are playing Mage version 1.0.3.
|
||||
Find what was changed since previous versions on project Wiki https://github.com/magefree/mage/wiki.
|
||||
Contact us on www.slightlymagic.net.
|
|
@ -710,6 +710,7 @@ public class GameController implements GameCallback {
|
|||
|
||||
private void sendMessage(UUID userId, Command command) {
|
||||
final UUID playerId = userPlayerMap.get(userId);
|
||||
// player has game under control (is not cotrolled by other player)
|
||||
if (game.getPlayer(playerId).isGameUnderControl()) {
|
||||
// if it's your priority (or game not started yet in which case it will be null)
|
||||
// then execute only your action
|
||||
|
|
|
@ -7,7 +7,10 @@ git log tagOrSha1..HEAD --diff-filter=A --name-status | sed -ne 's/^A[^u]Mage.Se
|
|||
for Windows: you need to replace ' by "" and remove -u in sort
|
||||
|
||||
Example for cards implemented from 0.8.7 till 0.9:
|
||||
git log 9ac166abc92f70aebdbe34825880ff8f909465ed..HEAD --diff-filter=A --name-status | sed -ne "s/^A[^u]Mage.Sets\/src\/mage\/sets\///p" | sort > added_cards.txt
|
||||
git log 9ac166abc92f70aebdbe34825880ff8f909465ed..HEAD --diff-filter=A --name-status | sed -ne "s/^A[^u]Mage.Sets\/src\/mage\/sets\///p" | sort > added_cards.txt
|
||||
since 1.0.2-release:
|
||||
git log 6b38cd5b18298b07962b969bfa2eb69c62839575..HEAD --diff-filter=A --name-status | sed -ne "s/^A[^u]Mage.Sets\/src\/mage\/sets\///p" | sort > added_cards.txt
|
||||
since 1.0.3-release:
|
||||
|
||||
3. Copy added_cards.txt to trunk\Utils folder
|
||||
4. Run script:
|
||||
|
|
Loading…
Reference in a new issue