Prepares for release 0.1.1
parent
2bd065da9c
commit
a5149bf765
30
CHANGELOG.md
30
CHANGELOG.md
|
@ -7,16 +7,35 @@ All notable changes to this project will be documented in this file.
|
||||||
## Unreleased
|
## Unreleased
|
||||||
|
|
||||||
#### Links
|
#### Links
|
||||||
- upstream: https://code.lindeas.com/lindeas/jilo/compare/v0.1...HEAD
|
- upstream: https://code.lindeas.com/lindeas/jilo/compare/v0.1.1...HEAD
|
||||||
- codeberg: https://codeberg.org/lindeas/jilo/compare/v0.1...HEAD
|
- codeberg: https://codeberg.org/lindeas/jilo/compare/v0.1.1...HEAD
|
||||||
- github: https://github.com/lindeas/jilo/compare/v0.1...HEAD
|
- github: https://github.com/lindeas/jilo/compare/v0.1.1...HEAD
|
||||||
- gitlab: https://gitlab.com/lindeas/jilo/-/compare/v0.1...HEAD
|
- gitlab: https://gitlab.com/lindeas/jilo/-/compare/v0.1.1...HEAD
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 0.1.1 - 2024-06-18
|
||||||
|
|
||||||
|
#### Links
|
||||||
|
- upstream: https://code.lindeas.com/lindeas/jilo/compare/v0.1...v0.1.1
|
||||||
|
- codeberg: https://codeberg.org/lindeas/jilo/compare/v0.1...v0.1.1
|
||||||
|
- github: https://github.com/lindeas/jilo/compare/v0.1...v0.1.1
|
||||||
|
- gitlab: https://gitlab.com/lindeas/jilo/-/compare/v0.1...v0.1.1
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
- Initial changelog following the keepachangelog.com format
|
- Initial changelog following the keepachangelog.com format
|
||||||
- Added "silent" option to jilo-cli, suitable for scripting
|
- Added "silent" option to jilo-cli, suitable for scripting
|
||||||
- Added time duration and number of participants in conferences listings
|
- Added time duration and number of participants in conferences listings
|
||||||
- Build resources and scripts for DEB and RPM packages
|
- Added man page
|
||||||
|
- Added build resources and scripts for DEB and RPM packages
|
||||||
|
- Initial build of the DEB and RPM packages
|
||||||
|
- Added DEB repository
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- Updated the way jilo-cli handles multiple options, added filtering conferences by time period
|
- Updated the way jilo-cli handles multiple options, added filtering conferences by time period
|
||||||
|
@ -24,7 +43,6 @@ All notable changes to this project will be documented in this file.
|
||||||
### Fixed
|
### Fixed
|
||||||
- Fixed an error in double counting of conferences in jilo-cli
|
- Fixed an error in double counting of conferences in jilo-cli
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 0.1 - 2024-06-12
|
## 0.1 - 2024-06-12
|
||||||
|
|
||||||
|
|
4
jilo
4
jilo
|
@ -6,8 +6,8 @@
|
||||||
# Bash script for Jitsi Meet components (Videobridge, Jicofo, etc.) logs parsing
|
# Bash script for Jitsi Meet components (Videobridge, Jicofo, etc.) logs parsing
|
||||||
###
|
###
|
||||||
|
|
||||||
VERSION="0.1"
|
VERSION="0.1.1"
|
||||||
RELEASE_DATE="2024-06-12"
|
RELEASE_DATE="2024-06-18"
|
||||||
|
|
||||||
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" #"
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" #"
|
||||||
|
|
||||||
|
|
4
jilo-cli
4
jilo-cli
|
@ -7,8 +7,8 @@
|
||||||
# Command line interface (jilo-cli)
|
# Command line interface (jilo-cli)
|
||||||
###
|
###
|
||||||
|
|
||||||
VERSION="0.1.1-dev"
|
VERSION="0.1.1"
|
||||||
RELEASE_DATE="unreleased"
|
RELEASE_DATE="2024-06-18"
|
||||||
|
|
||||||
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" #"
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" #"
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
Package: jilo
|
Package: jilo
|
||||||
Version: 0.1
|
Version: 0.1.1
|
||||||
Section: utils
|
Section: utils
|
||||||
Priority: optional
|
Priority: optional
|
||||||
Architecture: all
|
Architecture: all
|
||||||
|
|
Loading…
Reference in New Issue