We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi I'm trying to specify the size of the windows but it's doesn't work, here is what I've done:
{ "title": "test", "background": "2.png", "icon-size": 90, "window": { "size": { "width": 600, "height": 500, }, }, "contents": [ { "x": 100, "y": 350, "type": "file", "path": "test.app" }, { "x": 600, "y": 350, "type": "link", "path": "/Applications" } ] }
The text was updated successfully, but these errors were encountered:
did you find a solution?
Sorry, something went wrong.
This is the correct way to set window size for the DMG package.
You JSON must be fixed because it is not valid:
Error: Parse error on line 8: ... "height": 500, }, }, "contents" ----------------------^ Expecting 'STRING', got '}'
{ "title": "test", "background": "2.png", "icon-size": 90, "window": { "size": { "width": 600, "height": 500 } }, "contents": [ { "x": 100, "y": 350, "type": "file", "path": "test.app" }, { "x": 600, "y": 350, "type": "link", "path": "/Applications" } ] }
No branches or pull requests
Hi
I'm trying to specify the size of the windows but it's doesn't work, here is what I've done:
The text was updated successfully, but these errors were encountered: