diff --git a/README.md b/README.md index c2ef76f7a..12f4fedac 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,17 @@ ## 🚀 About -**LibreBooking** is an open-source scheduling solution, forked from Booked Scheduler. It offers a flexible, mobile-friendly, and extensible interface for organizations to manage resource reservations. The repository for the last open source version of Booked Scheduler is maintained here; the `develop` branch contains the latest working code (beta), while `master` is the stable release. +**LibreBooking** is an open-source resource scheduling solution. It provides a +flexible, mobile-friendly, and extensible interface for organizations to manage +resource reservations. + +The repository for LibreBooking is hosted on GitHub at +; the `develop` branch contains the latest +code. + +LibreBooking is a fork of Booked Scheduler, based on Booked Scheduler's last +open-source version released in 2020. Since then, LibreBooking has evolved +significantly and diverged from the original project. ## ✨ Features diff --git a/tox.ini b/tox.ini index d2b7e5a8c..ac51c4355 100644 --- a/tox.ini +++ b/tox.ini @@ -24,8 +24,11 @@ isolated_build = True [testenv:cz] basepython = python3 deps = -r{toxinidir}/requirements-lint.txt +allowlist_externals = git commands = - cz check --rev-range 551582832049c6f13cd1aff692063b08f7c82a9e..HEAD + # Ensure that our starting commit is really an ancestor of HEAD + git merge-base --is-ancestor 8a420dd06cb2b07748953255420556b0ded7d769 HEAD + cz check --rev-range 8a420dd06cb2b07748953255420556b0ded7d769..HEAD [testenv:docs] description = Builds the docs site. Generated HTML files will be available in '{env:DOCS_BUILD}'.