diff --git a/CHANGELOG.md b/CHANGELOG.md index 835b74a81..fe15dd098 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [1.1.0] - 2020-10-05 ### Fixed - General user interface and ease-of-use improvements for both mobile and desktop - General loading and performance improvements, including shrinking bundle size @@ -22,6 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Muted Users: posts of muted users now appear in profile view - Forms: security issue resolved with POST method on all forms - Internationalization: increased elements that are internationalizable +- Composer: Forcing the scope to default after settings save. ### Added - Chats, currently one-to-one, evolving with Pleroma BE capabilities, including: @@ -88,12 +89,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Requirement for use of soapbox.json for configuration - Direct Message links from menus, partial deprecation due to chats - -## [Unreleased patch] -### Fixed -- Composer: Forcing the scope to default after settings save. - - ## [1.0.0] - 2020-06-15 ### Added - Emoji reactions. diff --git a/README.md b/README.md index 584868d7c..0399dc761 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,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/v1.0.0/download?job=build-production -o soapbox-fe.zip +curl -L https://gitlab.com/soapbox-pub/soapbox-fe/-/jobs/artifacts/v1.1.0/download?job=build-production -o soapbox-fe.zip ``` Then unpack it into Pleroma's `instance` directory: diff --git a/app/soapbox/features/ui/components/link_footer.js b/app/soapbox/features/ui/components/link_footer.js index 5ceabfe63..68034c076 100644 --- a/app/soapbox/features/ui/components/link_footer.js +++ b/app/soapbox/features/ui/components/link_footer.js @@ -12,7 +12,7 @@ const sourceCode = { name: 'soapbox-fe', url: 'https://gitlab.com/soapbox-pub/soapbox-fe', repository: 'soapbox-pub/soapbox-fe', - version: '1.0.0', + version: '1.1.0', }; const mapStateToProps = state => { diff --git a/docs/administration/install-subdomain.md b/docs/administration/install-subdomain.md index 3fe8707e4..baf8cb2c3 100644 --- a/docs/administration/install-subdomain.md +++ b/docs/administration/install-subdomain.md @@ -13,7 +13,7 @@ mkdir -p /opt/soapbox Fetch the build. ```sh -curl -L https://gitlab.com/soapbox-pub/soapbox-fe/-/jobs/artifacts/v1.0.0/download?job=build-production -o /tmp/soapbox-fe.zip +curl -L https://gitlab.com/soapbox-pub/soapbox-fe/-/jobs/artifacts/v1.1.0/download?job=build-production -o /tmp/soapbox-fe.zip ``` Unzip the build. diff --git a/docs/administration/install-yunohost.md b/docs/administration/install-yunohost.md index d6b64f68c..6f35c0fa9 100644 --- a/docs/administration/install-yunohost.md +++ b/docs/administration/install-yunohost.md @@ -7,7 +7,7 @@ If you want to install Soapbox FE to a Pleroma instance installed using [YunoHos First, download the latest build of Soapbox FE from GitLab. ```sh -curl -L https://gitlab.com/soapbox-pub/soapbox-fe/-/jobs/artifacts/v1.0.0/download?job=build-production -o soapbox-fe.zip +curl -L https://gitlab.com/soapbox-pub/soapbox-fe/-/jobs/artifacts/v1.1.0/download?job=build-production -o soapbox-fe.zip ``` ## 2. Unzip the build diff --git a/docs/installing.md b/docs/installing.md index 9537f51e4..428c1e39b 100644 --- a/docs/installing.md +++ b/docs/installing.md @@ -13,7 +13,7 @@ First, follow the instructions to [install Pleroma](https://docs-develop.pleroma The Soapbox frontend is the main component of Soapbox. Once you've installed Pleroma, installing Soapbox FE is a breeze. -First, ssh into the server and download a .zip of the latest build: ``curl -L https://gitlab.com/soapbox-pub/soapbox-fe/-/jobs/artifacts/v1.0.0/download?job=build-production -o soapbox-fe.zip`` +First, ssh into the server and download a .zip of the latest build: ``curl -L https://gitlab.com/soapbox-pub/soapbox-fe/-/jobs/artifacts/v1.1.0/download?job=build-production -o soapbox-fe.zip`` Then unpack it into Pleroma's ``instance`` directory: ``busybox unzip soapbox-fe.zip -o -d /opt/pleroma/instance`` diff --git a/package.json b/package.json index df7042161..4dd0fbf84 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "soapbox-fe", - "version": "1.0.0", + "version": "1.1.0", "description": "Soapbox frontend for Pleroma.", "homepage": "https://soapbox.pub/", "repository": {