Skip to content

Commit

Permalink
1.0.0
Browse files Browse the repository at this point in the history
Signed-off-by: Julien Veyssier <[email protected]>
  • Loading branch information
Julien Veyssier committed Mar 19, 2021
1 parent b582584 commit b76f4e0
Show file tree
Hide file tree
Showing 6 changed files with 1,163 additions and 1,215 deletions.
3 changes: 3 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ module.exports = {
globals: {
appVersion: true
},
parserOptions: {
requireConfigFile: false
},
extends: [
'@nextcloud'
]
Expand Down
17 changes: 15 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,20 @@ jobs:
APP_ID: integration_discourse
runs-on: ubuntu-latest
steps:
- name: Use Node 12
uses: actions/setup-node@v1
with:
node-version: 12

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '7.4'
extensions: mbstring, intl, sqlite3
ini-values: post_max_size=256M, max_execution_time=180
coverage: xdebug
tools: php-cs-fixer, phpunit

- name: Checkout code
uses: actions/checkout@v2

Expand All @@ -35,8 +49,7 @@ jobs:
echo "###### install dependencies"
export DEBIAN_FRONTEND=noninteractive
sudo apt update -y
# sudo apt upgrade -y
sudo apt install composer php-mbstring php-sqlite3 npm make openssl -y
sudo apt install composer make openssl -y
echo "###### installing nextcloud"
mkdir ~/html
git clone https://github.com/nextcloud/server.git --recursive --depth 1 -b master ~/html/nextcloud
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## 1.0.0 – 2021-03-19
### Changed
- bump js libs

## 0.0.9 – 2021-02-16
### Changed
- app certificate
Expand Down
2 changes: 1 addition & 1 deletion appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<summary>Integration of Discourse forum and mailing list management system</summary>
<description><![CDATA[Discourse integration provides a dashboard widget displaying your important notifications
and the ability to find topics and posts with Nextcloud's unified search.]]></description>
<version>0.0.9</version>
<version>1.0.0</version>
<licence>agpl</licence>
<author>Julien Veyssier</author>
<namespace>Discourse</namespace>
Expand Down
Loading

0 comments on commit b76f4e0

Please sign in to comment.