resources/macos: better macos installer background (#1816)
This commit is contained in:
parent
3878e466e2
commit
062f8dd1ff
|
@ -12,7 +12,9 @@ This folder contains resources that is used for building or packaging the projec
|
||||||
- `icons/icon.{icns,ico,inl,rc,svg}`: lite-xl icon in various formats.
|
- `icons/icon.{icns,ico,inl,rc,svg}`: lite-xl icon in various formats.
|
||||||
- `linux/com.lite_xl.LiteXL.appdata.xml`: AppStream metadata.
|
- `linux/com.lite_xl.LiteXL.appdata.xml`: AppStream metadata.
|
||||||
- `linux/com.lite_xl.LiteXL.desktop`: Desktop file for Linux desktops.
|
- `linux/com.lite_xl.LiteXL.desktop`: Desktop file for Linux desktops.
|
||||||
- `macos/dmg-cover.png`: Background image for packaging macOS DMGs.
|
- `macos/background.png`: Background image for packaging macOS DMGs.
|
||||||
|
- `macos/background@2x.png`: HiDPI image for packaging macOS DMGs.
|
||||||
|
- `macos/background.tiff`: TIFF image for packaging macOS DMGs.
|
||||||
- `macos/Info.plist.in`: Template for generating `info.plist` on macOS. See `macos/macos-retina-display.md` for details.
|
- `macos/Info.plist.in`: Template for generating `info.plist` on macOS. See `macos/macos-retina-display.md` for details.
|
||||||
- `macos/lite-xl-dmg.py`: Configuration options for dmgbuild for packaging macOS DMGs.
|
- `macos/lite-xl-dmg.py`: Configuration options for dmgbuild for packaging macOS DMGs.
|
||||||
- `windows/001-lua-unicode.diff`: Patch for allowing Lua to load files with UTF-8 filenames on Windows.
|
- `windows/001-lua-unicode.diff`: Patch for allowing Lua to load files with UTF-8 filenames on Windows.
|
||||||
|
@ -21,5 +23,23 @@ This folder contains resources that is used for building or packaging the projec
|
||||||
|
|
||||||
- `include/lite_xl_plugin_api.h`: Native plugin API header. See the contents of `lite_xl_plugin_api.h` for more details.
|
- `include/lite_xl_plugin_api.h`: Native plugin API header. See the contents of `lite_xl_plugin_api.h` for more details.
|
||||||
|
|
||||||
|
### macOS DMG covers
|
||||||
|
|
||||||
|
The DMG files uses `macos/background.tiff` as the background, which is created from
|
||||||
|
`macos/background.png` and `macos/background@2x.png` with the following command:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
tiffutil -cathidpicheck macos/background.png macos/background@2x.png -out macos/background.tiff
|
||||||
|
```
|
||||||
|
|
||||||
|
`macos/background@2x.png` should be double the size of `macos/background.png` with 144 PPI.
|
||||||
|
You can set the PPI by running:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
sips -s dpiWidth 144 -s dpiHeight 144 macos/background@2x.png
|
||||||
|
```
|
||||||
|
|
||||||
|
`sips` and `tiffutil` are available by default on macOS.
|
||||||
|
|
||||||
|
|
||||||
[1]: https://mesonbuild.com/Cross-compilation.html
|
[1]: https://mesonbuild.com/Cross-compilation.html
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 7.6 KiB |
Binary file not shown.
Binary file not shown.
After Width: | Height: | Size: 22 KiB |
Binary file not shown.
Before Width: | Height: | Size: 6.0 KiB |
|
@ -8,21 +8,23 @@ app_name = os.path.basename(app_path)
|
||||||
# Image options
|
# Image options
|
||||||
format = defines.get("format", "UDZO")
|
format = defines.get("format", "UDZO")
|
||||||
|
|
||||||
|
# all sizes here are in points (pt)s
|
||||||
|
# for reference, size-in-points = size-in-pixels * 72 / dpi
|
||||||
|
# background DPI is 300, icon DPI is assumed to be 96
|
||||||
|
|
||||||
# Content options
|
# Content options
|
||||||
files = [(app_path, app_name)]
|
files = [(app_path, app_name)]
|
||||||
symlinks = { "Applications": "/Applications" }
|
symlinks = {"Applications": "/Applications"}
|
||||||
icon = "resources/icons/icon.icns"
|
icon = "resources/icons/icon.icns"
|
||||||
icon_locations = {
|
icon_locations = {app_name: (170, 140), "Applications": (384, 140)}
|
||||||
app_name: (144, 248),
|
|
||||||
"Applications": (336, 248)
|
|
||||||
}
|
|
||||||
|
|
||||||
# Window options
|
# Window options
|
||||||
background = "resources/macos/dmg-cover.png"
|
background = "resources/macos/background.tiff"
|
||||||
window_rect = ((360, 360), (480, 380))
|
window_rect = ((100, 338), (550, 362))
|
||||||
default_view = "coverflow"
|
default_view = "coverflow"
|
||||||
include_icon_view_settings = True
|
include_icon_view_settings = True
|
||||||
|
show_icon_preview = True
|
||||||
|
|
||||||
# Icon view options
|
# Icon view options
|
||||||
icon_size = 80
|
icon_size = 128
|
||||||
text_size = 11.0
|
text_size = 13
|
||||||
|
|
Loading…
Reference in New Issue