Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
573b255
Improve snippet documentation
BlackYps Apr 10, 2026
3820d4e
Add snippet to new PRs
BlackYps Apr 10, 2026
22017f9
Add automation to style balance changes
BlackYps Apr 10, 2026
ec6a67f
Update balance snippet documentation
BlackYps Apr 10, 2026
c23a760
Fix index problem
BlackYps Apr 14, 2026
66b1b9d
Fix path
BlackYps Apr 11, 2026
ead2630
Add unit icons
BlackYps Apr 12, 2026
5876894
Change background of amphibious units
BlackYps Apr 12, 2026
c6da43b
Change background of sea buildings
BlackYps Apr 12, 2026
8b822dc
Change background of air buildings
BlackYps Apr 12, 2026
6cc94ab
Add enhancement icons
BlackYps Apr 13, 2026
e0e8e93
Compress unit icons with pngquant
BlackYps Apr 13, 2026
610bcad
Compress uncompressed enhancements
BlackYps Apr 13, 2026
1ca0a05
Make all unit ids uppercase
BlackYps Apr 13, 2026
05b707d
Fix the workflow
BlackYps Apr 14, 2026
c52c442
Remove liquid tags in lua changelog
BlackYps Apr 14, 2026
e6855f6
Add T3 MAA icons
BlackYps Apr 14, 2026
61788ac
Fix aeon T1 Pgen icon
BlackYps Apr 14, 2026
1874cec
Improve balance snippet documentation
BlackYps Apr 14, 2026
de27fcc
Make styling functional
BlackYps Apr 15, 2026
bf1c60c
Only apply it on changelog pages
BlackYps Apr 27, 2026
947548e
Run pr preparation only on local branches
BlackYps May 17, 2026
01c38f3
Checkout pr branch correctly
BlackYps May 17, 2026
2ffb4a8
Add reminder
BlackYps May 17, 2026
160e25a
Split workflow-related changes into separate branch
BlackYps May 17, 2026
d6e7a60
Adjust snippets to have the PR number last
BlackYps Jun 26, 2026
2fea640
Make arrow consistent
BlackYps Jun 26, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
8 changes: 8 additions & 0 deletions .github/workflows/scripts/python/changelog_markdown2lua.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"""

import mdformat
import re
import yaml

from argparse import ArgumentParser
Expand Down Expand Up @@ -71,6 +72,7 @@ def markdown2lua(version: str, content: str) -> str:
"wrap": MAX_LINE_LENGTH,
},
)
formatted_md = remove_liquid_tags(formatted_md)

escaped_md = escape_special_symbols(formatted_md)
lua_description = ",\n".join(
Expand All @@ -97,6 +99,12 @@ def extract_yaml_front_matter(content: str) -> Tuple[str, str]:
return '', content


def remove_liquid_tags(text: str) -> str:
"""Removes all Liquid block tags like {% ... %} from the given text."""
pattern = r"{%.*?%}\s*\n"
return re.sub(pattern, "", text)
Comment thread
BlackYps marked this conversation as resolved.


def escape_special_symbols(text: str) -> str:
"""Escapes special symbols in text for Lua compatibility."""
return text.replace("\\", "\\\\").replace('"', '\\"')
Expand Down
2 changes: 1 addition & 1 deletion changelog/snippets/balance.7139.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
- (#7139) Give an on-impact water vision radius of 4 to Aeon depth charges and the Solace's cluster torpedoes to be consistent with their normal on-impact vision.
- Give an on-impact water vision radius of 4 to Aeon depth charges and the Solace's cluster torpedoes to be consistent with their normal on-impact vision (#7139).
4 changes: 1 addition & 3 deletions changelog/snippets/fix.7104.md
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
- (#7104) Fix computing the wrong area in the navigational mesh

The new values may differ from the old values by +/- 15%.
- Fix computing the wrong area in the navigational mesh. The new values may differ from the old values by +/- 15% (#7104).
2 changes: 1 addition & 1 deletion changelog/snippets/fix.7127.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
- (#7127) Fix French locale for Selen's toggle incorrectly saying that it toggles the Selen's cloak, when it actually only toggles selection priority, and the cloak always activates when stationary.
- Fix French locale for Selen's toggle incorrectly saying that it toggles the Selen's cloak, when it actually only toggles selection priority, and the cloak always activates when stationary (#7127).
2 changes: 1 addition & 1 deletion changelog/snippets/fix.7129.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
- (#7129) Fix typo in unlocalised version of the descriptive name of the UEF T3 Support Land Factory.
- Fix typo in unlocalised version of the descriptive name of the UEF T3 Support Land Factory (#7129).
2 changes: 1 addition & 1 deletion changelog/snippets/fix.7139.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
- (#7139) Align the on-impact vision radius of the Lobo's (UEL0103) fragmentation shell, Aeon depth charges, and the Solace's cluster torpedoes to the engine's vision grid (5 -> 4).
- Align the on-impact vision radius of the Lobo's (UEL0103) fragmentation shell, Aeon depth charges, and the Solace's cluster torpedoes to the engine's vision grid (5 -> 4) (#7139).
2 changes: 1 addition & 1 deletion changelog/snippets/fix.7149.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
- (#7149) Fix missing share condition default causing a score board UI loading error when the game was launched using the single player command line launch option.
- Fix missing share condition default causing a score board UI loading error when the game was launched using the single player command line launch option (#7149).
1 change: 1 addition & 0 deletions changelog/snippets/graphics.7095.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Fix the icon of the Aeon T1 power generator (#7095).
2 changes: 1 addition & 1 deletion changelog/snippets/other.7036.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
- (#7036) Game repository: Update the setup instructions for the development environment.
- Game repository: Update the setup instructions for the development environment (#7036).
2 changes: 1 addition & 1 deletion changelog/snippets/other.7106.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
- (#7106) Generate BaseTemplate tables at import time instead of parsing them from lua source files.
- Generate BaseTemplate tables at import time instead of parsing them from lua source files (#7106).
2 changes: 1 addition & 1 deletion changelog/snippets/other.7137.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
- (#7137) Add missing annotation for `CommonArmy` game option.
- Add missing annotation for `CommonArmy` game option (#7137).
2 changes: 1 addition & 1 deletion changelog/snippets/performance.6847.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
- (#6847) Segment formations logic into different files and simplify category filters.
- Segment formations logic into different files and simplify category filters (#6847).
1 change: 0 additions & 1 deletion changelog/snippets/sections/graphics.7095.md

This file was deleted.

24 changes: 24 additions & 0 deletions docs/_plugins/balance_change.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
Jekyll::Hooks.register [:pages, :documents], :post_render do |doc|

apply =
# Everything in _posts
(doc.respond_to?(:collection) && doc.collection.label == "posts") ||
# Generated changelogs
doc.respond_to?(:path) && File.basename(doc.path) == "fafbeta.md" ||
doc.respond_to?(:path) && File.basename(doc.path) == "fafdevelop.md"

next unless apply

# Use https://regex101.com/ to debug regex.
doc.output.gsub!(
/<li>([^<]+?)<ul>\s*<li>([^<]+?:\s)([^<]+)\s-&gt;\s([^<]+)<\/li>/,
'<li><span class="change-category">\1</span><ul> <li><span class="change">\2</span><span class="old">\3</span> → <span class="new">\4</span></li>'
)

# Needed if there is more than one change per category
doc.output.gsub!(
/<li>([^<]+?:\s)([^<]+)\s-&gt;\s([^<]+)<\/li>/,
'<li><span class="change">\1</span><span class="old">\2</span> → <span class="new">\3</span></li>'
Comment thread
coderabbitai[bot] marked this conversation as resolved.
)

end
41 changes: 41 additions & 0 deletions docs/_plugins/unit_block.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
module Jekyll
class UnitBlock < Liquid::Block

def initialize(tag_name, markup, tokens)
super
@unit_id = markup.strip
end

def render(context)
name = super.strip

page = context.registers[:page]

is_post = page["collection"] == "posts"
is_fafbeta = File.basename(page["path"]) == "fafbeta.md"
is_fafdevelop = File.basename(page["path"]) == "fafdevelop.md"

apply = is_post || is_fafbeta || is_fafdevelop
unless apply
return "{% unit #{@unit_id} %}\n#{name}\n{% endunit %}"
end

icon_name =
if @unit_id.start_with?("enhancements")
"#{@unit_id}.png"
else
"#{@unit_id.upcase}_icon.png"
end

<<~HTML
<div class="unit-header">
<img class="unit-icon"
src="/assets/icons/#{icon_name}">
<span class="unit-name">#{name}</span>
</div>
HTML
end
end
end

Liquid::Template.register_tag('unit', Jekyll::UnitBlock)
34 changes: 34 additions & 0 deletions docs/_sass/custom/custom.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
.unit-header {
display: flex;
align-items: center;
gap: 10px;
margin-top: 2rem;
font-size: 1.2rem;
font-weight: 600;
}

.unit-icon {
width: 64px;
height: 64px;
}

.unit-name {
display: inline-block;
}

.change-category {
font-weight: 600;
}

.change {
font-weight: 300;
}

.old {
color: #d73a49;
text-decoration: line-through;
}

.new {
color: #2da44e;
}
Binary file added docs/assets/icons/DAA0206_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/icons/DAB2102_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/icons/DAL0310_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/icons/DALK003_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/icons/DEA0202_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/icons/DEL0204_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/icons/DELK002_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/icons/DRA0202_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/icons/DRL0204_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/icons/DRLK001_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/icons/DSLK004_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/icons/UAA0101_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/icons/UAA0102_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/icons/UAA0103_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/icons/UAA0104_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/icons/UAA0107_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/icons/UAA0203_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/icons/UAA0204_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/icons/UAA0302_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/icons/UAA0303_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/icons/UAA0304_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/icons/UAA0310_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/icons/UAB0101_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/icons/UAB0102_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/icons/UAB0103_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/icons/UAB0201_icon.png
Binary file added docs/assets/icons/UAB0202_icon.png
Binary file added docs/assets/icons/UAB0203_icon.png
Binary file added docs/assets/icons/UAB0301_icon.png
Binary file added docs/assets/icons/UAB0302_icon.png
Binary file added docs/assets/icons/UAB0303_icon.png
Binary file added docs/assets/icons/UAB0304_icon.png
Binary file added docs/assets/icons/UAB1101_icon.png
Binary file added docs/assets/icons/UAB1102_icon.png
Binary file added docs/assets/icons/UAB1103_icon.png
Binary file added docs/assets/icons/UAB1104_icon.png
Binary file added docs/assets/icons/UAB1105_icon.png
Binary file added docs/assets/icons/UAB1106_icon.png
Binary file added docs/assets/icons/UAB1201_icon.png
Binary file added docs/assets/icons/UAB1202_icon.png
Binary file added docs/assets/icons/UAB1301_icon.png
Binary file added docs/assets/icons/UAB1302_icon.png
Binary file added docs/assets/icons/UAB1303_icon.png
Binary file added docs/assets/icons/UAB2101_icon.png
Binary file added docs/assets/icons/UAB2104_icon.png
Binary file added docs/assets/icons/UAB2108_icon.png
Binary file added docs/assets/icons/UAB2109_icon.png
Binary file added docs/assets/icons/UAB2204_icon.png
Binary file added docs/assets/icons/UAB2205_icon.png
Binary file added docs/assets/icons/UAB2301_icon.png
Binary file added docs/assets/icons/UAB2302_icon.png
Binary file added docs/assets/icons/UAB2303_icon.png
Binary file added docs/assets/icons/UAB2304_icon.png
Binary file added docs/assets/icons/UAB2305_icon.png
Binary file added docs/assets/icons/UAB3101_icon.png
Binary file added docs/assets/icons/UAB3102_icon.png
Binary file added docs/assets/icons/UAB3104_icon.png
Binary file added docs/assets/icons/UAB3201_icon.png
Binary file added docs/assets/icons/UAB3202_icon.png
Binary file added docs/assets/icons/UAB4201_icon.png
Binary file added docs/assets/icons/UAB4202_icon.png
Binary file added docs/assets/icons/UAB4203_icon.png
Binary file added docs/assets/icons/UAB4301_icon.png
Binary file added docs/assets/icons/UAB4302_icon.png
Binary file added docs/assets/icons/UAB5101_icon.png
Binary file added docs/assets/icons/UAB5103_icon.png
Binary file added docs/assets/icons/UAB5202_icon.png
Binary file added docs/assets/icons/UAL0001_icon.png
Binary file added docs/assets/icons/UAL0101_icon.png
Binary file added docs/assets/icons/UAL0103_icon.png
Binary file added docs/assets/icons/UAL0104_icon.png
Binary file added docs/assets/icons/UAL0105_icon.png
Binary file added docs/assets/icons/UAL0106_icon.png
Binary file added docs/assets/icons/UAL0111_icon.png
Binary file added docs/assets/icons/UAL0201_icon.png
Binary file added docs/assets/icons/UAL0202_icon.png
Binary file added docs/assets/icons/UAL0205_icon.png
Binary file added docs/assets/icons/UAL0208_icon.png
Binary file added docs/assets/icons/UAL0301_icon.png
Binary file added docs/assets/icons/UAL0303_icon.png
Binary file added docs/assets/icons/UAL0304_icon.png
Binary file added docs/assets/icons/UAL0307_icon.png
Binary file added docs/assets/icons/UAL0309_icon.png
Binary file added docs/assets/icons/UAL0401_icon.png
Binary file added docs/assets/icons/UAS0102_icon.png
Binary file added docs/assets/icons/UAS0103_icon.png
Binary file added docs/assets/icons/UAS0201_icon.png
Binary file added docs/assets/icons/UAS0202_icon.png
Binary file added docs/assets/icons/UAS0203_icon.png
Binary file added docs/assets/icons/UAS0302_icon.png
Binary file added docs/assets/icons/UAS0303_icon.png
Binary file added docs/assets/icons/UAS0304_icon.png
Binary file added docs/assets/icons/UAS0305_icon.png
Binary file added docs/assets/icons/UAS0401_icon.png
Binary file added docs/assets/icons/UEA0001_icon.png
Binary file added docs/assets/icons/UEA0003_icon.png
Binary file added docs/assets/icons/UEA0101_icon.png
Binary file added docs/assets/icons/UEA0102_icon.png
Binary file added docs/assets/icons/UEA0103_icon.png
Binary file added docs/assets/icons/UEA0104_icon.png
Binary file added docs/assets/icons/UEA0107_icon.png
Binary file added docs/assets/icons/UEA0203_icon.png
Binary file added docs/assets/icons/UEA0204_icon.png
Binary file added docs/assets/icons/UEA0302_icon.png
Binary file added docs/assets/icons/UEA0303_icon.png
Binary file added docs/assets/icons/UEA0304_icon.png
Binary file added docs/assets/icons/UEA0305_icon.png
Binary file added docs/assets/icons/UEB0101_icon.png
Binary file added docs/assets/icons/UEB0102_icon.png
Binary file added docs/assets/icons/UEB0103_icon.png
Binary file added docs/assets/icons/UEB0201_icon.png
Binary file added docs/assets/icons/UEB0202_icon.png
Binary file added docs/assets/icons/UEB0203_icon.png
Binary file added docs/assets/icons/UEB0301_icon.png
Binary file added docs/assets/icons/UEB0302_icon.png
Binary file added docs/assets/icons/UEB0303_icon.png
Binary file added docs/assets/icons/UEB0304_icon.png
Binary file added docs/assets/icons/UEB1101_icon.png
Binary file added docs/assets/icons/UEB1102_icon.png
Binary file added docs/assets/icons/UEB1103_icon.png
Binary file added docs/assets/icons/UEB1104_icon.png
Binary file added docs/assets/icons/UEB1105_icon.png
Binary file added docs/assets/icons/UEB1106_icon.png
Binary file added docs/assets/icons/UEB1201_icon.png
Binary file added docs/assets/icons/UEB1202_icon.png
Binary file added docs/assets/icons/UEB1301_icon.png
Binary file added docs/assets/icons/UEB1302_icon.png
Binary file added docs/assets/icons/UEB1303_icon.png
Binary file added docs/assets/icons/UEB2101_icon.png
Binary file added docs/assets/icons/UEB2104_icon.png
Binary file added docs/assets/icons/UEB2108_icon.png
Binary file added docs/assets/icons/UEB2109_icon.png
Binary file added docs/assets/icons/UEB2204_icon.png
Binary file added docs/assets/icons/UEB2205_icon.png
Binary file added docs/assets/icons/UEB2301_icon.png
Binary file added docs/assets/icons/UEB2302_icon.png
Binary file added docs/assets/icons/UEB2303_icon.png
Binary file added docs/assets/icons/UEB2304_icon.png
Binary file added docs/assets/icons/UEB2305_icon.png
Binary file added docs/assets/icons/UEB2401_icon.png
Binary file added docs/assets/icons/UEB3101_icon.png
Binary file added docs/assets/icons/UEB3102_icon.png
Binary file added docs/assets/icons/UEB3104_icon.png
Binary file added docs/assets/icons/UEB3201_icon.png
Binary file added docs/assets/icons/UEB3202_icon.png
Binary file added docs/assets/icons/UEB4201_icon.png
Binary file added docs/assets/icons/UEB4202_icon.png
Binary file added docs/assets/icons/UEB4203_icon.png
Binary file added docs/assets/icons/UEB4301_icon.png
Binary file added docs/assets/icons/UEB4302_icon.png
Binary file added docs/assets/icons/UEB5101_icon.png
Binary file added docs/assets/icons/UEB5202_icon.png
Binary file added docs/assets/icons/UEL0001_icon.png
Binary file added docs/assets/icons/UEL0101_icon.png
Binary file added docs/assets/icons/UEL0103_icon.png
Binary file added docs/assets/icons/UEL0104_icon.png
Binary file added docs/assets/icons/UEL0105_icon.png
Binary file added docs/assets/icons/UEL0106_icon.png
Binary file added docs/assets/icons/UEL0111_icon.png
Binary file added docs/assets/icons/UEL0201_icon.png
Binary file added docs/assets/icons/UEL0202_icon.png
Binary file added docs/assets/icons/UEL0203_icon.png
Binary file added docs/assets/icons/UEL0205_icon.png
Binary file added docs/assets/icons/UEL0208_icon.png
Binary file added docs/assets/icons/UEL0301_icon.png
Binary file added docs/assets/icons/UEL0303_icon.png
Binary file added docs/assets/icons/UEL0304_icon.png
Binary file added docs/assets/icons/UEL0307_icon.png
Binary file added docs/assets/icons/UEL0309_icon.png
Binary file added docs/assets/icons/UEL0401_icon.png
Binary file added docs/assets/icons/UES0103_icon.png
Binary file added docs/assets/icons/UES0201_icon.png
Binary file added docs/assets/icons/UES0202_icon.png
Binary file added docs/assets/icons/UES0203_icon.png
Binary file added docs/assets/icons/UES0302_icon.png
Binary file added docs/assets/icons/UES0304_icon.png
Binary file added docs/assets/icons/UES0305_icon.png
Binary file added docs/assets/icons/UES0401_icon.png
Binary file added docs/assets/icons/URA0001_icon.png
Binary file added docs/assets/icons/URA0101_icon.png
Binary file added docs/assets/icons/URA0102_icon.png
Binary file added docs/assets/icons/URA0103_icon.png
Binary file added docs/assets/icons/URA0104_icon.png
Binary file added docs/assets/icons/URA0107_icon.png
Binary file added docs/assets/icons/URA0203_icon.png
Binary file added docs/assets/icons/URA0204_icon.png
Binary file added docs/assets/icons/URA0302_icon.png
Binary file added docs/assets/icons/URA0303_icon.png
Binary file added docs/assets/icons/URA0304_icon.png
Binary file added docs/assets/icons/URA0401_icon.png
Binary file added docs/assets/icons/URB0101_icon.png
Binary file added docs/assets/icons/URB0102_icon.png
Binary file added docs/assets/icons/URB0103_icon.png
Binary file added docs/assets/icons/URB0201_icon.png
Binary file added docs/assets/icons/URB0202_icon.png
Binary file added docs/assets/icons/URB0203_icon.png
Binary file added docs/assets/icons/URB0301_icon.png
Binary file added docs/assets/icons/URB0302_icon.png
Binary file added docs/assets/icons/URB0303_icon.png
Binary file added docs/assets/icons/URB0304_icon.png
Binary file added docs/assets/icons/URB1101_icon.png
Binary file added docs/assets/icons/URB1102_icon.png
Binary file added docs/assets/icons/URB1103_icon.png
Binary file added docs/assets/icons/URB1104_icon.png
Binary file added docs/assets/icons/URB1105_icon.png
Binary file added docs/assets/icons/URB1106_icon.png
Binary file added docs/assets/icons/URB1201_icon.png
Binary file added docs/assets/icons/URB1202_icon.png
Binary file added docs/assets/icons/URB1301_icon.png
Binary file added docs/assets/icons/URB1302_icon.png
Binary file added docs/assets/icons/URB1303_icon.png
Binary file added docs/assets/icons/URB2101_icon.png
Binary file added docs/assets/icons/URB2104_icon.png
Binary file added docs/assets/icons/URB2108_icon.png
Binary file added docs/assets/icons/URB2109_icon.png
Binary file added docs/assets/icons/URB2204_icon.png
Binary file added docs/assets/icons/URB2205_icon.png
Binary file added docs/assets/icons/URB2301_icon.png
Binary file added docs/assets/icons/URB2302_icon.png
Binary file added docs/assets/icons/URB2303_icon.png
Binary file added docs/assets/icons/URB2304_icon.png
Binary file added docs/assets/icons/URB2305_icon.png
Binary file added docs/assets/icons/URB3101_icon.png
Binary file added docs/assets/icons/URB3102_icon.png
Binary file added docs/assets/icons/URB3104_icon.png
Binary file added docs/assets/icons/URB3201_icon.png
Binary file added docs/assets/icons/URB3202_icon.png
Binary file added docs/assets/icons/URB4201_icon.png
Binary file added docs/assets/icons/URB4202_icon.png
Binary file added docs/assets/icons/URB4203_icon.png
Binary file added docs/assets/icons/URB4204_icon.png
Binary file added docs/assets/icons/URB4205_icon.png
Binary file added docs/assets/icons/URB4206_icon.png
Binary file added docs/assets/icons/URB4207_icon.png
Binary file added docs/assets/icons/URB4302_icon.png
Binary file added docs/assets/icons/URB5101_icon.png
Binary file added docs/assets/icons/URB5202_icon.png
Binary file added docs/assets/icons/URL0001_icon.png
Binary file added docs/assets/icons/URL0101_icon.png
Binary file added docs/assets/icons/URL0103_icon.png
Binary file added docs/assets/icons/URL0104_icon.png
Binary file added docs/assets/icons/URL0105_icon.png
Binary file added docs/assets/icons/URL0106_icon.png
Binary file added docs/assets/icons/URL0107_icon.png
Binary file added docs/assets/icons/URL0111_icon.png
Binary file added docs/assets/icons/URL0202_icon.png
Binary file added docs/assets/icons/URL0203_icon.png
Binary file added docs/assets/icons/URL0205_icon.png
Binary file added docs/assets/icons/URL0208_icon.png
Binary file added docs/assets/icons/URL0301_icon.png
Binary file added docs/assets/icons/URL0303_icon.png
Binary file added docs/assets/icons/URL0304_icon.png
Binary file added docs/assets/icons/URL0306_icon.png
Binary file added docs/assets/icons/URL0309_icon.png
Binary file added docs/assets/icons/URL0401_icon.png
Binary file added docs/assets/icons/URL0402_icon.png
Binary file added docs/assets/icons/URS0103_icon.png
Binary file added docs/assets/icons/URS0201_icon.png
Binary file added docs/assets/icons/URS0202_icon.png
Binary file added docs/assets/icons/URS0203_icon.png
Binary file added docs/assets/icons/URS0302_icon.png
Binary file added docs/assets/icons/URS0303_icon.png
Binary file added docs/assets/icons/URS0304_icon.png
Binary file added docs/assets/icons/URS0305_icon.png
Binary file added docs/assets/icons/XAA0202_icon.png
Binary file added docs/assets/icons/XAA0305_icon.png
Binary file added docs/assets/icons/XAA0306_icon.png
Binary file added docs/assets/icons/XAB1401_icon.png
Binary file added docs/assets/icons/XAB2307_icon.png
Binary file added docs/assets/icons/XAB3301_icon.png
Binary file added docs/assets/icons/XAL0203_icon.png
Binary file added docs/assets/icons/XAL0305_icon.png
Binary file added docs/assets/icons/XAS0204_icon.png
Binary file added docs/assets/icons/XAS0306_icon.png
Binary file added docs/assets/icons/XEA0002_icon.png
Binary file added docs/assets/icons/XEA0306_icon.png
Binary file added docs/assets/icons/XEA3204_icon.png
Binary file added docs/assets/icons/XEB0104_icon.png
Binary file added docs/assets/icons/XEB0204_icon.png
Binary file added docs/assets/icons/XEB2306_icon.png
Binary file added docs/assets/icons/XEB2402_icon.png
Binary file added docs/assets/icons/XEL0209_icon.png
Binary file added docs/assets/icons/XEL0305_icon.png
Binary file added docs/assets/icons/XEL0306_icon.png
Loading