Skip to content

Commit b76f4e0

Browse files
author
Julien Veyssier
committed
1.0.0
Signed-off-by: Julien Veyssier <eneiluj@posteo.net>
1 parent b582584 commit b76f4e0

6 files changed

Lines changed: 1163 additions & 1215 deletions

File tree

.eslintrc.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ module.exports = {
22
globals: {
33
appVersion: true
44
},
5+
parserOptions: {
6+
requireConfigFile: false
7+
},
58
extends: [
69
'@nextcloud'
710
]

.github/workflows/release.yml

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,20 @@ jobs:
1212
APP_ID: integration_discourse
1313
runs-on: ubuntu-latest
1414
steps:
15+
- name: Use Node 12
16+
uses: actions/setup-node@v1
17+
with:
18+
node-version: 12
19+
20+
- name: Setup PHP
21+
uses: shivammathur/setup-php@v2
22+
with:
23+
php-version: '7.4'
24+
extensions: mbstring, intl, sqlite3
25+
ini-values: post_max_size=256M, max_execution_time=180
26+
coverage: xdebug
27+
tools: php-cs-fixer, phpunit
28+
1529
- name: Checkout code
1630
uses: actions/checkout@v2
1731

@@ -35,8 +49,7 @@ jobs:
3549
echo "###### install dependencies"
3650
export DEBIAN_FRONTEND=noninteractive
3751
sudo apt update -y
38-
# sudo apt upgrade -y
39-
sudo apt install composer php-mbstring php-sqlite3 npm make openssl -y
52+
sudo apt install composer make openssl -y
4053
echo "###### installing nextcloud"
4154
mkdir ~/html
4255
git clone https://github.com/nextcloud/server.git --recursive --depth 1 -b master ~/html/nextcloud

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
66

77
## [Unreleased]
88

9+
## 1.0.0 – 2021-03-19
10+
### Changed
11+
- bump js libs
12+
913
## 0.0.9 – 2021-02-16
1014
### Changed
1115
- app certificate

appinfo/info.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<summary>Integration of Discourse forum and mailing list management system</summary>
66
<description><![CDATA[Discourse integration provides a dashboard widget displaying your important notifications
77
and the ability to find topics and posts with Nextcloud's unified search.]]></description>
8-
<version>0.0.9</version>
8+
<version>1.0.0</version>
99
<licence>agpl</licence>
1010
<author>Julien Veyssier</author>
1111
<namespace>Discourse</namespace>

0 commit comments

Comments
 (0)