summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-07-13 17:18:38 +0000
committerB. Stack <bgstack15@gmail.com>2022-07-13 17:18:38 +0000
commitafb332d67798fa461b44586a0807e1859ec79756 (patch)
tree9be6e0c6880770c85b76f6016a885f0d065fca1b
parentMerge branch 'scite-bump' into 'master' (diff)
parentnotepadnext 0.5.3 (diff)
downloadstackrpms-afb332d67798fa461b44586a0807e1859ec79756.tar.gz
stackrpms-afb332d67798fa461b44586a0807e1859ec79756.tar.bz2
stackrpms-afb332d67798fa461b44586a0807e1859ec79756.zip
Merge branch 'notepadnext-bump' into 'master'
notepadnext 0.5.3 See merge request bgstack15/stackrpms!310
-rw-r--r--notepadnext/debian/changelog18
-rw-r--r--notepadnext/debian/control4
-rw-r--r--notepadnext/debian/notepadnext.dsc14
-rw-r--r--notepadnext/debian/patches/disable-i18n.patch14
-rw-r--r--notepadnext/debian/patches/series2
5 files changed, 50 insertions, 2 deletions
diff --git a/notepadnext/debian/changelog b/notepadnext/debian/changelog
index a520424..cc7ab31 100644
--- a/notepadnext/debian/changelog
+++ b/notepadnext/debian/changelog
@@ -1,3 +1,21 @@
+notepadnext (0.5.3-1) obs; urgency=low
+
+ * What's changed:
+ * Add 'Find All in All Documents'
+ * Add 'Replace All in All Open Documents'
+ * Add ability to navigate to search results
+ * Add Swedish translation
+ * Add command line argument to load a specified translation
+ * Fix segfault when trying to open non-existing file
+ * Fix allowing user to create non-existing file
+ * Ensure lines are visible when going to range
+ * Fix crash when dragging text into the application
+ * Automate publishing GitHub release
+ * Package changes
+ * Disable internationalization because of incomplete steps
+
+ -- B. Stack <bgstack15@gmail.com> Mon, 11 Jul 2022 16:33:08 -0400
+
notepadnext (0.4.10-1) obs; urgency=low
* Initial release. Closes: packages-want#23
diff --git a/notepadnext/debian/control b/notepadnext/debian/control
index 3e23616..869c1f4 100644
--- a/notepadnext/debian/control
+++ b/notepadnext/debian/control
@@ -7,7 +7,9 @@ Build-Depends: debhelper-compat (= 12),
libqt6core6,
qmake6,
qt6-base-private-dev,
- qtbase5-private-dev
+ qtbase5-private-dev,
+# When i18n works, we will need this b-d:
+#qt6-l10n-tools
Standards-Version: 4.5.0
Homepage: https://github.com/dail8859/NotepadNext
diff --git a/notepadnext/debian/notepadnext.dsc b/notepadnext/debian/notepadnext.dsc
new file mode 100644
index 0000000..ae1e6a4
--- /dev/null
+++ b/notepadnext/debian/notepadnext.dsc
@@ -0,0 +1,14 @@
+Format: 3.0 (quilt)
+Source: notepadnext
+Binary: notepadnext
+Architecture: any
+Version: 0.5.3-1
+Maintainer: B. Stack <bgstack15@gmail.com>
+Homepage: https://github.com/dail8859/NotepadNext
+Standards-Version: 4.5.0
+Build-Depends: debhelper-compat (= 12), libqt6core5compat6-dev, libqt6core6, qmake6, qt6-base-private-dev, qtbase5-private-dev
+Package-List:
+ notepadnext deb editors optional arch=any
+Files:
+ 00000000000000000000000000000000 1 notepadnext.orig.tar.gz
+ 00000000000000000000000000000000 1 notepadnext.debian.tar.xz
diff --git a/notepadnext/debian/patches/disable-i18n.patch b/notepadnext/debian/patches/disable-i18n.patch
new file mode 100644
index 0000000..5bf512c
--- /dev/null
+++ b/notepadnext/debian/patches/disable-i18n.patch
@@ -0,0 +1,14 @@
+Author: bgstack15
+Message: Rather than troubleshoot why the internationalization fails to compile, just disable it entirely.
+diff --git a/src/NotepadNext/NotepadNext.pro b/src/NotepadNext/NotepadNext.pro
+index 36e02d6..1d10fff 100644
+--- a/src/NotepadNext/NotepadNext.pro
++++ b/src/NotepadNext/NotepadNext.pro
+@@ -34,7 +34,6 @@ include(../lua.pri)
+ include(../ads.pri)
+ include(../editorconfig-core-qt/EditorConfig.pri)
+ win32:include(../QSimpleUpdater/QSimpleUpdater.pri)
+-include(../i18n.pri)
+
+ # Set variables for output executable
+ VERSION = $$APP_VERSION
diff --git a/notepadnext/debian/patches/series b/notepadnext/debian/patches/series
index 4a97dfa..86b66ee 100644
--- a/notepadnext/debian/patches/series
+++ b/notepadnext/debian/patches/series
@@ -1 +1 @@
-# You must remove unused comment lines for the released package.
+disable-i18n.patch
bgstack15