Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Further tweaks to the changelog #6244

Merged
merged 3 commits into from
Jun 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,5 @@


## Checklist

- [ ] Changes are annotated, including comments where useful
- [ ] Changes are documented in the changelog for the next game version
2 changes: 1 addition & 1 deletion changelog/snippets/ai.6083.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
(#6083, #6084, #6085) Intellisense and minor logic changes to platoon.lua, aiutilities.lua, and related files to greatly reduce number of warnings in platoon.lua
- (#6083, #6084, #6085) Intellisense and minor logic changes to platoon.lua, aiutilities.lua, and related files to greatly reduce number of warnings in platoon.lua.
2 changes: 1 addition & 1 deletion changelog/snippets/balance.6202.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
- (#6202) Increase the Energy Maintenance Cost from 30 > 45 for the Cybran T2 Sub (Barracuda). This change makes it more of a choice to enable the stealth on the barracuda, similar to how it is for the Cybran ASF.
- (#6202) Increase the energy maintenance cost of the Barracuda (Cybran T2 Sub) from 30 to 45. This makes it more of a choice to enable the stealth, similar to how it is for the Cybran ASF.
2 changes: 1 addition & 1 deletion changelog/snippets/features.5948.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
- (#5948) When in capture mode, display energy cost and time to capture hovered-over units.
- (#5948) Display the required energy cost and time to capture a unit when hovering over it while in capture mode.
2 changes: 1 addition & 1 deletion changelog/snippets/fix.6142.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
- (#6142) Fix Salvation being unable to fire at max range by reverting previous muzzle velocity changes.
- (#6142) Fix the Salvation being unable to fire at max range by reverting previous muzzle velocity changes.
2 changes: 1 addition & 1 deletion changelog/snippets/other.6147.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
(#6147) Improve the comments in the water shader file.
- (#6147) Improve the comments in the water shader file.
2 changes: 1 addition & 1 deletion wiki/changelog-fafdevelop.sh
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,9 @@ rm -f "$output"
# Add the initial header
cat "$templateHeader" >>"$output"

process_snippets "fix" "$templateFix" "$output"
process_snippets "balance" "$templateBalance" "$output"
process_snippets "features" "$templateFeatures" "$output"
process_snippets "fix" "$templateFix" "$output"
process_snippets "graphics" "$templateGraphics" "$output"
process_snippets "ai" "$templateAI" "$output"
process_snippets "performance" "$templatePerformance" "$output"
Expand Down