diff --git a/CHANGELOG.md b/CHANGELOG.md index 9fe960b..79a74cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,3 @@ -# 0.7.2 - - * Fix Manage Reminders dialog (the actions column was missing, to edit/delete reminders) - # 0.7.1 * Reduce the scope for toggling a checkbox on/off when not clicking precisely on it (must be to the left of the first letter) diff --git a/bouquin/reminders.py b/bouquin/reminders.py index 6d8b0a1..fe5e031 100644 --- a/bouquin/reminders.py +++ b/bouquin/reminders.py @@ -706,7 +706,7 @@ class ManageRemindersDialog(QDialog): # Reminder list table self.table = QTableWidget() - self.table.setColumnCount(6) + self.table.setColumnCount(5) self.table.setHorizontalHeaderLabels( [ strings._("text"), diff --git a/pyproject.toml b/pyproject.toml index d75bd29..61f8f05 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bouquin" -version = "0.7.2" +version = "0.7.1" description = "Bouquin is a simple, opinionated notebook application written in Python, PyQt and SQLCipher." authors = ["Miguel Jacq "] readme = "README.md" diff --git a/release.sh b/release.sh index f086e0c..9f8b3c8 100755 --- a/release.sh +++ b/release.sh @@ -2,31 +2,6 @@ set -eo pipefail -# Parse the args -while getopts "v:" OPTION -do - case $OPTION in - v) - VERSION=$OPTARG - ;; - ?) - usage - exit - ;; - esac -done - -if [[ -z "${VERSION}" ]]; then - echo "You forgot to pass -v [version]!" - exit 1 -fi - -sed -i s/version.*$/version\ =\ \"${VERSION}\"/g pyproject.toml - -git add pyproject.toml -git commit -m "Bump to ${VERSION}" -git push origin main - # Clean caches etc filedust -y . @@ -35,11 +10,11 @@ poetry build poetry publish # Make AppImage -sudo apt-get -y install libfuse-dev +sudo apt-get install libfuse-dev poetry run pyproject-appimage mv Bouquin.AppImage dist/ # Sign packages for file in `ls -1 dist/`; do qubes-gpg-client --batch --armor --detach-sign dist/$file > dist/$file.asc; done -ssh wolverine.mig5.net "echo ${VERSION} | tee /opt/www/mig5.net/bouquin/version.txt" +echo "Don't forget to update version string on remote server."