parent
15d5626b20
commit
e76c78fde4
14
CHANGELOG.md
14
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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
27
TODO.md
27
TODO.md
|
@ -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
|
|
@ -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',
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
Package: jilo-web
|
||||
Version: 0.2
|
||||
Version: 0.2.1
|
||||
Section: web
|
||||
Priority: optional
|
||||
Architecture: all
|
||||
|
|
|
@ -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 <yasen@lindeas.com>
|
|||
https://lindeas.com/jilo
|
||||
|
||||
.SH VERSION
|
||||
0.2
|
||||
0.2.1
|
||||
|
||||
.SH SEE ALSO
|
||||
jilo(8), jilo-cli(8)
|
||||
|
|
|
@ -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 <yasen@lindeas.com> 0.2.1
|
||||
- Build of upstream v0.2.1
|
||||
* Sat Aug 31 2024 Yasen Pramatarov <yasen@lindeas.com> 0.2
|
||||
- Build of upstream v0.2
|
||||
* Thu Jul 25 2024 Yasen Pramatarov <yasen@lindeas.com> 0.1.1
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue