Skip to content

Commit

Permalink
Changelog for game version 3739 (FAForever#3980)
Browse files Browse the repository at this point in the history
  • Loading branch information
Garanas authored Jun 20, 2022
1 parent f897af8 commit dc6f016
Show file tree
Hide file tree
Showing 6 changed files with 79 additions and 8 deletions.
16 changes: 12 additions & 4 deletions changelog-fr.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@


Note de patch 3739 (20 juin 2022)
==========================

## Correction de Bug

- (#3978) Corriger les améliorations des missiles tactiques des (S)ACUs

## Contributeurs

- Jip (#3978)

Note de patch 3738 (19 juin 2022)
=================================

Expand Down Expand Up @@ -38,8 +50,6 @@ Jip
- (#3966) Correction des points d'arrêt pour diverses usines
Les points d'ancrage n'étaient pas correctement alignés, en conséquence les vaisseaux avaient du mal à quitter le quai. Ceci était particulièrement visible sur les usines navales de la faction Cybran.

Traduit avec www.DeepL.com/Translator (version gratuite)n

## Fonctionnalités

- (#3887, #3968) Introduction de la prise en charge d'Intellisense pour l'extension FA Visual Studio Code (VSC)
Expand Down Expand Up @@ -76,8 +86,6 @@ Traduit avec www.DeepL.com/Translator (version gratuite)n

Vous pouvez trouver le raccourci en recherchant 'recheck' dans le menu des raccourcis.

Traduit avec www.DeepL.com/Translator (version gratuite)

### Pour les développeurs de cartes, de mods et d'IA

- (#3884) Ajout de prise en charge d'un drapeau unit.IsCivilian
Expand Down
11 changes: 11 additions & 0 deletions changelog-ru.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@

Версия 3739 (20 Июля 2022)
==========================

## Исправление ошибок

- (#3978) Исправить усовершенствования тактических ракет (S)ACU

## Авторы

- Jip (#3978)

Версия 3738 (19 Июля 2022)
==========================

Expand Down
12 changes: 11 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,17 @@


Some sections of the changelog are available in other languages such as [French](changelog-fr.md) or [Russian](changelog-ru.md)

Game version 3739 (20th of June, 2022)
======================================

## Bug fixes

- (#3978) Fix tactical missile enhancements of (S)ACUs

## Contributors

- Jip (#3978)

Game version 3738 (19th of June, 2022)
======================================

Expand Down
44 changes: 43 additions & 1 deletion lua/ui/lobby/changelogData.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,47 @@
last_version = 3738
last_version = 3739

---@alias PatchNotesType "Hotfix"|"Developers patch"|"Balance patch"

---@class PatchNotes
---@field version string # Patch version
---@field name PatchNotesType # Patch type
---@field descriptionFR string[] # French translation
---@field descriptionRU string[] # Russian translation
---@field description string[] # Default changelog in English

---@type PatchNotes[]
gamePatches = {
{
version = 3739,
name = "Hotfix",
descriptionFR = {
"## Correction de Bug",
"",
"- (#3978) Corriger les améliorations des missiles tactiques des (S)ACUs",
"",
"## Contributeurs",
"",
"- Jip (#3978)",
},
descriptionRU = {
"## Исправление ошибок",
"",
"- (#3978) Исправить усовершенствования тактических ракет (S)ACU",
"",
"## Авторы",
"",
"- Jip (#3978)",
},
description = {
"## Bug fixes",
"",
"- (#3978) Fix tactical missile enhancements of (S)ACUs",
"",
"## Contributors",
"",
"- Jip (#3978)",
}
},
{
version = 3738,
name = "Developers patch",
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 = '3738'
local Version = '3739'
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 = 3738
version = 3739
_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

0 comments on commit dc6f016

Please sign in to comment.