diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d65d04..a24858d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,13 @@ All notable changes to this project will be documented in this file. --- -## Unreleased +## 0.2.1 - 2024-10-17 + +#### Links +- upstream: https://code.lindeas.com/lindeas/jilo-web/compare/v0.2...v0.2.1 +- codeberg: https://codeberg.org/lindeas/jilo-web/compare/v0.2...v0.2.1 +- github: https://github.com/lindeas/jilo-web/compare/v0.2...v0.2.1 +- gitlab: https://gitlab.com/lindeas/jilo-web/-/compare/v0.2...v0.2.1 ### Added - Added support for managing Jilo Agents @@ -26,12 +32,6 @@ All notable changes to this project will be documented in this file. - Sanitized input forms data - Fixed error in calculation of monthly total conferences on front page -#### Links -- upstream: https://code.lindeas.com/lindeas/jilo-web/compare/v0.2...HEAD -- codeberg: https://codeberg.org/lindeas/jilo-web/compare/v0.2...HEAD -- github: https://github.com/lindeas/jilo-web/compare/v0.2...HEAD -- gitlab: https://gitlab.com/lindeas/jilo-web/-/compare/v0.2...HEAD - --- ## 0.2 - 2024-08-31 diff --git a/README.md b/README.md index 6eef886..60edafe 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ To see a demo install, go to https://work.lindeas.com/jilo-web-demo/ ## version -Current version: **0.2** released on **2024-08-31** +Current version: **0.2.1** released on **2024-10-17** ## license diff --git a/TODO.md b/TODO.md deleted file mode 100644 index cdd7a98..0000000 --- a/TODO.md +++ /dev/null @@ -1,27 +0,0 @@ -# Jilo Web - -## TODO - -- ~~jilo-web.db outside web root~~ - -- ~~jilo-web.db writable by web server user~~ - -- major refactoring after v0.1 - -- - ~~add bootstrap template~~ - -- - ~~clean up the code to follow model-view--controller style~~ - -- - ~~no HTML inside PHP code~~ - -- - put all additional functions in files in a separate folder - -- - ~~reduce try/catch usage, use it only for critical errors~~ - -- - move all SQL code in the model classes, one query per method - -- - add 'limit' to SQL and make pagination - -- - pretty URLs routing (no htaccess, it needs to be in PHP code so that it can be used with all servers) - -- add mysql/mariadb option diff --git a/app/config/jilo-web.conf.php b/app/config/jilo-web.conf.php index b74975a..711cec5 100644 --- a/app/config/jilo-web.conf.php +++ b/app/config/jilo-web.conf.php @@ -31,7 +31,7 @@ return [ // default avatar 'default_avatar' => 'static/default_avatar.png', // system info - 'version' => '0.2', + 'version' => '0.2.1', // development has verbose error messages, production has not 'environment' => 'development', diff --git a/doc/packaging/deb-control b/doc/packaging/deb-control index c851adc..45b627d 100644 --- a/doc/packaging/deb-control +++ b/doc/packaging/deb-control @@ -1,5 +1,5 @@ Package: jilo-web -Version: 0.2 +Version: 0.2.1 Section: web Priority: optional Architecture: all diff --git a/doc/packaging/man-jilo-web.8 b/doc/packaging/man-jilo-web.8 index 6b19400..fcf3bbd 100644 --- a/doc/packaging/man-jilo-web.8 +++ b/doc/packaging/man-jilo-web.8 @@ -1,4 +1,4 @@ -.TH JILO-WEB "8" "August 2024" "jilo-web 0.2" +.TH JILO-WEB "8" "October 2024" "jilo-web 0.2.1" .SH NAME jilo-web \- PHP frontent to jilo (jitsi logs observer) database. .SH DESCRIPTION @@ -17,7 +17,7 @@ Written and maintained by Yasen Pramatarov https://lindeas.com/jilo .SH VERSION -0.2 +0.2.1 .SH SEE ALSO jilo(8), jilo-cli(8) diff --git a/doc/packaging/rpm-jilo-web.spec b/doc/packaging/rpm-jilo-web.spec index 949faba..fdc06e2 100644 --- a/doc/packaging/rpm-jilo-web.spec +++ b/doc/packaging/rpm-jilo-web.spec @@ -1,5 +1,5 @@ Name: jilo-web -Version: 0.2 +Version: 0.2.1 Release: 1%{?dist} Summary: Jitsi logs web observer @@ -54,6 +54,8 @@ cp %{sourcedir}/man-jilo.8 %{buildroot}/usr/share/man/man8/%{name}.8 /usr/share/man/man8/%{name}.8.gz %changelog +* Thu Oct 17 2024 Yasen Pramatarov 0.2.1 +- Build of upstream v0.2.1 * Sat Aug 31 2024 Yasen Pramatarov 0.2 - Build of upstream v0.2 * Thu Jul 25 2024 Yasen Pramatarov 0.1.1 diff --git a/public_html/index.php b/public_html/index.php index e59e2ce..e255e95 100644 --- a/public_html/index.php +++ b/public_html/index.php @@ -8,7 +8,7 @@ * License: GPLv2 * Project URL: https://lindeas.com/jilo * Year: 2024 - * Version: 0.2 + * Version: 0.2.1 */ // we start output buffering and.