|
Post by iPollox on Apr 3, 2015 8:18:26 GMT
When I click on "About" the program just crashes. Information on how I got to this bug: I firstly had GW2PAO extracted into the GW2 folder and made a shortcut to it, after a while I manually moved GW2PAO to a folder in the desktop, and changed the "Target" of the shortcut and compeltely forgot about the "Start in", whenever I clicked the "About" item the program would instantly crash. Reason being is because of: this.OpenSourceLicense = File.ReadAllText("LICENSE.txt", Encoding.Default); this.ArenaNetCopyright = File.ReadAllText("AnetCopyright.txt", Encoding.Default); Which you're forcing to the application to read a file without actually checking it exists. I'd suggest just reading these files from the Resources of the application and not an actual file in a folder, or just add a if(File.Exists(....)) then again if the file didn't exist these values would be blank, so reading from the resources (or appdata folder) would be better. Fresh log: pastebin.com/y3DE4Y2A
|
|
|
Post by Aerodin on May 4, 2015 21:31:46 GMT
I'll see what I can do. I'll try to get a more proper way of handling this in the next beta build. Thanks for the suggestions!
|
|