Skip to content

Commit

Permalink
Release 3734 (FAForever#3801)
Browse files Browse the repository at this point in the history
  • Loading branch information
Garanas authored Apr 22, 2022
1 parent 9db625d commit 16f295d
Show file tree
Hide file tree
Showing 7 changed files with 39 additions and 4 deletions.
11 changes: 11 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
Game version 3734 (22nd of April, 2022)
===================================

### Bug fixes

- Fix (another) missing parameter in matchmaking (#3801)

### Contributors

- Jip (#3801)

Game version 3733 (22nd of April, 2022)
===================================

Expand Down
2 changes: 1 addition & 1 deletion lua/ui/lobby/autolobby-classes.lua
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ ConnectionStatus = Class(Group) {
if self.ConnectedPlayersCount == 1 then
connectionsText = LOCF('<LOC AutoLobbyConnectionsTextSingular>%s / %s is connected', tostring(self.ConnectedPlayersCount), tostring(self.TotalPlayersCount))
else
connectionsText = LOCF('<LOC AutoLobbyConnectionsTextPlural>%s / %s are connected', tostring(self.ConnectedPlayersCount))
connectionsText = LOCF('<LOC AutoLobbyConnectionsTextPlural>%s / %s are connected', tostring(self.ConnectedPlayersCount), tostring(self.TotalPlayersCount))
end
end

Expand Down
1 change: 1 addition & 0 deletions lua/ui/lobby/autolobby.lua
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,7 @@ local function CreateUI()
-- construct the connection status GUI and position it right below the dialog
connectionStatusGUI = ConnectionStatus(GetFrame(0))
LayoutHelpers.CenteredBelow(connectionStatusGUI, currentDialog, 20)
LayoutHelpers.DepthOverParent(connectionStatusGUI, background, 1)
end


Expand Down
15 changes: 15 additions & 0 deletions lua/ui/lobby/changelogData.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
last_version = 3732
gamePatches = {
{
version = 3732, -- purposefully set to 3732, so that it shows on top of game version 3732. Should be fixed in next release
name = "Game version 3734",
description = {
"",
"### Bug fixes",
"",
" - Fix (another) missing parameter in matchmaking (#3801) ",
"",
"### Contributors",
"",
" - Jip (#3801)",
},
},

{
version = 3732, -- purposefully set to 3732, so that it shows on top of game version 3732. Should be fixed in next release
name = "Game version 3733",
Expand Down
2 changes: 1 addition & 1 deletion lua/version.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
local Version = '3733'
local Version = '3734'
function GetVersion()
LOG('Supreme Commander: Forged Alliance version ' .. Version)
return Version
Expand Down
2 changes: 1 addition & 1 deletion mod_info.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
-- Documentation for the extended FAF mod_info.lua format can be found here:
-- https://github.com/FAForever/fa/wiki/mod_info.lua-documentation
name = "Forged Alliance Forever"
version = 3733
version = 3734
_faf_modname='faf'
copyright = "Forged Alliance Forever Community"
description = "Forged Alliance Forever extends Forged Alliance, bringing new patches, game modes, units, ladder, and much more!"
Expand Down
10 changes: 9 additions & 1 deletion scripts/release-faf-develop.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,25 @@
git checkout faforever/deploy/fafdevelop
git pull faforever deploy/fafdevelop

read

git checkout faforever/develop
git pull faforever develop
git pull faforever deploy/fafdevelop --rebase
git push faforever HEAD:develop

read

git checkout faforever/master
git pull faforever master
git pull faforever develop --rebase
git push faforever HEAD:master

read

git checkout faforever/deploy/faf
git pull faforever deploy/faf
git pull faforever master --rebase
git push faforever HEAD:deploy/faf
git push faforever HEAD:deploy/faf

read

0 comments on commit 16f295d

Please sign in to comment.