mdbraber / radiobar

macOS menubar app to listen to streaming radio
MIT License
56 stars 7 forks source link

Python works, App does not #3

Closed jappyjan closed 2 years ago

jappyjan commented 4 years ago

When compiled to a ".app" file the app does not start. Instead i get an error message "RadioBar Error" with the options "Open Console" and "Terminate". Clicking on "Open Console" opens the system Error Console, but does not offer any help...

mdbraber commented 4 years ago

Did you try starting the Application binary separately in a Terminal? It's /Applications/RadioBar.app/Contents/MacOS/RadioBar if you installed it under Applications. What does that give you in the Terminal?

the-leonat commented 3 years ago

i could link this to a an error in formatting of the channels.json file. remember: the last element in a list should not have a trailing comma:


{
  list: [
    element,
    element // <-- no comma
 ]
}