Skip to content

Commit

Permalink
Changed username
Browse files Browse the repository at this point in the history
Also fixed some indentation in gatelib
  • Loading branch information
Mode8fx committed Feb 2, 2024
1 parent 12d0526 commit fb3773c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ EzRO is a GUI-based rom organizer that allows you to export your local romsets i

By providing a [No-Intro](https://datomatic.no-intro.org/) Parent-Clone DAT file for each system, you can take a local romset (full or partial) and export a curated copy; you can convert a full set into 1G1R for your region, group different releases of a single game together into one folder, automatically unzip roms for emulators that don’t support zipped roms, and more.

<img src="https://github.com/Mips96/EzRO-gui/blob/main/screenshots/screenshot%201.png" />
<img src="https://github.com/Mode8fx/EzRO-gui/blob/main/screenshots/screenshot%201.png" />

## Features

Expand Down Expand Up @@ -51,7 +51,7 @@ For the most part, no. Since there are many different methods of compressing (or
### Are arcade-based systems supported?
No. For that, you're *much* better off using something like [Clrmamepro](https://mamedev.emulab.it/clrmamepro/) instead.
### I have a feature request/bug report!
Leave an [issue](https://github.com/Mips96/EzRO-gui/issues) and I’ll look into it.
Leave an [issue](https://github.com/Mode8fx/EzRO-gui/issues) and I’ll look into it.

## Example Output

Expand Down
2 changes: 1 addition & 1 deletion gatelib.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ def writeToAddress(file, address, val, numBytes=1, isLittleEndian=False):
def swapEndianness(num, numBytes):
num2 = 0
for i in range(1, numBytes + 1):
num2 += (num>>(8*(i-1)) & 0xFF)*(256**(numBytes - i))
num2 += (num>>(8*(i-1)) & 0xFF)*(256**(numBytes - i))
return num2

"""
Expand Down
4 changes: 2 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
from datetime import datetime
import webbrowser

versionNum = 1.21
versionNum = 1.22

archiveTypes = [".zip", ".rar", ".7z"]

Expand Down Expand Up @@ -2174,7 +2174,7 @@ def menu_viewHelp(self):
showinfo("Help", "Hover over certain options for further details about them. You can also click the \"?\" button on some pages for more information.")

def menu_viewAbout(self):
showinfo("About", "EzRO Rom Organizer v"+str(versionNum)+"\nhttps://github.com/Mips96/EzRO-gui\n\nQuestions? Bug reports? Feel free to leave an issue on the project GitHub!")
showinfo("About", "EzRO Rom Organizer v"+str(versionNum)+"\nhttps://github.com/Mode8fx/EzRO-gui\n\nQuestions? Bug reports? Feel free to leave an issue on the project GitHub!")

def menu_viewExternalLibraries(self):
showinfo("External Libraries", "ttkScrollableNotebook\nhttps://github.com/muhammeteminturgut/ttkScrollableNotebook\nLicensed under GPL-3.0")
Expand Down

0 comments on commit fb3773c

Please sign in to comment.