alpha
Login
or
Join now
devins.page
/
restray
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
powerful but friendly backup program that runs in your tray, powered by restic
devins.page/restray
go
restic
system-tray
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
chore: 0.20.2
author
intergrav
date
3 weeks ago
(Jul 2, 2026, 2:41 PM -0400)
commit
5291840c
5291840cb95bb05e59bc8adcaaa7f7d64d3abbf9
parent
5c979bcf
5c979bcf635001581d72b674972c34d3c07e07e1
+5
-5
4 changed files
Expand all
Collapse all
Unified
Split
cmd
restray
main.go
flake.nix
packaging
darwin
Info.plist
windows
installer.nsi
+1
-1
cmd/restray/main.go
View file
Reviewed
···
10
10
"github.com/gen2brain/beeep"
11
11
)
12
12
13
13
-
const version = "0.20.1"
13
13
+
const version = "0.20.2"
14
14
15
15
const (
16
16
systemConfigDir = "/etc/restray"
+1
-1
flake.nix
View file
Reviewed
···
23
23
in {
24
24
packages.default = pkgs.buildGoModule {
25
25
pname = "restray";
26
26
-
version = "0.20.1";
26
26
+
version = "0.20.2";
27
27
src = ./.;
28
28
vendorHash = "sha256-JdR/v3Ho0rd5uNZVCEo1wQ/OzXz1kFhp1DXG+84Vgw0=";
29
29
subPackages = ["cmd/restray"];
+2
-2
packaging/darwin/Info.plist
View file
Reviewed
···
9
9
<key>CFBundleIdentifier</key>
10
10
<string>page.devins.restray</string>
11
11
<key>CFBundleVersion</key>
12
12
-
<string>0.20.1</string>
12
12
+
<string>0.20.2</string>
13
13
<key>CFBundleShortVersionString</key>
14
14
-
<string>0.20.1</string>
14
14
+
<string>0.20.2</string>
15
15
<key>CFBundlePackageType</key>
16
16
<string>APPL</string>
17
17
<key>CFBundleInfoDictionaryVersion</key>
+1
-1
packaging/windows/installer.nsi
View file
Reviewed
···
1
1
!include "MUI2.nsh"
2
2
3
3
-
!define VERSION "0.20.1"
3
3
+
!define VERSION "0.20.2"
4
4
5
5
Name "Restray"
6
6
OutFile "..\..\dist\restray-${VERSION}-windows-${ARCH}-setup.exe"