Skip to content
Open
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
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,3 +87,9 @@ If you want to get started using Pico, please refer to [Pico's user docs](http:/
When the docs cannot answer your question, you can get help by either joining us on [#picocms on Libera.Chat](https://web.libera.chat/#picocms) ([logs](http://picocms.org/irc-logs)), or by creating a new thread on [Nextcloud Help](https://help.nextcloud.com/c/apps/cms-pico). When you’re experiencing problems with Pico CMS for Nextcloud, please don’t hesitate to create a new [Issue](https://github.com/nextcloud/cms_pico/issues) on GitHub. Concerning problems with Pico, open a new [Issue](https://github.com/picocms/Pico/issues) on Pico's GitHub repository. If you have problems with plugins or themes, please refer to the website of the developer of this plugin or theme.

**Before creating a new Issue,** please make sure the problem wasn’t reported yet using GitHubs search engine on both the [`nextcloud/cms_pico`](https://github.com/nextcloud/cms_pico/search?type=Issues) and [`picocms/Pico`](https://github.com/picocms/Pico/search?type=Issues) repos, as well as the [search of Nextcloud Help](https://help.nextcloud.com/search). Please describe your issue as clear as possible and always include the *exact error message* (if any) as well as all related messages in Nextcloud's logs. Also include the exact *Nextcloud version* and the *version of Pico CMS for Nextcloud* you’re using. Provided that you’re using custom *plugins* and/or *themes*, include a list of them too. We need information about the *actual and expected behavior* , the *steps to reproduce* the problem, and what steps you have taken to resolve the problem by yourself (i.e. *your own troubleshooting*).

## Nextcloud 26+ compatibility
:exclamation: I've made this app compatible with Nextcloud 31, however, for now, the HTML purifier is bypassed which might be an issue depending of your user case.
Also, as this project is using other unmaintained projects, it is very possible that things might break again in the future.
I will do my best to keep it up and running until my users have agreed to move to another platform.
Also, keep in mind that my PHP knowledge and experience is limited, so, for now it works on my current Nextcloud instance, but it might not with your configuration.
34 changes: 0 additions & 34 deletions appinfo/app.php

This file was deleted.

3 changes: 2 additions & 1 deletion appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,9 @@ You want to learn more about Pico CMS for Nextcloud? Easy! Just download and ena
<screenshot>https://raw.githubusercontent.com/nextcloud/cms_pico/master/screenshots/apache.png</screenshot>
<dependencies>
<php min-version="8.0.0"/>
<nextcloud min-version="26" max-version="27"/>
<nextcloud min-version="25" max-version="31"/>
</dependencies>
<bootstrap>OCA\CMSPico\AppInfo\Bootstrap</bootstrap>
<repair-steps>
<post-migration>
<step>OCA\CMSPico\Migration\AppDataRepairStep</step>
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@
"picocms/pico-deprecated": "^2.1",
"picocms/composer-installer": "^1.0",
"xemlock/htmlpurifier-html5": "~0.1.11",
"symfony/yaml" : "^2.8|^3.4|^4.4|^5.1"
"symfony/yaml" : "^2.8|^3.4|^4.4|^5.1",
"erusev/parsedown-extra": "^0.8.0@beta"
},
"require-dev": {
"phpunit/phpunit": "^8",
"phrozenbyte/phpunit-throwable-asserts": "^1.1",
"phrozenbyte/phpunit-array-asserts": "^v1.1",
"incompass/coverage": "^1.0"
"phrozenbyte/phpunit-array-asserts": "^v1.1"
},
"extra": {
"pico-theme-dir": "appdata/themes/",
Expand Down
Loading