{% macro sidebar(dismiss_offcanvas=false) -%} {%- endmacro %}
配置导航
{{ sidebar(true) }}
{% if saved %}
已保存覆盖到本地文件。
{% endif %}
没有匹配项(尝试清空搜索/取消“只看已修改”)。
server.ini
按项编辑 · {{ ini_settings | length }} 项
点击每项右侧“详情”查看完整中文说明
{% for s in ini_settings %}
{{ s.path }} {{ s.value_type }} {% if s.default_value %}默认 {{ s.default_value }}{% endif %} {% if s.min_value is not none %}Min {{ s.min_value }}{% endif %} {% if s.max_value is not none %}Max {{ s.max_value }}{% endif %}
{{ s.description_zh.split('\n', 1)[0] }}
{{ s.description_zh }}
{% set name = 'ini__' ~ s.path %} {% if s.choices %} {% elif s.value_type == 'bool' %} {% elif s.value_type in ['int','float'] %} {% else %} {% set v = s.value | string %} {% if v | length > 80 or s.path in long_text_keys %} {% else %} {% endif %} {% endif %}
{% endfor %}
{% for g in lua_groups %}
SandboxVars · {{ g.name }}
按项编辑 · {{ g.count }} 项
点击每项右侧“详情”查看完整中文/英文说明
{% for s in g.settings %}
{{ s.path }} {{ s.value_type }} {% if s.default_value %}默认 {{ s.default_value }}{% endif %} {% if s.min_value is not none %}Min {{ s.min_value }}{% endif %} {% if s.max_value is not none %}Max {{ s.max_value }}{% endif %} {% if s.choices %}枚举{% endif %}
{{ s.description_zh.split('\n', 1)[0] }}
{{ s.description_zh }}
{{ s.description_en or '' }}
{% set name = 'lua__' ~ s.path %} {% if s.choices %} {% elif s.value_type == 'bool' %} {% elif s.value_type in ['int','float'] %} {% else %} {% set v = s.value | string %} {% if v | length > 80 or s.path in long_text_keys %} {% else %} {% endif %} {% endif %}
{% endfor %}
{% endfor %}