change version to 1.28.x for GUI changes

This commit is contained in:
Jean-Francois Dockes 2020-11-23 14:56:46 +01:00
parent 76bdc955a5
commit 8fd9d02900
5 changed files with 23 additions and 22 deletions

View File

@ -4,11 +4,17 @@
# For the kio: (and kdesdk?) # For the kio: (and kdesdk?)
# sudo apt-get install pkg-kde-tools cdbs # sudo apt-get install pkg-kde-tools cdbs
# Active series:
# 16.04LTS xenial 2021-04
# 18.04LTS bionic 2023-04
# 20.04LTS focal 2025-04
# 20.10 groovy 2021-07
PPA_KEYID=7808CE96D38B9201 PPA_KEYID=7808CE96D38B9201
RCLVERS=1.27.12 RCLVERS=1.28.0pre2
SCOPEVERS=1.20.2.4 SCOPEVERS=1.20.2.4
GSSPVERS=1.0.0 GSSPVERS=1.1.0
PPAVERS=1 PPAVERS=1
# #
@ -22,7 +28,7 @@ case $RCLVERS in
1.14*) PPANAME=recoll-ppa;; 1.14*) PPANAME=recoll-ppa;;
*) PPANAME=recoll15-ppa;; *) PPANAME=recoll15-ppa;;
esac esac
#PPANAME=recollexp-ppa PPANAME=recollexp-ppa
echo "PPA: $PPANAME. Type CR if Ok, else ^C" echo "PPA: $PPANAME. Type CR if Ok, else ^C"
read rep read rep
@ -45,11 +51,6 @@ check_recoll_orig()
####### QT ####### QT
debdir=debian debdir=debian
# Active series:
# 16.04LTS xenial 2021-04
# 18.04LTS bionic 2023-04
# 20.04LTS focal 2025-04
# 20.10 groovy 2021-07
series="xenial bionic focal groovy" series="xenial bionic focal groovy"
#series= #series=
@ -86,10 +87,6 @@ done
### KIO. ### KIO.
# Active series:
# 16.04LTS xenial 2021-04
# 18.04LTS bionic 2023-04
# 20.04LTS focal 2025-04
series="xenial bionic focal groovy" series="xenial bionic focal groovy"
series= series=
@ -130,10 +127,6 @@ for svers in $series ; do
done done
### GSSP ### GSSP
# Active series:
# 16.04LTS xenial 2021-04
# 18.04LTS bionic 2023-04
# 20.04LTS focal 2025-04
series="xenial bionic focal groovy" series="xenial bionic focal groovy"
series= series=

View File

@ -1,8 +1,15 @@
recoll (1.28.0pre2-1~ppaPPAVERS~SERIES1) SERIES; urgency=low
* Add preferences options to hide most GUI elements except the result
area and the simple search entry.
-- Jean-Francois Dockes <jf@dockes.org> Mon, 23 Nov 2020 14:55:00 +0100
recoll (1.27.12-1~ppaPPAVERS~SERIES1) SERIES; urgency=low recoll (1.27.12-1~ppaPPAVERS~SERIES1) SERIES; urgency=low
* Repair python source file indexing and spelling replacements * Repair python source file indexing and spelling replacements
-- Jean-Francois Dockes <jf@dockes.org> Mon, 18 Nov 2020 16:15:00 +0100 -- Jean-Francois Dockes <jf@dockes.org> Wed, 18 Nov 2020 16:15:00 +0100
recoll (1.27.11-1~ppaPPAVERS~SERIES1) SERIES; urgency=low recoll (1.27.11-1~ppaPPAVERS~SERIES1) SERIES; urgency=low

View File

@ -464,6 +464,7 @@ qtgui/ptrans_w.h \
qtgui/rclhelp.cpp \ qtgui/rclhelp.cpp \
qtgui/rclhelp.h \ qtgui/rclhelp.h \
qtgui/rclm_idx.cpp \ qtgui/rclm_idx.cpp \
qtgui/rclm_menus.cpp \
qtgui/rclm_preview.cpp \ qtgui/rclm_preview.cpp \
qtgui/rclm_saveload.cpp \ qtgui/rclm_saveload.cpp \
qtgui/rclm_view.cpp \ qtgui/rclm_view.cpp \

View File

@ -1 +1 @@
1.27.12 1.28.0pre2

View File

@ -85,23 +85,23 @@ void RclMain::buildMenus()
queryMenu->addSection(QIcon(), tr("Simple search type")); queryMenu->addSection(QIcon(), tr("Simple search type"));
sstypGroup = new QActionGroup(this); sstypGroup = new QActionGroup(this);
auto actSSAny = new QAction(tr("Any term")); auto actSSAny = new QAction(tr("Any term"), this);
actSSAny->setData(QVariant(SSearch::SST_ANY)); actSSAny->setData(QVariant(SSearch::SST_ANY));
actSSAny->setCheckable(true); actSSAny->setCheckable(true);
sstypGroup->addAction(actSSAny); sstypGroup->addAction(actSSAny);
queryMenu->addAction(actSSAny); queryMenu->addAction(actSSAny);
auto actSSAll = new QAction(tr("All terms")); auto actSSAll = new QAction(tr("All terms"), this);
actSSAll->setData(QVariant(SSearch::SST_ALL)); actSSAll->setData(QVariant(SSearch::SST_ALL));
actSSAll->setCheckable(true); actSSAll->setCheckable(true);
sstypGroup->addAction(actSSAll); sstypGroup->addAction(actSSAll);
queryMenu->addAction(actSSAll); queryMenu->addAction(actSSAll);
auto actSSFile = new QAction(tr("File name")); auto actSSFile = new QAction(tr("File name"), this);
actSSFile->setData(QVariant(SSearch::SST_FNM)); actSSFile->setData(QVariant(SSearch::SST_FNM));
actSSFile->setCheckable(true); actSSFile->setCheckable(true);
sstypGroup->addAction(actSSFile); sstypGroup->addAction(actSSFile);
queryMenu->addAction(actSSFile); queryMenu->addAction(actSSFile);
auto actSSQuery = new QAction(tr("Query language")); auto actSSQuery = new QAction(tr("Query language"), this);
actSSQuery->setData(QVariant(SSearch::SST_LANG)); actSSQuery->setData(QVariant(SSearch::SST_LANG));
actSSQuery->setCheckable(true); actSSQuery->setCheckable(true);
sstypGroup->addAction(actSSQuery); sstypGroup->addAction(actSSQuery);