App bundle almost working... + add icon, readme

This commit is contained in:
n loewen 2024-05-06 18:18:21 -07:00
parent 2df4414baa
commit 2100a2f3f7
8 changed files with 92 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.DS_Store

8
readme.md Normal file
View File

@ -0,0 +1,8 @@
# VidGrid
## TODO
- it works when you run it from the terminal (`open VidGrid.app`), but it doesn't work when you double-click...
- would it help if we popped up a terminal window?
- see https://relentlesscoding.com/posts/create-macos-app-bundle-from-script/
- fix hardcoded screen resolution

Binary file not shown.

BIN
src/icon/vidgrid-icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 104 KiB

69
src/icon/vidgrid-icon.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 16 KiB

View File

@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleName</key>
<string>VidGrid</string>
<key>CFBundleExecutable</key>
<string>VidGrid</string>
<key>CFBundleIdentifier</key>
<string>com.nloewen.vidgrid</string>
<key>CFBundleIconFile</key>
<string>512-apps-vidgrid.png</string>
</dict>
</plist>

Binary file not shown.

After

Width:  |  Height:  |  Size: 104 KiB