Tue Dec 1 05:11:53 2020 UTC ()
xfce4-mousepad: update to 0.5.0

Change log:

0.5.0
======
- Bump required GTK+ in `mousepad-prefs-dialog.ui` (#78)
- Fix an oversight in updating actions state (#76)
- Remove TODO file (#74)
- Ensure that opening modes are excluded from translation
- Translation Updates:
  Albanian, Bulgarian, Chinese (China), Dutch, French, German, Greek,
  Hebrew, Indonesian, Italian, Norwegian Bokm奪l, Portuguese,
  Portuguese (Brazil), Slovenian, Spanish, Japanese

0.4.90
======
Release candidate for upcoming stable version 0.5.

- Dependency Changes:
  - GLib >= 2.45.8
  - GTK+ >= 3.20
  - GtkSourceView >= 3.24
  - GTK+ 2 support has been removed
  - GtkSourceView 2 support has been removed

- New Features:
  - Add keybindings to show the menubar temporarily when hidden
  - Add command line option and setting for file opening mode
  - Improve encoding dialog
  - Add regex search

- Discontinued Features
  - multi-select (GTK+ 2)

- Appearance Changes
  - Replace `$HOME` with a tilde in displayed filename
  - Add new default keybindings and reveal some hidden ones
  - Search bar tweaks
  - Make tabs expanded for consistency with other Xfce programs
  - Add copyright and license info to About dialog
  - Improve label texts of "Find and Replace" dialog and search bar
  - Make the statusbar smaller
  - Add new app icon and switch to reverse DNS name
  - Save the state of the "highlight all" button in the search bar
  - Update window title of Find and Replace dialog
  - Add "Wrap around" check box to Find and Replace dialog (Bug #11290)
  - Infer filetype from shebang line (Bug #10514)
  - Show info when Templates directory does not exist (Bug #10486)

- Code Refactoring
  - Restore the use of the file `accels.scm`
  - Code refactoring around saving and restoring window geometry
  - Improve save-related actions
  - Fully switch to GtkApplication
  - Avoid deprecation warnings 5: CSS related
  - Avoid deprecation warnings 4: GtkUIManager and GtkAction
  - GtkStock
  - Avoid deprecation warnings 2: miscellaneous
  - Avoid deprecation warnings 1: alignment and padding
  - Avoid compilation warnings other than deprecation
  - Remove support for GTK+2
  - Switch to README.md and foreign automake mode
  - Add basic GitLab pipeline

- Bug Fixes:
  - Remove README.md from DISTCLEANFILES, it's not generated
  - Fix crash when dragging tab to GSV widget
  - Change GtkTextView wrap mode to GTK_WRAP_WORD_CHAR
  - Initialize the recent manager if needed at startup
  - Prevent search bar from overlapping the document
  - Properly disconnect signal handlers
  - Fix make distcheck
  - Fix color modifications in search entries
  - Do not open an empty document when encoding failed
  - Do not search for previously selected text
  - Update search field with selected text
  - Bug #16717: Move from exo-csource to xdt-csource
  - Remember last save location (Bug #14165)
  - Use g_get_user_dir to get Templates directory (Bug #11048)
  - Sync remaining menu actions to their settings (Bug #11046)
  - Install appstream in metainfo folder (Bug #11200)
  - Add appdata file (Bug #11200)
  - Fix building with `--enable-dbus --disable-gtk3`
  - Change visibility of fullscreen bars after small delay (Bug #9735)
  - Fix return type of fullscreen settings (Bug #9735)

- Translation Updates:
  Albanian, Arabic, Armenian (Armenia), Basque, Belarusian, Bulgarian,
  Catalan, Chinese (China), Chinese (Taiwan), Croatian, Czech, Danish,
  Dutch, Eastern Armenian, English (Australia), English (United
  Kingdom), Estonian, Finnish, French, Galician, German, Greek, Hebrew,
  Hungarian, Icelandic, Indonesian, Interlingue, Italian, Japanese,
  Kazakh, Korean, Lithuanian, Malay, Norwegian Bokm奪l, Norwegian
  Nynorsk, Occitan (post 1500), Polish, Portuguese, Portuguese
  (Brazil), Romanian, Russian, Serbian, Slovak, Slovenian, Spanish,
  Swedish, Telugu, Thai, Turkish, Ukrainian, Uyghur


(gutteridge)
diff -r1.52 -r1.53 pkgsrc/editors/xfce4-mousepad/Makefile
diff -r1.7 -r1.8 pkgsrc/editors/xfce4-mousepad/PLIST
diff -r1.8 -r1.9 pkgsrc/editors/xfce4-mousepad/distinfo

cvs diff -r1.52 -r1.53 pkgsrc/editors/xfce4-mousepad/Makefile (expand / switch to unified diff)

--- pkgsrc/editors/xfce4-mousepad/Makefile 2020/11/05 09:08:03 1.52
+++ pkgsrc/editors/xfce4-mousepad/Makefile 2020/12/01 05:11:53 1.53
@@ -1,19 +1,19 @@ @@ -1,19 +1,19 @@
1# $NetBSD: Makefile,v 1.52 2020/11/05 09:08:03 ryoon Exp $ 1# $NetBSD: Makefile,v 1.53 2020/12/01 05:11:53 gutteridge Exp $
2 2
3PKGREVISION= 6 
4.include "../../meta-pkgs/xfce4/Makefile.common" 3.include "../../meta-pkgs/xfce4/Makefile.common"
5 4
6VERSION= 0.4.2 5VERSION= 0.5.0
7DISTNAME= mousepad-${VERSION} 6DISTNAME= mousepad-${VERSION}
8PKGNAME= xfce4-mousepad-${VERSION} 7PKGNAME= xfce4-mousepad-${VERSION}
9CATEGORIES= editors 8CATEGORIES= editors
10MASTER_SITES= http://archive.xfce.org/src/apps/mousepad/0.4/ 9MASTER_SITES= https://archive.xfce.org/src/apps/mousepad/${VERSION:R}/
11 10
12HOMEPAGE= http://users.xfce.org/~benny/xfce/apps.html 11HOMEPAGE= http://users.xfce.org/~benny/xfce/apps.html
13COMMENT= Xfce text editor 12COMMENT= Xfce text editor
14 13
15.include "../../devel/glib2/schemas.mk" 14.include "../../devel/glib2/schemas.mk"
16.include "../../devel/xfce4-conf/buildlink3.mk" 15.include "../../devel/xfce4-conf/buildlink3.mk"
 16.include "../../graphics/hicolor-icon-theme/buildlink3.mk"
17.include "../../sysutils/desktop-file-utils/desktopdb.mk" 17.include "../../sysutils/desktop-file-utils/desktopdb.mk"
18.include "../../x11/gtksourceview3/buildlink3.mk" 18.include "../../x11/gtksourceview3/buildlink3.mk"
19.include "../../mk/bsd.pkg.mk" 19.include "../../mk/bsd.pkg.mk"

cvs diff -r1.7 -r1.8 pkgsrc/editors/xfce4-mousepad/PLIST (expand / switch to unified diff)

--- pkgsrc/editors/xfce4-mousepad/PLIST 2019/08/17 20:28:32 1.7
+++ pkgsrc/editors/xfce4-mousepad/PLIST 2020/12/01 05:11:53 1.8
@@ -1,37 +1,43 @@ @@ -1,37 +1,43 @@
1@comment $NetBSD: PLIST,v 1.7 2019/08/17 20:28:32 gutteridge Exp $ 1@comment $NetBSD: PLIST,v 1.8 2020/12/01 05:11:53 gutteridge Exp $
2bin/mousepad 2bin/mousepad
3share/applications/mousepad.desktop 3share/applications/mousepad.desktop
4share/glib-2.0/schemas/org.xfce.mousepad.gschema.xml 4share/glib-2.0/schemas/org.xfce.mousepad.gschema.xml
 5share/icons/hicolor/128x128/apps/org.xfce.mousepad.png
 6share/icons/hicolor/16x16/apps/org.xfce.mousepad.png
 7share/icons/hicolor/48x48/apps/org.xfce.mousepad.png
 8share/icons/hicolor/scalable/apps/org.xfce.mousepad.svg
5share/locale/ar/LC_MESSAGES/mousepad.mo 9share/locale/ar/LC_MESSAGES/mousepad.mo
6share/locale/ast/LC_MESSAGES/mousepad.mo 10share/locale/ast/LC_MESSAGES/mousepad.mo
7share/locale/be/LC_MESSAGES/mousepad.mo 11share/locale/be/LC_MESSAGES/mousepad.mo
8share/locale/bg/LC_MESSAGES/mousepad.mo 12share/locale/bg/LC_MESSAGES/mousepad.mo
9share/locale/ca/LC_MESSAGES/mousepad.mo 13share/locale/ca/LC_MESSAGES/mousepad.mo
10share/locale/cs/LC_MESSAGES/mousepad.mo 14share/locale/cs/LC_MESSAGES/mousepad.mo
11share/locale/da/LC_MESSAGES/mousepad.mo 15share/locale/da/LC_MESSAGES/mousepad.mo
12share/locale/de/LC_MESSAGES/mousepad.mo 16share/locale/de/LC_MESSAGES/mousepad.mo
13share/locale/el/LC_MESSAGES/mousepad.mo 17share/locale/el/LC_MESSAGES/mousepad.mo
14share/locale/en_AU/LC_MESSAGES/mousepad.mo 18share/locale/en_AU/LC_MESSAGES/mousepad.mo
15share/locale/en_GB/LC_MESSAGES/mousepad.mo 19share/locale/en_GB/LC_MESSAGES/mousepad.mo
16share/locale/es/LC_MESSAGES/mousepad.mo 20share/locale/es/LC_MESSAGES/mousepad.mo
 21share/locale/et/LC_MESSAGES/mousepad.mo
17share/locale/eu/LC_MESSAGES/mousepad.mo 22share/locale/eu/LC_MESSAGES/mousepad.mo
18share/locale/fi/LC_MESSAGES/mousepad.mo 23share/locale/fi/LC_MESSAGES/mousepad.mo
19share/locale/fr/LC_MESSAGES/mousepad.mo 24share/locale/fr/LC_MESSAGES/mousepad.mo
20share/locale/gl/LC_MESSAGES/mousepad.mo 25share/locale/gl/LC_MESSAGES/mousepad.mo
21share/locale/he/LC_MESSAGES/mousepad.mo 26share/locale/he/LC_MESSAGES/mousepad.mo
22share/locale/hr/LC_MESSAGES/mousepad.mo 27share/locale/hr/LC_MESSAGES/mousepad.mo
23share/locale/hu/LC_MESSAGES/mousepad.mo 28share/locale/hu/LC_MESSAGES/mousepad.mo
24share/locale/hy_AM/LC_MESSAGES/mousepad.mo 29share/locale/hy_AM/LC_MESSAGES/mousepad.mo
 30share/locale/hye/LC_MESSAGES/mousepad.mo
25share/locale/id/LC_MESSAGES/mousepad.mo 31share/locale/id/LC_MESSAGES/mousepad.mo
26share/locale/ie/LC_MESSAGES/mousepad.mo 32share/locale/ie/LC_MESSAGES/mousepad.mo
27share/locale/is/LC_MESSAGES/mousepad.mo 33share/locale/is/LC_MESSAGES/mousepad.mo
28share/locale/it/LC_MESSAGES/mousepad.mo 34share/locale/it/LC_MESSAGES/mousepad.mo
29share/locale/ja/LC_MESSAGES/mousepad.mo 35share/locale/ja/LC_MESSAGES/mousepad.mo
30share/locale/kk/LC_MESSAGES/mousepad.mo 36share/locale/kk/LC_MESSAGES/mousepad.mo
31share/locale/ko/LC_MESSAGES/mousepad.mo 37share/locale/ko/LC_MESSAGES/mousepad.mo
32share/locale/lt/LC_MESSAGES/mousepad.mo 38share/locale/lt/LC_MESSAGES/mousepad.mo
33share/locale/ms/LC_MESSAGES/mousepad.mo 39share/locale/ms/LC_MESSAGES/mousepad.mo
34share/locale/nb/LC_MESSAGES/mousepad.mo 40share/locale/nb/LC_MESSAGES/mousepad.mo
35share/locale/nl/LC_MESSAGES/mousepad.mo 41share/locale/nl/LC_MESSAGES/mousepad.mo
36share/locale/nn/LC_MESSAGES/mousepad.mo 42share/locale/nn/LC_MESSAGES/mousepad.mo
37share/locale/oc/LC_MESSAGES/mousepad.mo 43share/locale/oc/LC_MESSAGES/mousepad.mo
@@ -42,14 +48,15 @@ share/locale/ro/LC_MESSAGES/mousepad.mo @@ -42,14 +48,15 @@ share/locale/ro/LC_MESSAGES/mousepad.mo
42share/locale/ru/LC_MESSAGES/mousepad.mo 48share/locale/ru/LC_MESSAGES/mousepad.mo
43share/locale/sk/LC_MESSAGES/mousepad.mo 49share/locale/sk/LC_MESSAGES/mousepad.mo
44share/locale/sl/LC_MESSAGES/mousepad.mo 50share/locale/sl/LC_MESSAGES/mousepad.mo
45share/locale/sq/LC_MESSAGES/mousepad.mo 51share/locale/sq/LC_MESSAGES/mousepad.mo
46share/locale/sr/LC_MESSAGES/mousepad.mo 52share/locale/sr/LC_MESSAGES/mousepad.mo
47share/locale/sv/LC_MESSAGES/mousepad.mo 53share/locale/sv/LC_MESSAGES/mousepad.mo
48share/locale/te/LC_MESSAGES/mousepad.mo 54share/locale/te/LC_MESSAGES/mousepad.mo
49share/locale/th/LC_MESSAGES/mousepad.mo 55share/locale/th/LC_MESSAGES/mousepad.mo
50share/locale/tr/LC_MESSAGES/mousepad.mo 56share/locale/tr/LC_MESSAGES/mousepad.mo
51share/locale/ug/LC_MESSAGES/mousepad.mo 57share/locale/ug/LC_MESSAGES/mousepad.mo
52share/locale/uk/LC_MESSAGES/mousepad.mo 58share/locale/uk/LC_MESSAGES/mousepad.mo
53share/locale/zh_CN/LC_MESSAGES/mousepad.mo 59share/locale/zh_CN/LC_MESSAGES/mousepad.mo
54share/locale/zh_TW/LC_MESSAGES/mousepad.mo 60share/locale/zh_TW/LC_MESSAGES/mousepad.mo
 61share/metainfo/mousepad.appdata.xml
55share/polkit-1/actions/org.xfce.mousepad.policy 62share/polkit-1/actions/org.xfce.mousepad.policy

cvs diff -r1.8 -r1.9 pkgsrc/editors/xfce4-mousepad/distinfo (expand / switch to unified diff)

--- pkgsrc/editors/xfce4-mousepad/distinfo 2019/08/17 20:28:32 1.8
+++ pkgsrc/editors/xfce4-mousepad/distinfo 2020/12/01 05:11:53 1.9
@@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
1$NetBSD: distinfo,v 1.8 2019/08/17 20:28:32 gutteridge Exp $ 1$NetBSD: distinfo,v 1.9 2020/12/01 05:11:53 gutteridge Exp $
2 2
3SHA1 (mousepad-0.4.2.tar.bz2) = 26f0a2860973c4acd425dc8b5e7736ba6cb9a459 3SHA1 (mousepad-0.5.0.tar.bz2) = b86c760f563e25f89bcbe3d0c45201455451ab08
4RMD160 (mousepad-0.4.2.tar.bz2) = f02202f24a88d033a149966b6e3cbc3972568b83 4RMD160 (mousepad-0.5.0.tar.bz2) = 524439676a37630284eac3e1046ebbefcf9aa08b
5SHA512 (mousepad-0.4.2.tar.bz2) = f3266018ce61683dc62b6866649f3674cc363ea652de04d3f087341c61cf24fb5eb730411948e354d085792f88b59e3dba7e7712715d92711f750b33d8bfb69a 5SHA512 (mousepad-0.5.0.tar.bz2) = 06cab143a3a0f98ad2aeecb0c7f034b8dede355de09632217da27dfb0675909c6cb284b227644c9ab3513a67fb23594ee63f0112ade69830d46559a8e7d65842
6Size (mousepad-0.4.2.tar.bz2) = 696014 bytes 6Size (mousepad-0.5.0.tar.bz2) = 810533 bytes