mirror of
https://github.com/Termix-SSH/Termix.git
synced 2026-07-12 10:07:05 +00:00
e0725848a9
* chore: fix release workflow to merge docs branch * fix: svg donation generator push fail * fix: svg donation generator push fail * Update termix.rb * fix: svg donation generator push fail * chore: move donation badge to badges branch to avoid ruleset conflicts * chore: remove unneeded token from donation badge workflow * chore: debug donation badge commit step * fix: escape < character in donation SVG * fix: point donation badge to badges branch * chore: remove unused donation badge svg from main * Add Rack Genius logo to README Added Rack Genius logo to the README. * chore: improve donation goal svg generator to include stablecoins * chore: donation goal generator syntax error * chore: donation goal generator incorrect docs url usage * chore(deps): bump node in /docker in the docker-major-updates group Bumps the docker-major-updates group in /docker with 1 update: node. Updates `node` from 24-slim to 26-slim --- updated-dependencies: - dependency-name: node dependency-version: 26-slim dependency-type: direct:production dependency-group: docker-major-updates ... Signed-off-by: dependabot[bot] <support@github.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: LukeGus <bugattiguy527@gmail.com> Co-authored-by: Luke Gustafson <88517757+LukeGus@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
25 lines
753 B
Ruby
25 lines
753 B
Ruby
cask "termix" do
|
|
version "2.5.0"
|
|
sha256 "0662380b3cc986e5ddab263122e87b03a581bc18dbff1ad13e11dc973c84984b"
|
|
|
|
url "https://github.com/Termix-SSH/Termix/releases/download/release-#{version}-tag/termix_macos_universal_dmg.dmg"
|
|
name "Termix"
|
|
desc "Web-based server management platform with SSH terminal, tunneling, and file editing"
|
|
homepage "https://github.com/Termix-SSH/Termix"
|
|
|
|
livecheck do
|
|
url :url
|
|
strategy :github_latest
|
|
end
|
|
|
|
app "Termix.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/termix",
|
|
"~/Library/Caches/com.karmaa.termix",
|
|
"~/Library/Caches/com.karmaa.termix.ShipIt",
|
|
"~/Library/Preferences/com.karmaa.termix.plist",
|
|
"~/Library/Saved Application State/com.karmaa.termix.savedState",
|
|
]
|
|
end
|