FIX HAS BEEN FOUND
I found a fix for the broken ISO file associations. A special thanks to margueritesu who found the patch that created this mess.
A patch that was added between 1.2 and 1.3 referring to** “x-wii-rom”** broke the ISO.
Here are the steps:
- Open konsole and type kdesu kwrite – then your password
- Navigate to /usr/share/mime/packages/freedesktop.org.xml
- Open freedesktop.org.xml
- In kwrite navigate to Edit -->Go to Line
- Type in: 7951
and press <enter> 1. At the beginning of the line 7951
type <!-- in front of <mime-type type=“application/x-wii-rom”> 1. Type in: 7972
and press <enter> 1. At the end of line 7972 – add this → after </mime-type> → - Save your changes and close kwrite
The entire “application/x-wii-rom” and “application-x-gamecube-rom” block example appears below:
<!-- <mime-type type="application/x-wii-rom">
<comment>Wii disc image</comment>
<alias type="application/x-wii-iso-image"/>
<alias type="application/x-wbfs"/>
<alias type="application/x-wia"/>
<generic-icon name="application-x-executable"/>
<glob pattern="*.iso"/>
<magic priority="50">
<match value="0x5d1c9ea3" type="big32" offset="24"/>
<match value="WBFS" type="string" offset="0"/>
<match value="WII\001DISC" type="string" offset="0"/>
</magic>
</mime-type>
<mime-type type="application/x-gamecube-rom">
<comment>GameCube disc image</comment>
<generic-icon name="application-x-executable"/>
<alias type="application/x-gamecube-iso-image"/>
<glob pattern="*.iso"/>
<magic priority="50">
<match value="0xc2339f3d" type="big32" offset="28"/>
</magic>
</mime-type> -->
**Note: **Open konsole or xterm. Type: " su - " (without the quotes) followed by your password. Then:
# update-mime-database /usr/share/mime/
Once the entire “Wii disc image” and “GameCube disc image” block has been commented out the ISO image files return to their correct association.