Compare commits

..

No commits in common. "f611689077f09b8c35ed0924d12eb47f0f9a4132" and "052c8d9d2456be16e127e0520b8b85182c86bc08" have entirely different histories.

4 changed files with 21 additions and 56 deletions

View file

@ -6,7 +6,6 @@ import subprocess
import tempfile
from pathlib import Path
import argparse
import os
# Load configuration from config.ini
config = configparser.ConfigParser()
@ -110,29 +109,21 @@ def update_setup_file(setup_file_path, zip_files, base_url):
with open(setup_file_path, 'r') as file:
lines = file.readlines()
# Find the table in the setup.md file
table_header_found = False
table_alignment_found = False
table_start_index = None
table_end_index = None
# Look for a line containing "Version" and "Download" and "SHA1" to identify the table header
# Identify the table header and alignment rows
for index, line in enumerate(lines):
if '|' in line and 'Version' in line and 'Download' in line and 'SHA1' in line:
if line.strip() == '| Version | Download | SHA1 Hash |':
table_header_found = True
table_start_index = index
# The next line should be the alignment row
if index + 1 < len(lines) and '|:' in lines[index + 1]:
# Find the end of the table - look for the next line that doesn't start with '|'
for end_index in range(index + 2, len(lines)):
if not lines[end_index].strip().startswith('|'):
table_end_index = end_index
break
# If we reached the end of the file
if table_end_index is None:
table_end_index = len(lines)
break
print(f"Table detected: start={table_start_index}, end={table_end_index}")
new_lines = lines # Initialize new_lines to avoid UnboundLocalError
elif table_header_found and line.strip() == '|:---:|:---:|---|':
table_alignment_found = True
elif table_header_found and table_alignment_found and line.strip() == '':
table_end_index = index
break
if table_start_index is not None and table_end_index is not None:
# Prepare to insert new rows
@ -172,48 +163,18 @@ def update_setup_file(setup_file_path, zip_files, base_url):
else:
print("No new rows to add.")
# Get the last modification time of setup.md
setup_mtime = os.path.getmtime(setup_file_path)
# Recalculate SHA1 for all ZIP files
for zip_file in zip_files:
version = extract_version_info(zip_file)
if version:
# Check if ZIP file was modified after setup.md
if os.path.getmtime(zip_file) > setup_mtime:
new_sha1 = calculate_sha1(zip_file)
# Find and update the corresponding line
for i, line in enumerate(new_lines):
if version in line and 'Click here' in line:
# Update the SHA1 checksum in the line
new_lines[i] = re.sub(r'`[a-f0-9]{40}`', f'`{new_sha1}`', line)
print(f"Force updating {version} due to file modification")
break
with open(setup_file_path, 'w') as file:
print(f'Writing {len(new_lines)} lines to {setup_file_path}')
file.writelines(new_lines)
# Verify changes
with open(setup_file_path, 'r') as file:
content = file.read()
print(f'Current content of {setup_file_path}:\n{content}')
def commit_and_push_changes():
"""Commit and push changes to the repository."""
print(f"Committing and pushing changes to {REPO_DIR}")
# Add the file to the index
run_command(f'cd {REPO_DIR} && git add {SETUP_FILE_PATH}')
# Check if there are changes to commit
status = run_command(f'cd {REPO_DIR} && git status --porcelain')
if not status.strip():
print("No changes to commit.")
return
# Commit and push if there are changes
run_command(f'cd {REPO_DIR} && git commit -m "Update vehicle setup file with correct paths and SHA1 checksums"')
run_command(f'cd {REPO_DIR} && git push origin {BRANCH}')
result = run_command(f'cd {REPO_DIR} && git commit -m "Update vehicle setup file with correct paths and SHA1 checksums"')
if 'nothing to commit' in result:
print("No changes detected.")
else:
run_command(f'cd {REPO_DIR} && git push origin {BRANCH}')
def cleanup():
"""Remove the temp directory."""
@ -228,7 +189,7 @@ def main():
paths = get_version_paths(args.version)
global REPO_URL, REPO_DIR, SETUP_FILE_PATH, RESOURCE_PACK_DIR, BASE_URL, VERSIONS_FILE_PATH
REPO_URL = f'https://{USERNAME}:{PASSWORD}@git.sbdevelopment.tech/SBDevelopment/SBDocs'
REPO_URL = f'https://{USERNAME}:{PASSWORD}@git.sbdevelopment.tech/SBDevelopment/docs'
REPO_DIR = tempfile.mkdtemp()
SETUP_FILE_PATH = paths['setup_file_path']
RESOURCE_PACK_DIR = paths['resource_pack_dir']

View file

@ -12,4 +12,5 @@
22#1.20.3-1.20.4
32#1.20.5-1.20.6
34#1.21-1.21.1
42#1.21.2-1.21.3
42#1.21.2-1.21.3
46#1.21.4

View file

@ -1,3 +1,6 @@
4#1.13.2-1.14.4
5#1.15.2-1.16.1
6#1.16.2-1.16.5
7#1.17-1.17.1
8#1.18-1.18.2
9#1.19-1.19.2