Browse Source

Makefile: Use phpDocumentor v3.4 for the Framework docs (#9313)

pull/9315/head
Aleksander Machniak 2 years ago
parent
commit
60011f136b
  1. 1
      CHANGELOG.md
  2. 4
      Makefile

1
CHANGELOG.md

@ -39,6 +39,7 @@
- Password: Allow LDAP access using LDAP URI and SASL binding (#8402)
- Fix deprecated (in PHP 8.4) use of session_set_save_handler() (#9060)
- Fix potential HTTP protocol version mismatch (#8982)
- Makefile: Use phpDocumentor v3.4 for the Framework docs (#9313)
## Release 1.6.6

4
Makefile

@ -40,8 +40,8 @@ dependent: roundcubemail-git
framework: roundcubemail-git /tmp/phpDocumentor.phar
cp -r roundcubemail-git/program/lib/Roundcube roundcube-framework-$(VERSION)
(cd roundcube-framework-$(VERSION); php /tmp/phpDocumentor.phar -d . -t ./doc --title="Roundcube Framework" --defaultpackagename="Framework" --template="clean")
(cd roundcube-framework-$(VERSION); rm -rf doc/phpdoc-cache* .phpdoc)
(cd roundcube-framework-$(VERSION); php /tmp/phpDocumentor.phar run -d . -t ./doc --title="Roundcube Framework" --defaultpackagename="Framework")
(cd roundcube-framework-$(VERSION); rm -rf .phpdoc)
tar czf roundcube-framework-$(VERSION).tar.gz roundcube-framework-$(VERSION)
rm -rf roundcube-framework-$(VERSION)

Loading…
Cancel
Save