pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/editors/feathernotes



Module Name:    pkgsrc
Committed By:   pin
Date:           Thu Mar 11 08:10:58 UTC 2021

Modified Files:
        pkgsrc/editors/feathernotes: Makefile PLIST distinfo

Log Message:
editors/feathernotes: update to 0.9.0

Main changes:
● Added cmake support (besides qmake).
● Added support for the recently opened files.
● Fixed the bugs of searching and replacing in all nodes.
● Go to the last active node when starting with the last opened note.
● Improvements and fixes to custom background and foreground colors. (if a
note is created with this version, the bg/fg colors of existing nodes will
change on the fly.)
● Prevented Qt from giving rich text to the selection clipboard.
● Prevented the transference of password (or lack of it) from one note to
another in rare cases.
● Prevented the transference of font settings from an opened note to a newly
created one.
● Allowed changing of the horizontal alignment of tables.
● Workaround for KDE's Plasma tray tooltip.
● Instead of eliding texts, show the horizontal scrollbar in the side-pane
when needed.
● Require Qt5.12.
● Small fixes to smooth scrolling and link opening.


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 pkgsrc/editors/feathernotes/Makefile
cvs rdiff -u -r1.3 -r1.4 pkgsrc/editors/feathernotes/PLIST
cvs rdiff -u -r1.4 -r1.5 pkgsrc/editors/feathernotes/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/editors/feathernotes/Makefile
diff -u pkgsrc/editors/feathernotes/Makefile:1.11 pkgsrc/editors/feathernotes/Makefile:1.12
--- pkgsrc/editors/feathernotes/Makefile:1.11   Thu Nov  5 09:08:00 2020
+++ pkgsrc/editors/feathernotes/Makefile        Thu Mar 11 08:10:58 2021
@@ -1,9 +1,8 @@
-# $NetBSD: Makefile,v 1.11 2020/11/05 09:08:00 ryoon Exp $
+# $NetBSD: Makefile,v 1.12 2021/03/11 08:10:58 pin Exp $
 
-VERSION=       0.8.0
+VERSION=       0.9.0
 DISTNAME=      FeatherNotes-V${VERSION}
 PKGNAME=       feathernotes-${VERSION}
-PKGREVISION=   1
 CATEGORIES=    editors
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=tsujan/}
 GITHUB_TAG=    V${PKGVERSION_NOREV}
@@ -14,8 +13,8 @@ COMMENT=      Lightweight Qt5 hierarchical no
 LICENSE=       gnu-gpl-v3
 
 WRKSRC=                ${WRKDIR}/FeatherNotes-${VERSION}
-USE_LANGUAGES= c++
 USE_TOOLS+=    pkg-config
+USE_LANGUAGES= c++
 
 INSTALL_MAKE_FLAGS+=   INSTALL_ROOT=${DESTDIR}
 
@@ -31,5 +30,6 @@ TOOL_DEPENDS+=        qt5-qttools-[0-9]*:../../
 .include "../../x11/qt5-qtx11extras/buildlink3.mk"
 .include "../../x11/libX11/buildlink3.mk"
 .include "../../x11/libXext/buildlink3.mk"
+.include "../../textproc/hunspell/buildlink3.mk"
 .include "../../graphics/hicolor-icon-theme/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/editors/feathernotes/PLIST
diff -u pkgsrc/editors/feathernotes/PLIST:1.3 pkgsrc/editors/feathernotes/PLIST:1.4
--- pkgsrc/editors/feathernotes/PLIST:1.3       Mon Nov  2 20:20:01 2020
+++ pkgsrc/editors/feathernotes/PLIST   Thu Mar 11 08:10:58 2021
@@ -1,25 +1,36 @@
-@comment $NetBSD: PLIST,v 1.3 2020/11/02 20:20:01 pin Exp $
+@comment $NetBSD: PLIST,v 1.4 2021/03/11 08:10:58 pin Exp $
 bin/feathernotes
 share/applications/feathernotes.desktop
+share/feathernotes/translations/feathernotes_ar_DZ.qm
+share/feathernotes/translations/feathernotes_be.qm
+share/feathernotes/translations/feathernotes_bg.qm
 share/feathernotes/translations/feathernotes_cs.qm
 share/feathernotes/translations/feathernotes_cy.qm
+share/feathernotes/translations/feathernotes_da.qm
 share/feathernotes/translations/feathernotes_de.qm
+share/feathernotes/translations/feathernotes_el.qm
 share/feathernotes/translations/feathernotes_eo.qm
 share/feathernotes/translations/feathernotes_es.qm
+share/feathernotes/translations/feathernotes_et.qm
+share/feathernotes/translations/feathernotes_fa.qm
+share/feathernotes/translations/feathernotes_fi.qm
 share/feathernotes/translations/feathernotes_fr.qm
 share/feathernotes/translations/feathernotes_he.qm
 share/feathernotes/translations/feathernotes_hu.qm
 share/feathernotes/translations/feathernotes_id.qm
 share/feathernotes/translations/feathernotes_it.qm
 share/feathernotes/translations/feathernotes_ja.qm
+share/feathernotes/translations/feathernotes_ko.qm
 share/feathernotes/translations/feathernotes_lt.qm
 share/feathernotes/translations/feathernotes_nb_NO.qm
 share/feathernotes/translations/feathernotes_nl.qm
 share/feathernotes/translations/feathernotes_pl.qm
+share/feathernotes/translations/feathernotes_pt.qm
 share/feathernotes/translations/feathernotes_pt_BR.qm
-share/feathernotes/translations/feathernotes_pt_PT.qm
 share/feathernotes/translations/feathernotes_ru.qm
+share/feathernotes/translations/feathernotes_si.qm
 share/feathernotes/translations/feathernotes_sk_SK.qm
+share/feathernotes/translations/feathernotes_tr.qm
 share/feathernotes/translations/feathernotes_zh_CN.qm
 share/feathernotes/translations/feathernotes_zh_HANT.qm
 share/icons/hicolor/scalable/apps/feathernotes.svg

Index: pkgsrc/editors/feathernotes/distinfo
diff -u pkgsrc/editors/feathernotes/distinfo:1.4 pkgsrc/editors/feathernotes/distinfo:1.5
--- pkgsrc/editors/feathernotes/distinfo:1.4    Mon Nov  2 20:20:01 2020
+++ pkgsrc/editors/feathernotes/distinfo        Thu Mar 11 08:10:58 2021
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.4 2020/11/02 20:20:01 pin Exp $
+$NetBSD: distinfo,v 1.5 2021/03/11 08:10:58 pin Exp $
 
-SHA1 (FeatherNotes-V0.8.0.tar.gz) = 9afcb4b04ba86d34f148ab2a3708924f465de23e
-RMD160 (FeatherNotes-V0.8.0.tar.gz) = dea15d3bafd24bacbd0c72202c02c1b4abf3a1f4
-SHA512 (FeatherNotes-V0.8.0.tar.gz) = d244159f84feecb32464ee320d00ebfbe8df88cccfa3f4ea786731bc204f0c7a35d7c91dc2ce668f8facbebb8da566d9ffafe883fedbce8be84d51af38fb5637
-Size (FeatherNotes-V0.8.0.tar.gz) = 392700 bytes
+SHA1 (FeatherNotes-V0.9.0.tar.gz) = 5e9d9948c0988b4769886dac7a65957010fa14ef
+RMD160 (FeatherNotes-V0.9.0.tar.gz) = 789def1bb7e7ccff0867d268bcaa8fab36db3a83
+SHA512 (FeatherNotes-V0.9.0.tar.gz) = 0264fa1215503f4a9625accfaf2e436e035232cfe25f77cb6a7f50231e6e0155677d36f2201382de9f64bb4b41bb2b8e772dd74099b293a7c8c658f89827f595
+Size (FeatherNotes-V0.9.0.tar.gz) = 483572 bytes



Home | Main Index | Thread Index | Old Index