Skip to content

Commit b75b082

Browse files
committed
deploy: b763e2e
1 parent 187d1d3 commit b75b082

3 files changed

Lines changed: 30 additions & 11 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ The library is organized around **managers**, each one handles a different aspec
2424

2525
## Scenario support
2626

27-
Every scenario version from **1.36** _(November 2019)_ through **1.57** _(February 2026)_ is supported.
27+
Every scenario version from **1.36** _(November 2019)_ through **1.58** _(June 2026)_ is supported.
2828
If a new game update is just released, it may take a short time for the library to catch up — check the [Discord server] for the latest status.
2929

3030
[Discord server]: https://discord.gg/DRUtmugXT3

api/AoE2ScenarioParser/settings.html

Lines changed: 28 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,9 @@ <h2>API Documentation</h2>
4747
<li>
4848
<a class="variable" href="#SHOW_VARIANT_WARNINGS">SHOW_VARIANT_WARNINGS</a>
4949
</li>
50+
<li>
51+
<a class="variable" href="#SHOW_SCENARIO_VERSION_WARNINGS">SHOW_SCENARIO_VERSION_WARNINGS</a>
52+
</li>
5053
<li>
5154
<a class="variable" href="#MAIN_CHARSET">MAIN_CHARSET</a>
5255
</li>
@@ -111,15 +114,17 @@ <h1 class="modulename">
111114
</span><span id="L-22"><a href="#L-22"><span class="linenos">22</span></a><span class="sd">&quot;&quot;&quot;If it is allowed to overwrite a retriever that is dirty (it has been changed manually)&quot;&quot;&quot;</span>
112115
</span><span id="L-23"><a href="#L-23"><span class="linenos">23</span></a><span class="n">SHOW_VARIANT_WARNINGS</span> <span class="o">=</span> <span class="kc">True</span>
113116
</span><span id="L-24"><a href="#L-24"><span class="linenos">24</span></a><span class="sd">&quot;&quot;&quot;If warnings about incorrect variants should be shown or not&quot;&quot;&quot;</span>
114-
</span><span id="L-25"><a href="#L-25"><span class="linenos">25</span></a>
115-
</span><span id="L-26"><a href="#L-26"><span class="linenos">26</span></a><span class="c1"># Charset settings</span>
116-
</span><span id="L-27"><a href="#L-27"><span class="linenos">27</span></a><span class="n">MAIN_CHARSET</span> <span class="o">=</span> <span class="s2">&quot;utf-8&quot;</span>
117-
</span><span id="L-28"><a href="#L-28"><span class="linenos">28</span></a><span class="sd">&quot;&quot;&quot;The charset used to decode the text in the scenario. If it fails, will try the settings.FALLBACK_CHARSET&quot;&quot;&quot;</span>
118-
</span><span id="L-29"><a href="#L-29"><span class="linenos">29</span></a><span class="n">FALLBACK_CHARSET</span> <span class="o">=</span> <span class="s2">&quot;latin-1&quot;</span>
119-
</span><span id="L-30"><a href="#L-30"><span class="linenos">30</span></a><span class="sd">&quot;&quot;&quot;The charset used to decode the text in the scenario when the settings.MAIN_CHARSET fails&quot;&quot;&quot;</span>
120-
</span><span id="L-31"><a href="#L-31"><span class="linenos">31</span></a>
121-
</span><span id="L-32"><a href="#L-32"><span class="linenos">32</span></a><span class="n">ENABLE_XS_CHECK_INTEGRATION</span> <span class="o">=</span> <span class="kc">True</span>
122-
</span><span id="L-33"><a href="#L-33"><span class="linenos">33</span></a><span class="sd">&quot;&quot;&quot;If the xs-check integration should be active. If set to False, xs-check will not be used anywhere&quot;&quot;&quot;</span>
117+
</span><span id="L-25"><a href="#L-25"><span class="linenos">25</span></a><span class="n">SHOW_SCENARIO_VERSION_WARNINGS</span> <span class="o">=</span> <span class="kc">True</span>
118+
</span><span id="L-26"><a href="#L-26"><span class="linenos">26</span></a><span class="sd">&quot;&quot;&quot;If warnings about reading multiple scenario versions should be shown or not&quot;&quot;&quot;</span>
119+
</span><span id="L-27"><a href="#L-27"><span class="linenos">27</span></a>
120+
</span><span id="L-28"><a href="#L-28"><span class="linenos">28</span></a><span class="c1"># Charset settings</span>
121+
</span><span id="L-29"><a href="#L-29"><span class="linenos">29</span></a><span class="n">MAIN_CHARSET</span> <span class="o">=</span> <span class="s2">&quot;utf-8&quot;</span>
122+
</span><span id="L-30"><a href="#L-30"><span class="linenos">30</span></a><span class="sd">&quot;&quot;&quot;The charset used to decode the text in the scenario. If it fails, will try the settings.FALLBACK_CHARSET&quot;&quot;&quot;</span>
123+
</span><span id="L-31"><a href="#L-31"><span class="linenos">31</span></a><span class="n">FALLBACK_CHARSET</span> <span class="o">=</span> <span class="s2">&quot;latin-1&quot;</span>
124+
</span><span id="L-32"><a href="#L-32"><span class="linenos">32</span></a><span class="sd">&quot;&quot;&quot;The charset used to decode the text in the scenario when the settings.MAIN_CHARSET fails&quot;&quot;&quot;</span>
125+
</span><span id="L-33"><a href="#L-33"><span class="linenos">33</span></a>
126+
</span><span id="L-34"><a href="#L-34"><span class="linenos">34</span></a><span class="n">ENABLE_XS_CHECK_INTEGRATION</span> <span class="o">=</span> <span class="kc">True</span>
127+
</span><span id="L-35"><a href="#L-35"><span class="linenos">35</span></a><span class="sd">&quot;&quot;&quot;If the xs-check integration should be active. If set to False, xs-check will not be used anywhere&quot;&quot;&quot;</span>
123128
</span></pre></div>
124129

125130

@@ -193,6 +198,20 @@ <h1 class="modulename">
193198
</div>
194199

195200

201+
</section>
202+
<section id="SHOW_SCENARIO_VERSION_WARNINGS">
203+
<div class="attr variable">
204+
<span class="name">SHOW_SCENARIO_VERSION_WARNINGS</span> =
205+
<span class="default_value">True</span>
206+
207+
208+
</div>
209+
<a class="headerlink" href="#SHOW_SCENARIO_VERSION_WARNINGS"></a>
210+
211+
<div class="docstring"><p>If warnings about reading multiple scenario versions should be shown or not</p>
212+
</div>
213+
214+
196215
</section>
197216
<section id="MAIN_CHARSET">
198217
<div class="attr variable">

0 commit comments

Comments
 (0)