kofigumbs / multi

Create custom, lightweight macOS apps from websites
GNU General Public License v3.0
1.29k stars 40 forks source link

Broken in macOS 14.0 (Sonoma) public beta #116

Closed jinhao-luo closed 1 year ago

jinhao-luo commented 1 year ago

Got Expecting an OBJECT FIELD named "tabs" in an empty setting window(see attachment) when opening a Multi app. The app was working in macOS 13 (Ventura)

macOS: 14.0 Beta (23A5286i)

Screenshot 2023-07-16 at 1 39 49 PM
kofigumbs commented 1 year ago

This doesn't seem related to the macOS version. The config in your picture is invalid since it doesn't have a "tabs" field. You need to have a valid JSON config in order to create an ap.

jinhao-luo commented 1 year ago

@kofigumbs That seems to be part of the problem. If I look into <path-to-my>.app/Contents/Resources/config.json, the config seems correct (and looks like this):

{
  "tabs": [
    {
      "title": "<my>",
      "url": "https://<app>.com"
    }
  ]
}
kofigumbs commented 1 year ago

Ahh gotcha, I misunderstood.

kofigumbs commented 1 year ago

Could you please try recreating your app in v3.0.0 and let me know if the issue persists?

jinhao-luo commented 1 year ago

Issue is resolved after recreating new apps with v3.0.0 Thanks @kofigumbs! ❤️