-
+
> Windows (PowerShell)
-
{psScript}
+
{psScript}
-
Downloads the latest release and adds termscp to your user PATH.
+
+ Downloads the latest release and adds termscp to your user PATH.
+
Package managers
-
Update anytime with termscp --update.
+
+ Update anytime with termscp --update.
+
- Linux build deps: libdbus-1, pkg-config, libsmbclient.
- More details in the docs.
+ Linux build deps: libdbus-1, pkg-config, libsmbclient. More details in the docs.
diff --git a/site/src/styles/theme.css b/site/src/styles/theme.css
index 99bf32e..41c984b 100644
--- a/site/src/styles/theme.css
+++ b/site/src/styles/theme.css
@@ -80,9 +80,15 @@ html {
}
/* Theme toggle icons: shown based on active theme, set before paint by the head bootstrap */
-[data-icon] { display: none; }
-[data-theme="frappe"] [data-icon="frappe"] { display: inline; }
-[data-theme="latte"] [data-icon="latte"] { display: inline; }
+[data-icon] {
+ display: none;
+}
+[data-theme="frappe"] [data-icon="frappe"] {
+ display: inline;
+}
+[data-theme="latte"] [data-icon="latte"] {
+ display: inline;
+}
.blink {
display: inline-block;
@@ -92,4 +98,8 @@ html {
vertical-align: -1px;
animation: blink 1s steps(1) infinite;
}
-@keyframes blink { 50% { opacity: 0; } }
+@keyframes blink {
+ 50% {
+ opacity: 0;
+ }
+}
diff --git a/site/vercel.json b/site/vercel.json
index 38517d1..0df88a9 100644
--- a/site/vercel.json
+++ b/site/vercel.json
@@ -2,25 +2,50 @@
"$schema": "https://openapi.vercel.sh/vercel.json",
"redirects": [
{ "source": "/index.html", "destination": "/", "permanent": true },
- { "source": "/get-started.html", "destination": "/install", "permanent": true },
+ {
+ "source": "/get-started.html",
+ "destination": "/install",
+ "permanent": true
+ },
{ "source": "/get-started", "destination": "/install", "permanent": true },
{ "source": "/updates.html", "destination": "/install", "permanent": true },
- { "source": "/user-manual.html", "destination": "https://docs.termscp.rs", "permanent": true },
- { "source": "/user-manual", "destination": "https://docs.termscp.rs", "permanent": true },
- { "source": "/changelog.html", "destination": "https://github.com/veeso/termscp/blob/main/CHANGELOG.md", "permanent": true }
+ {
+ "source": "/user-manual.html",
+ "destination": "https://docs.termscp.rs",
+ "permanent": true
+ },
+ {
+ "source": "/user-manual",
+ "destination": "https://docs.termscp.rs",
+ "permanent": true
+ },
+ {
+ "source": "/changelog.html",
+ "destination": "https://github.com/veeso/termscp/blob/main/CHANGELOG.md",
+ "permanent": true
+ }
],
"headers": [
{
"source": "/fonts/(.*)",
- "headers": [{ "key": "Cache-Control", "value": "public, max-age=31536000, immutable" }]
+ "headers": [
+ {
+ "key": "Cache-Control",
+ "value": "public, max-age=31536000, immutable"
+ }
+ ]
},
{
"source": "/install.sh",
- "headers": [{ "key": "Content-Type", "value": "text/x-shellscript; charset=utf-8" }]
+ "headers": [
+ { "key": "Content-Type", "value": "text/x-shellscript; charset=utf-8" }
+ ]
},
{
"source": "/install.ps1",
- "headers": [{ "key": "Content-Type", "value": "text/plain; charset=utf-8" }]
+ "headers": [
+ { "key": "Content-Type", "value": "text/plain; charset=utf-8" }
+ ]
}
]
}