chore(main): release 1.0.4
This commit is contained in:
committed by
GitHub
parent
3cb2f3ab4a
commit
c4d18ae526
@@ -1,3 +1,3 @@
|
||||
{
|
||||
".": "1.0.3"
|
||||
".": "1.0.4"
|
||||
}
|
||||
|
12
CHANGELOG.md
12
CHANGELOG.md
@@ -1,5 +1,17 @@
|
||||
# Changelog
|
||||
|
||||
## [1.0.4](https://github.com/catppuccin/gtk/compare/v1.0.3...v1.0.4) (2024-06-01)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* alt tab menu ([#209](https://github.com/catppuccin/gtk/issues/209)) ([cae57c8](https://github.com/catppuccin/gtk/commit/cae57c80f81fd1cc40fab2655109b09fa97103b9))
|
||||
|
||||
|
||||
### Performance Improvements
|
||||
|
||||
* improving performance, layout ([#215](https://github.com/catppuccin/gtk/issues/215)) ([cadc3e2](https://github.com/catppuccin/gtk/commit/cadc3e2ac24f93c6641f9f87ee5d044433c65ce7))
|
||||
|
||||
## [1.0.3](https://github.com/catppuccin/gtk/compare/v1.0.2...v1.0.3) (2024-06-01)
|
||||
|
||||
|
||||
|
@@ -31,7 +31,7 @@ We provide a Python script to automate the process of installing the theme:
|
||||
<!-- x-release-please-start-version -->
|
||||
|
||||
```bash
|
||||
curl -LsSO "https://raw.githubusercontent.com/catppuccin/gtk/v1.0.3/install.py"
|
||||
curl -LsSO "https://raw.githubusercontent.com/catppuccin/gtk/v1.0.4/install.py"
|
||||
python3 install.py <flavor> <accent>
|
||||
[catppuccin-gtk] [INFO] - Installation info:
|
||||
flavor: mocha
|
||||
@@ -39,7 +39,7 @@ python3 install.py <flavor> <accent>
|
||||
dest: /home/<user>/.local/share/themes
|
||||
link: False
|
||||
|
||||
remote_url: https://github.com/catppuccin/gtk/releases/download/v1.0.3/catppuccin-mocha-blue-standard+default.zip
|
||||
remote_url: https://github.com/catppuccin/gtk/releases/download/v1.0.4/catppuccin-mocha-blue-standard+default.zip
|
||||
[catppuccin-gtk] [INFO] - Starting download...
|
||||
[catppuccin-gtk] [INFO] - Response status: 200
|
||||
[catppuccin-gtk] [INFO] - Download finished, zip is valid
|
||||
@@ -103,7 +103,7 @@ sudo flatpak override --env=GTK_THEME="catppuccin-${FLAVOR}-${ACCENT}-standard+d
|
||||
|
||||
### Manual installation
|
||||
|
||||
If your distro does not package our theme, and the installation script will not work for your use case, you can pull down releases and extract them yourself. You can find the [latest release on GitHub](https://github.com/catppuccin/gtk/releases/tag/v1.0.3).
|
||||
If your distro does not package our theme, and the installation script will not work for your use case, you can pull down releases and extract them yourself. You can find the [latest release on GitHub](https://github.com/catppuccin/gtk/releases/tag/v1.0.4).
|
||||
|
||||
```bash
|
||||
cd ~/.local/share/themes
|
||||
@@ -112,7 +112,7 @@ cd ~/.local/share/themes
|
||||
export ROOT_URL="https://https://github.com/catppuccin/gtk/releases/download"
|
||||
|
||||
# Change to the tag you want to download
|
||||
export RELEASE="v1.0.3"
|
||||
export RELEASE="v1.0.4"
|
||||
|
||||
# Change to suite your flavor / accent combination
|
||||
export FLAVOR="mocha"
|
||||
|
@@ -98,7 +98,7 @@ def parse_args():
|
||||
|
||||
def build_release_url(ctx: InstallContext) -> str:
|
||||
repo_root = "https://github.com/catppuccin/gtk/releases/download"
|
||||
release = "v1.0.3" # x-release-please-version
|
||||
release = "v1.0.4" # x-release-please-version
|
||||
zip_name = f"catppuccin-{ctx.flavor}-{ctx.accent}-standard+default.zip"
|
||||
|
||||
return f"{repo_root}/{release}/{zip_name}"
|
||||
|
Reference in New Issue
Block a user