From 2cd66dc1a5c21ca3cc913b9b468aa8c909b7d1a1 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Thu, 30 Apr 2020 12:33:56 -0500 Subject: [PATCH] Add metadata to package.json and bump version to 0.9-beta --- README.md | 2 +- app/gabsocial/features/ui/components/link_footer.js | 2 +- package.json | 10 ++++++++++ 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9a1e8464f..300022678 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ Installing soapbox-fe on an existing Pleroma server is extremely easy. Just ssh into the server and download a .zip of the latest build: ```sh -curl -L https://gitlab.com/soapbox-pub/soapbox-fe/-/jobs/artifacts/master/download?job=build-production -o soapbox-fe.zip +curl -L https://gitlab.com/soapbox-pub/soapbox-fe/-/jobs/artifacts/v0.9/download?job=build-production -o soapbox-fe.zip ``` Then unpack it into Pleroma's `instance` directory: diff --git a/app/gabsocial/features/ui/components/link_footer.js b/app/gabsocial/features/ui/components/link_footer.js index 5d257f3bc..3a6fda582 100644 --- a/app/gabsocial/features/ui/components/link_footer.js +++ b/app/gabsocial/features/ui/components/link_footer.js @@ -13,7 +13,7 @@ const sourceCode = { name: 'soapbox-fe', url: 'https://gitlab.com/soapbox-pub/soapbox-fe', repository: 'soapox-pub/soapbox-fe', - version: '0.0.0', + version: '0.9-beta', }; const mapStateToProps = state => { diff --git a/package.json b/package.json index 321478621..bbec290c9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,16 @@ { "name": "soapbox-fe", "version": "0.0.0", + "description": "Soapbox frontend for Pleroma.", + "homepage": "https://soapbox.pub/", + "repository": { + "type" : "git", + "url" : "https://gitlab.com/soapbox-pub/soapbox-fe.git" + }, + "keywords": ["fediverse", "pleroma"], + "bugs": { + "url": "https://gitlab.com/soapbox-pub/soapbox-fe/-/issues" + }, "scripts": { "start": "npx webpack-dev-server --config webpack", "dev": "${npm_execpath} run start",