Skip to content

Commit fb3773c

Browse files
committed
Changed username
Also fixed some indentation in gatelib
1 parent 12d0526 commit fb3773c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ EzRO is a GUI-based rom organizer that allows you to export your local romsets i
44

55
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.
66

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

99
## Features
1010

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

5656
## Example Output
5757

gatelib.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ def writeToAddress(file, address, val, numBytes=1, isLittleEndian=False):
331331
def swapEndianness(num, numBytes):
332332
num2 = 0
333333
for i in range(1, numBytes + 1):
334-
num2 += (num>>(8*(i-1)) & 0xFF)*(256**(numBytes - i))
334+
num2 += (num>>(8*(i-1)) & 0xFF)*(256**(numBytes - i))
335335
return num2
336336

337337
"""

main.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
from datetime import datetime
4040
import webbrowser
4141

42-
versionNum = 1.21
42+
versionNum = 1.22
4343

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

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

21762176
def menu_viewAbout(self):
2177-
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!")
2177+
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!")
21782178

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

0 commit comments

Comments
 (0)