scottrice / Ice

Application to automatically add ROMs to Steam
http://scottrice.github.io/Ice/
MIT License
835 stars 96 forks source link

rom.py small issue that I fixed #284

Closed ghost closed 9 years ago

ghost commented 9 years ago

Yesterday while running the newest version of Ice I noticed that it was categorizing all my games in a Steam category named ~ManagedByIce. I was finding no fix for this until I decided to delve into the files ice uses and looked at rom.py and there are two key things in there:

ICE_FLAG_TAG = "~ManagedByIce"

and

def to_shortcut(self): appname = self.prefixed_name() exe = self.console.emulator.command_string(self) startdir = self.console.emulator.startdir(self) icon = self.console.icon category = self.console.fullname tags = [ICE_FLAG_TAG, category] return Shortcut(appname, exe, startdir, icon, tags)

That tag section was "breaking" the rom import so all I had to do was

tags = [category]

And ice started working as fine as usual.

While I can't tell you to remove this, because I have no idea what you're going for and I have little to no programming experience, but I still thought it was important to mention this to you and other users who might have this problem.

Amazing software and keep doing amazing work Scott :D