summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2024-04-04 08:40:53 -0400
committerB. Stack <bgstack15@gmail.com>2024-04-04 08:40:53 -0400
commit6e0203ace404c43060d692781cf8c5ab47b5f475 (patch)
tree0eb3fcdf3c2a6680748bd11671e25eba6b21354f
parentMerge branch 'fluxbox-bump' (diff)
downloadstackrpms-6e0203ace404c43060d692781cf8c5ab47b5f475.tar.gz
stackrpms-6e0203ace404c43060d692781cf8c5ab47b5f475.tar.bz2
stackrpms-6e0203ace404c43060d692781cf8c5ab47b5f475.zip
fluxbox: add new patch for xMaximize
-rw-r--r--fluxbox/debian/_service2
-rw-r--r--fluxbox/debian/changelog7
-rw-r--r--fluxbox/debian/control4
-rw-r--r--fluxbox/debian/patches/series3
-rw-r--r--fluxbox/debian/patches/stackrpms-add-clientmachine-if-forwarded.patch (renamed from fluxbox/debian/patches/add-clientmachine-if-forwarded.patch)0
-rw-r--r--fluxbox/debian/patches/stackrpms-customize-language.patch18
6 files changed, 30 insertions, 4 deletions
diff --git a/fluxbox/debian/_service b/fluxbox/debian/_service
index 0880bec..28270e4 100644
--- a/fluxbox/debian/_service
+++ b/fluxbox/debian/_service
@@ -4,7 +4,7 @@
<param name="url">https://bgstack15.ddns.net/cgit/stackrpms</param>
<param name="subdir">fluxbox/debian</param>
<param name="filename">debian</param>
- <param name="revision">fluxbox-bump</param>
+ <param name="revision">master</param>
<param name="version">_none_</param>
</service>
<service name="recompress">
diff --git a/fluxbox/debian/changelog b/fluxbox/debian/changelog
index 482ce42..f7316bc 100644
--- a/fluxbox/debian/changelog
+++ b/fluxbox/debian/changelog
@@ -1,3 +1,10 @@
+fluxbox (1.4.0-2+stackrpms) obs; urgency=low
+
+ * Add d/p/stackrpms-customize-language.patch
+ * Rename d/p/stackrpms-add-clientmachine-if-forwarded.patch
+
+ -- B. Stack <bgstack15@gmail.com> Thu, 04 Apr 2024 08:37:45 -0400
+
fluxbox (1.4.0-1+stackrpms) obs; urgency=high
* Pull from neo-upstream github WIP branch
diff --git a/fluxbox/debian/control b/fluxbox/debian/control
index dc6d7fb..12e8ba9 100644
--- a/fluxbox/debian/control
+++ b/fluxbox/debian/control
@@ -1,8 +1,8 @@
Source: fluxbox
Section: x11
Priority: optional
-Maintainer: Dmitry E. Oboukhov <unera@debian.org>
-Uploaders: Paul Tagliamonte <paultag@debian.org>
+Maintainer: B. Stack <bgstack15@gmail.com>
+XSBC-Original-Maintainer: Dmitry E. Oboukhov <unera@debian.org>
Build-Depends: autoconf, automake, autotools-dev, bzip2, debhelper (>= 9),
dh-autoreconf, libfribidi-dev, libgtk2.0-dev, libimlib2-dev, libtool,
libx11-dev, libxext-dev, libxft-dev, libxinerama-dev, libxpm-dev,
diff --git a/fluxbox/debian/patches/series b/fluxbox/debian/patches/series
index d9d4734..80b0698 100644
--- a/fluxbox/debian/patches/series
+++ b/fluxbox/debian/patches/series
@@ -1,3 +1,4 @@
fix-xterm-keybinding.patch
fix-startup-check-fbautostart.patch
-add-clientmachine-if-forwarded.patch
+stackrpms-add-clientmachine-if-forwarded.patch
+stackrpms-customize-language.patch
diff --git a/fluxbox/debian/patches/add-clientmachine-if-forwarded.patch b/fluxbox/debian/patches/stackrpms-add-clientmachine-if-forwarded.patch
index 4da9714..4da9714 100644
--- a/fluxbox/debian/patches/add-clientmachine-if-forwarded.patch
+++ b/fluxbox/debian/patches/stackrpms-add-clientmachine-if-forwarded.patch
diff --git a/fluxbox/debian/patches/stackrpms-customize-language.patch b/fluxbox/debian/patches/stackrpms-customize-language.patch
new file mode 100644
index 0000000..b4597dc
--- /dev/null
+++ b/fluxbox/debian/patches/stackrpms-customize-language.patch
@@ -0,0 +1,18 @@
+Author: bgstack15
+Date: 2024-04-04
+Version: fluxbox 1.4.0
+Source: bgstack15
+Summary: Use x key to maximize window, not m
+Message:
+ Between 1.3.7 and 1.4.0, the application was changed to use the first key of a menu entry to select that entry, instead of some previous method where it was chosen or configured to use a specific key. I want to use X to maximize, not M.
+--- a/nls/en_US/Translation.m
++++ b/nls/en_US/Translation.m
+@@ -212,7 +212,7 @@ $set 16 #Windowmenu
+ 2 Iconify
+ 3 Layer
+ 4 Lower
+-5 Maximize
++5 xMaximize
+ 6 Raise
+ 7 Send To ...
+ 8 Shade
bgstack15