Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .SRCINFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pkgbase = coolerdash
pkgdesc = Plug-in for CoolerControl that extends the LCD functionality with additional features
pkgver = 3.0.5
pkgver = 2.1.0
pkgrel = 1
url = https://github.com/damachine/coolerdash
install = coolerdash.install
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gitlab.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
uses: actions/checkout@v4
with:
fetch-depth: 0 # Fetch complete history for proper sync

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ jobs:
# openSUSE family
- distro: "opensuse/tumbleweed"
name: "openSUSE Tumbleweed"
pre_install: "zypper refresh"
pre_install: "zypper --gpg-auto-import-keys refresh || true"
install_deps: "zypper install -y tar sudo systemd cairo-devel libcurl-devel gcc make pkg-config libjansson-devel google-roboto-fonts file"

- distro: "opensuse/leap:16.0"
name: "openSUSE Leap 16.0"
pre_install: "zypper refresh"
pre_install: "zypper --gpg-auto-import-keys refresh || true"
install_deps: "zypper install -y sudo systemd cairo-devel libcurl-devel gcc make pkg-config libjansson-devel google-roboto-fonts file"

container:
Expand Down Expand Up @@ -125,12 +125,12 @@ jobs:
exit 1
fi

# Check CC-Plugin Lib JS files
# Check CC-Plugin Lib JS is NOT installed (served by CoolerControl)
if [ -f "/tmp/install-test/etc/coolercontrol/plugins/coolerdash/ui/cc-plugin-lib.js" ]; then
echo "✅ Plugin Lib JS files installed"
else
echo "❌ Plugin Lib JS files not found"
echo "❌ Plugin Lib JS should NOT be installed (served by CoolerControl)"
exit 1
else
echo "✅ Plugin Lib JS correctly not installed (served by CoolerControl)"
fi

# Check desktop files
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
commit_sha: ${{ steps.commit.outputs.sha }}
steps:
- name: Checkout code
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -178,7 +178,7 @@ jobs:
git

- name: Checkout code
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
uses: actions/checkout@v4
with:
ref: master
fetch-depth: 0
Expand Down Expand Up @@ -259,7 +259,7 @@ jobs:
if: github.ref == 'refs/heads/master'
steps:
- name: Checkout code
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -308,7 +308,7 @@ jobs:
git push origin "$TAG"

- name: Create GitHub Release
uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ needs.prepare-version.outputs.tag }}
name: ${{ needs.prepare-version.outputs.release_msg }}
Expand Down Expand Up @@ -445,7 +445,7 @@ jobs:
ls -lh SHA256SUMS*

- name: Upload packages to release
uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ needs.prepare-version.outputs.tag }}
files: |
Expand All @@ -466,7 +466,7 @@ jobs:
if: github.ref == 'refs/heads/master'
steps:
- name: Checkout main repository
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
Loading
Loading