Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
glance-darwin-arm64.tar.gz | 2025-05-19 | 5.4 MB | |
glance-linux-386.tar.gz | 2025-05-19 | 5.4 MB | |
glance-linux-amd64.tar.gz | 2025-05-19 | 5.6 MB | |
glance-openbsd-386.tar.gz | 2025-05-19 | 5.4 MB | |
glance-linux-armv7.tar.gz | 2025-05-19 | 5.4 MB | |
glance-windows-386.zip | 2025-05-19 | 5.6 MB | |
glance-windows-amd64.zip | 2025-05-19 | 5.8 MB | |
glance-windows-arm64.zip | 2025-05-19 | 5.3 MB | |
glance-windows-armv7.zip | 2025-05-19 | 5.5 MB | |
glance-darwin-amd64.tar.gz | 2025-05-19 | 5.7 MB | |
glance-freebsd-amd64.tar.gz | 2025-05-19 | 5.5 MB | |
glance-freebsd-armv7.tar.gz | 2025-05-19 | 5.3 MB | |
glance-linux-arm64.tar.gz | 2025-05-19 | 5.2 MB | |
glance-openbsd-amd64.tar.gz | 2025-05-19 | 5.6 MB | |
glance-freebsd-386.tar.gz | 2025-05-19 | 5.3 MB | |
glance-freebsd-arm64.tar.gz | 2025-05-19 | 5.1 MB | |
glance-openbsd-arm64.tar.gz | 2025-05-19 | 5.2 MB | |
glance-openbsd-armv7.tar.gz | 2025-05-19 | 5.3 MB | |
README.md | 2025-05-19 | 1.8 kB | |
v0.8.3 source code.tar.gz | 2025-05-19 | 14.9 MB | |
v0.8.3 source code.zip | 2025-05-19 | 15.0 MB | |
Totals: 21 Items | 127.5 MB | 0 |
New
- Added the ability to disable the theme picker via
disable-picker: true
undertheme
(thanks @NeoNyaa) - Added
mod
function (modulo) to the custom API widget (thanks @anant-j) - Added
safeHTML
function to the custom API widget which prevents HTML from being escaped (thanks @sudoexec) - Added
.Options.JSON
to the custom API widget which takes any nested option value and turns it into a JSON string (thanks @ralphocdol)
View example
:::yaml - type: custom-api options: request-body: service: Session method: login params: username: ${USERNAME} password: ${PASSWORD} # useful if you need to send JSON in a request body template: | ... | withStringBody (.Options.JSON "request-body") ...- Added the theme key to the document root so that you can apply styles based on the selected theme (thanks @EricKotato)
View example
:::css :root[data-theme="default-dark"] { .color-primary-if-not-visited { color: #ff0000; } } :root[data-theme="default-light"] { .color-primary-if-not-visited { color: #00ff00; } } :root[data-theme="your-theme-name"] { .color-primary-if-not-visited { color: #0000ff; } }Fixes
- Fixed
HTTP_PROXY
andHTTPS_PROXY
environment variables not getting used (thanks @mazzz1y) - Fixed truncated links' hover text having unnecessary whitespace (thanks @ralphocdol)
Visit the release notes for v0.8.0 to learn about all new features