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

Отображение наших обновлений в виде красной кнопки #391

Merged
merged 2 commits into from
Sep 2, 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
2 changes: 1 addition & 1 deletion Resources/Locale/ru-RU/changelog/changelog-window.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ changelog-version-tag = версия v{ $version }
changelog-button = Обновления
changelog-button-new-entries = Обновления (!)
changelog-tab-title-Changelog = Список изменений
changelog-tab-title-ChangelogADT = Время Приключений
changelog-tab-title-1ChangelogADT = Время Приключений
changelog-tab-title-Admin = Админское
4 changes: 2 additions & 2 deletions Tools/ADT/auto_cl.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import yaml

FILE_PATH = Path(__file__).resolve()
CHANGELOG_PATH = FILE_PATH.parents[2] / "Resources" / "Changelog" / "ChangelogADT.yml"
CHANGELOG_PATH = FILE_PATH.parents[2] / "Resources" / "Changelog" / "1ChangelogADT.yml"
OLD_CHANGELOG_PATH = FILE_PATH.parent / "cl_old.yml"


Expand Down Expand Up @@ -203,7 +203,7 @@ def update_cl_file(file_path, new_data):

save_yaml({"Entries": combined_data}, file_path)

logging.info("Updated PR data saved to ChangelogADT.yml")
logging.info("Updated PR data saved to 1ChangelogADT.yml")


async def main():
Expand Down
Loading