Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ nbproject
/.php-cs-fixer.cache
/tests/coverage*
/tests/clover.xml
/tests/.phpunit.cache
/tests/.phpunit.result.cache
/tests/js/node_modules
/vendor
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@
# Changelog
All notable changes to this project will be documented in this file.

## 1.22.0 – 2025-09-26
### Changed
- Nextcloud 32 compatibility
- Require Nextcloud 31

## 1.21.0 – 2025-02-15
### Changed
- Nextcloud 31 compatibility
Expand Down
4 changes: 2 additions & 2 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<description>This app sends notifications to users when they reached 85, 90 and 95% of their quota (checked once a day).
In addition an email can be sent to the users. The three percentages can be changed in the admin settings.
It is also possible to have a link in the email and the notification for upsell options.</description>
<version>1.21.0</version>
<version>1.22.0</version>
<licence>agpl</licence>
<author>Joas Schilling</author>
<namespace>QuotaWarning</namespace>
Expand All @@ -27,7 +27,7 @@ It is also possible to have a link in the email and the notification for upsell
<screenshot>https://raw.githubusercontent.com/nextcloud/quota_warning/main/docs/email.png</screenshot>
<screenshot>https://raw.githubusercontent.com/nextcloud/quota_warning/main/docs/admin-settings.png</screenshot>
<dependencies>
<nextcloud min-version="29" max-version="31" />
<nextcloud min-version="31" max-version="32" />
</dependencies>
<repair-steps>
<install>
Expand Down
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
"OCA\\QuotaWarning\\": "lib/"
}
},
"name": "nextcloud/notifications",
"description": "notifications",
"name": "nextcloud/quota_warning",
"description": "quota_warning",
"license": "AGPL",
"config": {
"optimize-autoloader": true,
"classmap-authoritative": true,
"platform": {
"php": "8.0.2"
"php": "8.1.31"
},
"sort-packages": true
},
Expand All @@ -28,9 +28,9 @@
"test:unit": "vendor/bin/phpunit --color -c tests/phpunit.xml"
},
"require-dev": {
"nextcloud/coding-standard": "^1.3",
"nextcloud/ocp": "dev-stable29",
"phpunit/phpunit": "^9.6",
"vimeo/psalm": "^5.26"
"nextcloud/coding-standard": "^1.4",
"nextcloud/ocp": "dev-stable31",
"phpunit/phpunit": "^10.5",
"vimeo/psalm": "^6.8"
}
}
Loading
Loading