Compare commits
3 commits
206670454f
...
13b1ad7373
| Author | SHA1 | Date | |
|---|---|---|---|
| 13b1ad7373 | |||
| 7abd99fe24 | |||
| 2112de39b8 |
4 changed files with 33 additions and 4 deletions
|
|
@ -1,3 +1,7 @@
|
||||||
|
# 0.7.2
|
||||||
|
|
||||||
|
* Fix Manage Reminders dialog (the actions column was missing, to edit/delete reminders)
|
||||||
|
|
||||||
# 0.7.1
|
# 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)
|
* Reduce the scope for toggling a checkbox on/off when not clicking precisely on it (must be to the left of the first letter)
|
||||||
|
|
|
||||||
|
|
@ -706,7 +706,7 @@ class ManageRemindersDialog(QDialog):
|
||||||
|
|
||||||
# Reminder list table
|
# Reminder list table
|
||||||
self.table = QTableWidget()
|
self.table = QTableWidget()
|
||||||
self.table.setColumnCount(5)
|
self.table.setColumnCount(6)
|
||||||
self.table.setHorizontalHeaderLabels(
|
self.table.setHorizontalHeaderLabels(
|
||||||
[
|
[
|
||||||
strings._("text"),
|
strings._("text"),
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "bouquin"
|
name = "bouquin"
|
||||||
version = "0.7.1"
|
version = "0.7.2"
|
||||||
description = "Bouquin is a simple, opinionated notebook application written in Python, PyQt and SQLCipher."
|
description = "Bouquin is a simple, opinionated notebook application written in Python, PyQt and SQLCipher."
|
||||||
authors = ["Miguel Jacq <mig@mig5.net>"]
|
authors = ["Miguel Jacq <mig@mig5.net>"]
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|
|
||||||
29
release.sh
29
release.sh
|
|
@ -2,6 +2,31 @@
|
||||||
|
|
||||||
set -eo pipefail
|
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
|
# Clean caches etc
|
||||||
filedust -y .
|
filedust -y .
|
||||||
|
|
||||||
|
|
@ -10,11 +35,11 @@ poetry build
|
||||||
poetry publish
|
poetry publish
|
||||||
|
|
||||||
# Make AppImage
|
# Make AppImage
|
||||||
sudo apt-get install libfuse-dev
|
sudo apt-get -y install libfuse-dev
|
||||||
poetry run pyproject-appimage
|
poetry run pyproject-appimage
|
||||||
mv Bouquin.AppImage dist/
|
mv Bouquin.AppImage dist/
|
||||||
|
|
||||||
# Sign packages
|
# Sign packages
|
||||||
for file in `ls -1 dist/`; do qubes-gpg-client --batch --armor --detach-sign dist/$file > dist/$file.asc; done
|
for file in `ls -1 dist/`; do qubes-gpg-client --batch --armor --detach-sign dist/$file > dist/$file.asc; done
|
||||||
|
|
||||||
echo "Don't forget to update version string on remote server."
|
ssh wolverine.mig5.net "echo ${VERSION} | tee /opt/www/mig5.net/bouquin/version.txt"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue