Skip to content

Commit 0d9a297

Browse files
committed
Change name
1 parent 013df79 commit 0d9a297

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# releaser
1+
# Nuts
22

3-
> Open source release/application download with auto-updater
3+
> Open source releases/downloads server with auto-updater
44
55
This application is a simple release server to download specific or latest version of a desktop application. It uses GitHub releases as a backend, so it can easily be deployed to heroku as a stateless service, it also works for GitHub private repositories (useful to store releases of a closed-source application available on GitHub).
66

app.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
2-
"name": "Releasers",
3-
"description": "Server to make GitHub releases (private) available to download with Squirrel support.",
4-
"repository": "https://github.com/SamyPesse/releaser",
5-
"website": "https://github.com/SamyPesse/releaser",
2+
"name": "Nuts",
3+
"description": "Open source releases/downloads server with auto-updater",
4+
"repository": "https://github.com/GitbookIO/nuts",
5+
"website": "https://github.com/GitbookIO/nuts",
66
"keywords": ["releases", "download", "github", "squirrel", "desktop"],
77
"env": {
88
"GITHUB_REPO": {
9-
"description": "Repository for the application"
9+
"description": "Repository for the application's releases"
1010
},
1111
"GITHUB_TOKEN": {
12-
"description": "Auth token for GitHub API"
12+
"description": "Access token for GitHub API"
1313
},
1414
"API_USERNAME": {
1515
"description": "Username for private API access"

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"name": "releases",
2+
"name": "nuts",
33
"version": "0.0.0",
44
"description": "Server to make GitHub releases (private) available to download with Squirrel support",
5-
"homepage": "https://github.com/SamyPesse/betty",
5+
"homepage": "https://github.com/GitbookIO/nuts",
66
"license": "Apache-2.0",
77
"main": "./lib/index.js",
88
"dependencies": {
@@ -16,7 +16,7 @@
1616
"basic-auth": "1.0.3"
1717
},
1818
"bugs": {
19-
"url": "https://github.com/SamyPesse/releaser/issues"
19+
"url": "https://github.com/GitbookIO/nuts/issues"
2020
},
2121
"authors": [
2222
{
@@ -26,7 +26,7 @@
2626
],
2727
"repository": {
2828
"type" : "git",
29-
"url" : "https://github.com/SamyPesse/releaser.git"
29+
"url" : "https://github.com/GitbookIO/nuts.git"
3030
},
3131
"scripts": {
3232
"start": "node bin/web.js"

0 commit comments

Comments
 (0)