Skip to content

Commit

Permalink
Development snapshot <v0.49.20>
Browse files Browse the repository at this point in the history
  • Loading branch information
HammerGS committed Jun 28, 2024
1 parent 398cbd4 commit 2d4a473
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion MekHQ/docs/history.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MEKHQ VERSION HISTORY:
---------------
0.49.20-SNAPSHOT
0.49.20 (2024-06-28 2100 UTC)
+ PR #4005: Code internals: DialogOptionsListener update
+ PR #2997: Story Arcs Basic Architecture
+ FIX #4017: Space and Low Atmosphere not saved to xml, when started game after load the correct board type was to megamek
Expand Down
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ allprojects {

subprojects {
group = 'org.megamek'
version = '0.49.20-SNAPSHOT'
version = '0.49.20'
}

ext {
Expand All @@ -31,16 +31,16 @@ ext {
mhqGitRoot = 'https://github.com/MegaMek/mekhq.git'
// Work on MML or MHQ sometimes requires changes in MM as well. The maven publishing tasks use
// these properties to append the branch name to the artifact id if the repo is not in the master
// branch, making it available separately to the child project.
// branch, making it available separately to the child project.
mhqBranch = grgit.branch.current().name
mhqBranchTag = mhqBranch.equals('master') ? '' : '-' + mhqBranch

// Allows setting a dependency on a different MM branch.
mmBranch = 'master'
mmBranchTag = mmBranch.equals('master') ? '' : '-' + mmBranch
mmlBranch = 'master'
mmlBranchTag = mmlBranch.equals('master') ? '' : '-' + mmlBranch

mmDir = "${rootDir}/../megamek"
mmlDir = "${rootDir}/../megameklab"
}
Expand Down

0 comments on commit 2d4a473

Please sign in to comment.