3snowp7im / urn

Split tracker / timer with GTK+ frontend
GNU General Public License v3.0
126 stars 36 forks source link

Segmentation fault on opening file #13

Closed TheReturningVoid closed 8 years ago

TheReturningVoid commented 8 years ago

Hello,

Every time I try to open this split file, Urn crashes with a segmentation fault. I'm running Arch Linux (installed urn from AUR package urn-git). Here's the split file I'm using:

{
  "title":"Pokemon Blue Any% No Save Corruption"
}

If anyone knows how to fix this, that would be greatly appreciated.

Thanks!

jsteel44 commented 8 years ago

I just came across this issue (also on Arch) and found it needed the splits key at a minimum, so this works:

{
  "title": "My Title",
  "splits": [
    {
      "title": "Split Title"
    }
  ]
}

See https://github.com/3snowp7im/urn/blob/master/splits/sotn.json for a good example.

TheReturningVoid commented 8 years ago

That seems to work. Thanks!