rpcfetch: ui: show version in interface
All checks were successful
release / release (push) Successful in 15m20s
All checks were successful
release / release (push) Successful in 15m20s
Default fallback value of "impure", the flake build script sets it to "flake", and the gitea action sets it to the tag. Signed-off-by: Ophestra Umiker <cat@ophivana.moe>
This commit is contained in:
parent
44ba51184b
commit
0693bffa4a
@ -35,7 +35,7 @@ jobs:
|
|||||||
if: ${{ runner.os == 'Linux' }}
|
if: ${{ runner.os == 'Linux' }}
|
||||||
- name: Build for Linux
|
- name: Build for Linux
|
||||||
run: >-
|
run: >-
|
||||||
sh -c "go build -v -ldflags '-s -w' -o bin/rpcfetch-linux ./fetch &&
|
sh -c "go build -v -ldflags '-s -w -X main.Version=${{ github.ref_name }}' -o bin/rpcfetch-linux ./fetch &&
|
||||||
sha256sum --tag -b bin/rpcfetch-linux > bin/rpcfetch-linux.sha256"
|
sha256sum --tag -b bin/rpcfetch-linux > bin/rpcfetch-linux.sha256"
|
||||||
- name: Build for Windows
|
- name: Build for Windows
|
||||||
run: >-
|
run: >-
|
||||||
@ -43,7 +43,7 @@ jobs:
|
|||||||
CGO_ENABLED=1
|
CGO_ENABLED=1
|
||||||
CGO_LDFLAGS='-static-libgcc -static'
|
CGO_LDFLAGS='-static-libgcc -static'
|
||||||
GOOS=windows GOARCH=amd64
|
GOOS=windows GOARCH=amd64
|
||||||
go build -v -ldflags '-s -w -H=windowsgui' -o bin/rpcfetch.exe ./fetch &&
|
go build -v -ldflags '-s -w -X main.Version=${{ github.ref_name }} -H=windowsgui' -o bin/rpcfetch.exe ./fetch &&
|
||||||
sha256sum --tag -b bin/rpcfetch.exe > bin/rpcfetch.exe.sha256"
|
sha256sum --tag -b bin/rpcfetch.exe > bin/rpcfetch.exe.sha256"
|
||||||
- name: Release
|
- name: Release
|
||||||
id: use-go-action
|
id: use-go-action
|
||||||
|
@ -22,6 +22,8 @@ var (
|
|||||||
confPath string
|
confPath string
|
||||||
headless bool
|
headless bool
|
||||||
dumpConfig bool
|
dumpConfig bool
|
||||||
|
|
||||||
|
Version = "impure"
|
||||||
)
|
)
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
|
@ -207,6 +207,7 @@ var (
|
|||||||
widget.NewForm(
|
widget.NewForm(
|
||||||
widget.NewFormItem("Replaces", statusReplaces),
|
widget.NewFormItem("Replaces", statusReplaces),
|
||||||
widget.NewFormItem("Timer", statusTimer),
|
widget.NewFormItem("Timer", statusTimer),
|
||||||
|
widget.NewFormItem("Version", widget.NewLabel(Version)),
|
||||||
),
|
),
|
||||||
widget.NewSeparator(),
|
widget.NewSeparator(),
|
||||||
container.NewHBox(
|
container.NewHBox(
|
||||||
|
@ -25,9 +25,9 @@
|
|||||||
clang
|
clang
|
||||||
] ++ (if stdenv.isLinux then [
|
] ++ (if stdenv.isLinux then [
|
||||||
(pkgs.writeShellScriptBin "build" ''
|
(pkgs.writeShellScriptBin "build" ''
|
||||||
go build -v -o /tmp/rpcfetch ./fetch
|
go build -v -ldflags '-s -w -X main.Version=flake' -o /tmp/rpcfetch ./fetch
|
||||||
# wayland support is partially broken at the moment
|
# wayland support is partially broken at the moment
|
||||||
#go build -v -tags wayland -o /tmp/wl-rpcfetch ./fetch
|
#go build -v -ldflags '-s -w -X main.Version=flake' -tags wayland -o /tmp/wl-rpcfetch ./fetch
|
||||||
'')
|
'')
|
||||||
vulkan-headers
|
vulkan-headers
|
||||||
libxkbcommon
|
libxkbcommon
|
||||||
|
Loading…
Reference in New Issue
Block a user