mirror of
https://github.com/wez/wezterm.git
synced 2024-11-09 22:15:15 +03:00
b1bc74d31f
This commit switches back to wezterm-icon.svg as the source of
the icon, but modifies it:
* Removed mac style title bar + window manipulation icons
* Increases the corner radius
* Adjusts the text position and size
This makes it somewhere between the original and one of the alternate
icons in 98b71cbfb6
I chose to modify the original source as it didn't have padding
baked into the svg file, and I didn't feel like wrestling with
the contributed svg in inkscape to remove it.
13 lines
524 B
Bash
Executable File
13 lines
524 B
Bash
Executable File
#!/bin/bash
|
|
set -x
|
|
|
|
[[ -f /tmp/wezterm.releases.json ]] || curl https://api.github.com/repos/wez/wezterm/releases > /tmp/wezterm.releases.json
|
|
[[ -f /tmp/wezterm.nightly.json ]] || curl https://api.github.com/repos/wez/wezterm/releases/tags/nightly > /tmp/wezterm.nightly.json
|
|
python3 ci/subst-release-info.py || exit 1
|
|
python3 ci/generate-docs.py || exit 1
|
|
mdbook build docs
|
|
|
|
rm gh_pages/html/README.markdown
|
|
cp assets/icon/terminal.png gh_pages/html/favicon.png
|
|
cp "assets/icon/wezterm-icon.svg" gh_pages/html/favicon.svg
|