Skip to content

Commit

Permalink
change repo name for CI (not for upstream)
Browse files Browse the repository at this point in the history
  • Loading branch information
dantob committed Feb 13, 2025
1 parent 3cea66f commit bbd0843
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Auto DAT file generator

![Daily Rebuild Status](https://github.com/hugo19941994/auto-datfile-generator/actions/workflows/daily-rebuild.yml/badge.svg)
![Daily Rebuild Status](https://github.com/dantob/auto-datfile-generator/actions/workflows/daily-rebuild.yml/badge.svg)

WWW profiles to use in clrmamepro for the standard No-Intro and Redump sets.
Refreshes once every 24h automatically.
Expand All @@ -9,15 +9,15 @@ Refreshes once every 24h automatically.

### No-Intro

`https://github.com/hugo19941994/auto-datfile-generator/releases/latest/download/no-intro.xml`
`https://github.com/dantob/auto-datfile-generator/releases/latest/download/no-intro.xml`

### No-Intro (parent-clone)

`https://github.com/hugo19941994/auto-datfile-generator/releases/latest/download/no-intro_parent-clone.xml`
`https://github.com/dantob/auto-datfile-generator/releases/latest/download/no-intro_parent-clone.xml`

### Redump

`https://github.com/hugo19941994/auto-datfile-generator/releases/latest/download/redump.xml`
`https://github.com/dantob/auto-datfile-generator/releases/latest/download/redump.xml`

<!-- disabled for CI failures -->
<!-- ### Hardware Target Game Database
Expand Down
2 changes: 1 addition & 1 deletion dats-site.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@

# URL tag in XML
ET.SubElement(
tag_datfile, 'url').text = f'https://github.com/hugo19941994/auto-datfile-generator/releases/latest/download/dats-site.zip'
tag_datfile, 'url').text = f'https://github.com/dantob/auto-datfile-generator/releases/latest/download/dats-site.zip'

# File tag in XML
originalFileName = re.findall(regex['filename'], content_header)[0]
Expand Down
2 changes: 1 addition & 1 deletion no-intro.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@
print(temp_name)

# URL tag in XML
ET.SubElement(tag_datfile, "url").text = f"https://github.com/hugo19941994/auto-datfile-generator/releases/latest/download/{archive_name}"
ET.SubElement(tag_datfile, "url").text = f"https://github.com/dantob/auto-datfile-generator/releases/latest/download/{archive_name}"

# File tag in XML
file_name = dat
Expand Down
2 changes: 1 addition & 1 deletion redump.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
URL_HOME = "http://redump.org/"
URL_DOWNLOADS = "http://redump.org/downloads/"
XML_FILENAME = "redump.xml"
XML_URL = "https://github.com/hugo19941994/auto-datfile-generator/releases/latest/download/redump.zip"
XML_URL = "https://github.com/dantob/auto-datfile-generator/releases/latest/download/redump.zip"

regex = {
"datfile" : r'<a href="/datfile/(.*?)">',
Expand Down
2 changes: 1 addition & 1 deletion smdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def generate(txt, platform, txt_date, zf):
description = etree.SubElement(df, 'description')
description.text = platform
url_xml = etree.SubElement(df, 'url')
url_xml.text = 'https://github.com/hugo19941994/auto-datfile-generator/releases/latest/download/smdb.zip'
url_xml.text = 'https://github.com/dantob/auto-datfile-generator/releases/latest/download/smdb.zip'
file_xml = etree.SubElement(df, 'file')
file_xml.text = f'datfile_{platform.replace(" ", "_").lower()}.dat'
author_xml = etree.SubElement(df, 'author')
Expand Down

0 comments on commit bbd0843

Please sign in to comment.