pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/devel/ktexteditor ktexteditor: update to 5.61.0
details: https://anonhg.NetBSD.org/pkgsrc/rev/ee15f0fb29fd
branches: trunk
changeset: 400419:ee15f0fb29fd
user: markd <markd%pkgsrc.org@localhost>
date: Tue Aug 27 21:11:15 2019 +0000
description:
ktexteditor: update to 5.61.0
5.61.0
Save and load page margins
Don't persist authentication
Re-map default "Switch input mode" shortcut to not confict with konsolepart
Make keyword completion model return HideListIfAutomaticInvocation by
default
Minimap: Do not grab the left-mmouse-button-click on up/down buttons
allow up to 1024 hl ranges instead of not higlighting the line at all if
that limit is reached
fix folding of lines with end position at column 0 of a line
Add option to treat some chars also as "auto bracket" only when we have a
selection
Add an action to insert a non-indented newline
Add setting to enable/disable text drag-and-drop (on by default)
5.60.0
fix goto line centering
Fix bookmark icon display on icon border with low dpi
Fix action "Show Icon Border" to toggle border again
Fix empty pages in print preview and lines printed twice
remove no longer used header
fix autoscrolling down speed
Add default variables for variables interface
Make automatic spellcheck work after reloading a document
raise default line length limit to 10000
WIP:Disable highlighting after 512 characters on a line
KateModeMenuList: move to QListView
5.59.0
Don't delete entire previous line by backspace in pos 0
Use native dialog overwrite check
Add action to reset font size
show static word wrap marker always if requested
Ensure highlighted range begin/end marker after unfold
Fix: don't reset Highlight when saving some files
Auto indentation: Use std::vector instead of QList
Fix: Use default indentation mode for new files
remove duplicated assignment
honor auto-bracket setting for balance check
improve invalid character check on loading
New menu of syntax highlighting in the status bar
Avoid infinite loop in "Toggle Contained Nodes" action
5.58.0
Review kate config pages to improve maintenance friendliness
Allow to change the Mode, after changing the Highlighting
ViewConfig: Use new generic config interface
Fix bookmark pixmap painting on icon bar
Ensure the left border miss no change of the count of line number digits
Fix to show folding preview when move the mouse from bottom to top
Review IconBorder
Add input methods to input method status bar button
Paint the folding marker in proper color and make it more visible
remove default shortcut F6 to show icon border
Add action to toggle folding of child ranges
Retitle button "Close" to "Close file" when a file has been removed on disk
up copy-right, perhaps that should be a define, too
avoid conflicting shortcuts for switching tabs
KateIconBorder: Fix folding popup width and height
avoid view jump to bottom on folding changes
DocumentPrivate: Respect indention mode when block selection
ViewInternal: Fix makeVisible(..)
DocumentPrivate: Make bracket handling smart
ViewInternal: Review drop event
Allow to close a document whose file was deleted on disk
KateIconBorder: Use UTF-8 char instead of special pixmap as dyn wrap indicator
KateIconBorder: Ensure Dyn Wrap Marker are shown
KateIconBorder: Code cosmetic
DocumentPrivate: Support auto bracket in block selection mode
diffstat:
devel/ktexteditor/Makefile | 13 +------------
devel/ktexteditor/PLIST | 4 ++--
devel/ktexteditor/distinfo | 10 +++++-----
3 files changed, 8 insertions(+), 19 deletions(-)
diffs (66 lines):
diff -r a127a9332c5c -r ee15f0fb29fd devel/ktexteditor/Makefile
--- a/devel/ktexteditor/Makefile Tue Aug 27 21:10:00 2019 +0000
+++ b/devel/ktexteditor/Makefile Tue Aug 27 21:11:15 2019 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.33 2019/08/11 13:18:45 wiz Exp $
+# $NetBSD: Makefile,v 1.34 2019/08/27 21:11:15 markd Exp $
DISTNAME= ktexteditor-${KF5VER}
-PKGREVISION= 1
CATEGORIES= devel
HOMEPAGE= https://community.kde.org/Frameworks
@@ -20,16 +19,6 @@
MAKE_DIRS+= ${PKG_SYSCONFDIR}/dbus-1/system.d
INSTALLATION_DIRS+= share/examples/ktexteditor
-SUBST_CLASSES+= xdg
-SUBST_STAGE.xdg= pre-configure
-SUBST_MESSAGE.xdg= Install via examples dir.
-SUBST_FILES.xdg= CMakeLists.txt
-SUBST_SED.xdg= -e 's:{KDE_INSTALL_CONFDIR}:{KDE_INSTALL_XDG_EX_DIR}:'
-
-MAKE_DIRS+= ${PKG_SYSCONFDIR}/xdg
-CONF_FILES+= ${PREFIX}/share/examples/kde-xdg/ktexteditor.categories \
- ${PKG_SYSCONFDIR}/xdg/ktexteditor.categories
-
.include "../../devel/libgit2/buildlink3.mk"
.include "../../devel/kparts/buildlink3.mk"
.include "../../textproc/syntax-highlighting/buildlink3.mk"
diff -r a127a9332c5c -r ee15f0fb29fd devel/ktexteditor/PLIST
--- a/devel/ktexteditor/PLIST Tue Aug 27 21:10:00 2019 +0000
+++ b/devel/ktexteditor/PLIST Tue Aug 27 21:11:15 2019 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.4 2019/04/25 20:50:24 markd Exp $
+@comment $NetBSD: PLIST,v 1.5 2019/08/27 21:11:15 markd Exp $
include/KF5/KTextEditor/KTextEditor/AbstractAnnotationItemDelegate
include/KF5/KTextEditor/KTextEditor/AnnotationInterface
include/KF5/KTextEditor/KTextEditor/Application
@@ -72,7 +72,6 @@
qt5/mkspecs/modules/qt_KTextEditor.pri
qt5/plugins/kf5/parts/katepart.so
share/dbus-1/system-services/org.kde.ktexteditor.katetextbuffer.service
-share/examples/kde-xdg/ktexteditor.categories
share/examples/ktexteditor/org.kde.ktexteditor.katetextbuffer.conf
share/katepart5/script/README.md
share/kdevappwizard/templates/ktexteditor-plugin.tar.bz2
@@ -164,3 +163,4 @@
share/locale/zh_CN/LC_MESSAGES/ktexteditor5.mo
share/locale/zh_TW/LC_MESSAGES/ktexteditor5.mo
share/polkit-1/actions/org.kde.ktexteditor.katetextbuffer.policy
+share/qlogging-categories5/ktexteditor.categories
diff -r a127a9332c5c -r ee15f0fb29fd devel/ktexteditor/distinfo
--- a/devel/ktexteditor/distinfo Tue Aug 27 21:10:00 2019 +0000
+++ b/devel/ktexteditor/distinfo Tue Aug 27 21:11:15 2019 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.6 2019/04/25 20:50:24 markd Exp $
+$NetBSD: distinfo,v 1.7 2019/08/27 21:11:15 markd Exp $
-SHA1 (ktexteditor-5.57.0.tar.xz) = 197c248e6d5823d0bde622d8cc53a74406e20030
-RMD160 (ktexteditor-5.57.0.tar.xz) = 55f6157eea9388ab5144dc3208555d9a39babc44
-SHA512 (ktexteditor-5.57.0.tar.xz) = e5b1462eed712273e1b5bf6107f42da7bea79d06d160106bc1fb68825f062b898a15a231f864819b74103eeb8772c09adf591945cef8bd663389290daf785a82
-Size (ktexteditor-5.57.0.tar.xz) = 2294748 bytes
+SHA1 (ktexteditor-5.61.0.tar.xz) = 2ec6e673a2d7c09b17f2d9f2998e43b1537b1827
+RMD160 (ktexteditor-5.61.0.tar.xz) = f298182d60c9f62a892fd7c15f8d22ef05b755b1
+SHA512 (ktexteditor-5.61.0.tar.xz) = 8c6debbf0a8c455ab96d68be85a0e962c424dd2c970ded2d0fc761af07398e05933d0ab82b1cbd6c8d5629ba486c3d00bc5f2dfd0e9601e815f6399cac6070e4
+Size (ktexteditor-5.61.0.tar.xz) = 2333144 bytes
Home |
Main Index |
Thread Index |
Old Index