fix: update mod descriptions and remove outdated emojis and fixing shelving

- Remove optional dependency note for Dynamic FPS
- Clean up emojis in General Gameplay & Utilities section
- Mark CarryOn as deprecated in configs
- Add changelog entry for 2026-07-14 about TechReborn automation
- Improve formatting in the Russian changelog section
This commit is contained in:
2026-07-16 12:11:10 +03:00
parent d284b419b8
commit 56c19947ec
4 changed files with 44 additions and 15 deletions

View File

@ -24,7 +24,7 @@ mkdir -p "${SHELF_DIR}"
# Функция для перемещения кастомных модов в карман
shelve_custom_mods() {
for keyword in "${CUSTOM_MOD_KEYWORDS[@]}"; do
find mods -name "*${keyword}*" -type f -exec mv -v {} "${SHELF_DIR}" \;
find mods -maxdepth 1 -name "*${keyword}*" -type f -exec mv -v {} "${SHELF_DIR}" \;
done
}