Skip to content

Commit fb8011f

Browse files
committed
Add update feeds for Windows installer and AppImage releases.
1 parent 81f050a commit fb8011f

File tree

4 files changed

+52
-0
lines changed

4 files changed

+52
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
return {
2+
-- URL for the update feed.
3+
feed = "https://rehex.solemnwarning.net/updates/appimage-x64.json",
4+
5+
-- Public key
6+
pubkey = "92a0c67c346f141e2497bac5a37b8ec1217f5527d478a45264304afef3185101",
7+
8+
-- Check for updates every 24 hours while the application is running.
9+
interval_minutes = 24 * 60,
10+
11+
-- Replace the running AppImage binary.
12+
method = "AppImage",
13+
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
return {
2+
-- URL for the update feed.
3+
feed = "https://rehex.solemnwarning.net/updates/appimage-x86.json",
4+
5+
-- Public key
6+
pubkey = "92a0c67c346f141e2497bac5a37b8ec1217f5527d478a45264304afef3185101",
7+
8+
-- Check for updates every 24 hours while the application is running.
9+
interval_minutes = 24 * 60,
10+
11+
-- Replace the running AppImage binary.
12+
method = "AppImage",
13+
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
return {
2+
-- URL for the update feed.
3+
feed = "https://rehex.solemnwarning.net/updates/windows-setup-x64.json",
4+
5+
-- Public key
6+
pubkey = "791fa4ee6a9dc28905dcd64a15f98540c682ff096bfe98514acfadcbf21e4b03",
7+
8+
-- Check for updates every 24 hours while the application is running.
9+
interval_minutes = 24 * 60,
10+
11+
-- Download and run Windows installer executable.
12+
method = "setup"
13+
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
return {
2+
-- URL for the update feed.
3+
feed = "https://rehex.solemnwarning.net/updates/windows-setup-x86.json",
4+
5+
-- Public key
6+
pubkey = "791fa4ee6a9dc28905dcd64a15f98540c682ff096bfe98514acfadcbf21e4b03",
7+
8+
-- Check for updates every 24 hours while the application is running.
9+
interval_minutes = 24 * 60,
10+
11+
-- Download and run Windows installer executable.
12+
method = "setup"
13+
}

0 commit comments

Comments
 (0)