]> gitweb.michael.orlitzky.com - xfce4-hdaps.git/commitdiff
icons: add various other sizes of PNG icons.
authorMichael Orlitzky <michael@orlitzky.com>
Thu, 24 Oct 2019 14:27:03 +0000 (10:27 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Sat, 26 Oct 2019 14:53:52 +0000 (10:53 -0400)
For whatever reason, after updating to xfce-4.14, my SVG icon isn't
being used in contexts where it should. For example, I'm seeing a
"missing icon" image on the plugin's "about" dialog, where the
scalable icon would be a perfect choice.

The SVG icon is still there, and should be used as a last resort, but
maybe other people would experience this problem as well. To work
around it, I've manually created a bunch of PNG icons in various
sizes. This fixes my problem, and can't hurt anything (ha ha).

28 files changed:
Makefile.am
configure.ac.in
icons/128x128/Makefile.am [new file with mode: 0644]
icons/128x128/xfce4-hdaps.png [new file with mode: 0644]
icons/16x16/Makefile.am [new file with mode: 0644]
icons/16x16/xfce4-hdaps.png [new file with mode: 0644]
icons/192x192/Makefile.am [new file with mode: 0644]
icons/192x192/xfce4-hdaps.png [new file with mode: 0644]
icons/22x22/Makefile.am [new file with mode: 0644]
icons/22x22/xfce4-hdaps.png [new file with mode: 0644]
icons/24x24/Makefile.am [new file with mode: 0644]
icons/24x24/xfce4-hdaps.png [new file with mode: 0644]
icons/256x256/Makefile.am [new file with mode: 0644]
icons/256x256/xfce4-hdaps.png [new file with mode: 0644]
icons/32x32/Makefile.am [new file with mode: 0644]
icons/32x32/xfce4-hdaps.png [new file with mode: 0644]
icons/36x36/Makefile.am [new file with mode: 0644]
icons/36x36/xfce4-hdaps.png [new file with mode: 0644]
icons/48x48/Makefile.am
icons/512x512/Makefile.am [new file with mode: 0644]
icons/512x512/xfce4-hdaps.png [new file with mode: 0644]
icons/64x64/Makefile.am [new file with mode: 0644]
icons/64x64/xfce4-hdaps.png [new file with mode: 0644]
icons/72x72/Makefile.am [new file with mode: 0644]
icons/72x72/xfce4-hdaps.png [new file with mode: 0644]
icons/96x96/Makefile.am [new file with mode: 0644]
icons/96x96/xfce4-hdaps.png [new file with mode: 0644]
icons/Makefile.am

index de8f5b44a078b70ee9acbea5f110f1a9abb01e21..8bf30540d20837cf1812e41292ad81a77fe31cbd 100644 (file)
@@ -1,8 +1,6 @@
-# $Id$
-
-SUBDIRS =                                                              \
-       icons                                                           \
-       panel-plugin                                                    \
+SUBDIRS =              \
+       icons           \
+       panel-plugin    \
        po
 
 distclean-local:
        po
 
 distclean-local:
@@ -12,14 +10,12 @@ rpm: dist
        rpmbuild -ta $(PACKAGE)-$(VERSION).tar.gz
        @rm -f $(PACKAGE)-$(VERSION).tar.gz
 
        rpmbuild -ta $(PACKAGE)-$(VERSION).tar.gz
        @rm -f $(PACKAGE)-$(VERSION).tar.gz
 
-EXTRA_DIST =                                                           \
-       intltool-extract.in                                             \
-       intltool-merge.in                                               \
+EXTRA_DIST =                   \
+       intltool-extract.in     \
+       intltool-merge.in       \
        intltool-update.in
 
        intltool-update.in
 
-DISTCLEANFILES =                                                       \
-       intltool-extract                                                \
-       intltool-merge                                                  \
+DISTCLEANFILES =               \
+       intltool-extract        \
+       intltool-merge          \
        intltool-update
        intltool-update
-
-# vi:set ts=8 sw=8 noet ai nocindent syntax=automake:
index 5db7051253c63e229a724bce88f5ab6b40b39929..03bc0c168477ed411194359463bcedc323b02241 100644 (file)
@@ -95,7 +95,19 @@ AC_SUBST([PLATFORM_LDFLAGS])
 AC_OUTPUT([
 Makefile
 icons/Makefile
 AC_OUTPUT([
 Makefile
 icons/Makefile
+icons/16x16/Makefile
+icons/22x22/Makefile
+icons/24x24/Makefile
+icons/32x32/Makefile
+icons/36x36/Makefile
 icons/48x48/Makefile
 icons/48x48/Makefile
+icons/64x64/Makefile
+icons/72x72/Makefile
+icons/96x96/Makefile
+icons/128x128/Makefile
+icons/192x192/Makefile
+icons/256x256/Makefile
+icons/512x512/Makefile
 icons/scalable/Makefile
 panel-plugin/Makefile
 po/Makefile.in
 icons/scalable/Makefile
 panel-plugin/Makefile
 po/Makefile.in
diff --git a/icons/128x128/Makefile.am b/icons/128x128/Makefile.am
new file mode 100644 (file)
index 0000000..3afda78
--- /dev/null
@@ -0,0 +1,3 @@
+iconsdir = $(datadir)/icons/hicolor/128x128/apps
+icons_DATA = xfce4-hdaps.png
+EXTRA_DIST = $(icons_DATA)
diff --git a/icons/128x128/xfce4-hdaps.png b/icons/128x128/xfce4-hdaps.png
new file mode 100644 (file)
index 0000000..4914813
Binary files /dev/null and b/icons/128x128/xfce4-hdaps.png differ
diff --git a/icons/16x16/Makefile.am b/icons/16x16/Makefile.am
new file mode 100644 (file)
index 0000000..1243b72
--- /dev/null
@@ -0,0 +1,3 @@
+iconsdir = $(datadir)/icons/hicolor/16x16/apps
+icons_DATA = xfce4-hdaps.png
+EXTRA_DIST = $(icons_DATA)
diff --git a/icons/16x16/xfce4-hdaps.png b/icons/16x16/xfce4-hdaps.png
new file mode 100644 (file)
index 0000000..768eec2
Binary files /dev/null and b/icons/16x16/xfce4-hdaps.png differ
diff --git a/icons/192x192/Makefile.am b/icons/192x192/Makefile.am
new file mode 100644 (file)
index 0000000..ca62e34
--- /dev/null
@@ -0,0 +1,3 @@
+iconsdir = $(datadir)/icons/hicolor/192x192/apps
+icons_DATA = xfce4-hdaps.png
+EXTRA_DIST = $(icons_DATA)
diff --git a/icons/192x192/xfce4-hdaps.png b/icons/192x192/xfce4-hdaps.png
new file mode 100644 (file)
index 0000000..0325bcf
Binary files /dev/null and b/icons/192x192/xfce4-hdaps.png differ
diff --git a/icons/22x22/Makefile.am b/icons/22x22/Makefile.am
new file mode 100644 (file)
index 0000000..3a66b91
--- /dev/null
@@ -0,0 +1,3 @@
+iconsdir = $(datadir)/icons/hicolor/22x22/apps
+icons_DATA = xfce4-hdaps.png
+EXTRA_DIST = $(icons_DATA)
diff --git a/icons/22x22/xfce4-hdaps.png b/icons/22x22/xfce4-hdaps.png
new file mode 100644 (file)
index 0000000..6c6d522
Binary files /dev/null and b/icons/22x22/xfce4-hdaps.png differ
diff --git a/icons/24x24/Makefile.am b/icons/24x24/Makefile.am
new file mode 100644 (file)
index 0000000..4fe5c46
--- /dev/null
@@ -0,0 +1,3 @@
+iconsdir = $(datadir)/icons/hicolor/24x24/apps
+icons_DATA = xfce4-hdaps.png
+EXTRA_DIST = $(icons_DATA)
diff --git a/icons/24x24/xfce4-hdaps.png b/icons/24x24/xfce4-hdaps.png
new file mode 100644 (file)
index 0000000..b8cac42
Binary files /dev/null and b/icons/24x24/xfce4-hdaps.png differ
diff --git a/icons/256x256/Makefile.am b/icons/256x256/Makefile.am
new file mode 100644 (file)
index 0000000..e8aead4
--- /dev/null
@@ -0,0 +1,3 @@
+iconsdir = $(datadir)/icons/hicolor/256x256/apps
+icons_DATA = xfce4-hdaps.png
+EXTRA_DIST = $(icons_DATA)
diff --git a/icons/256x256/xfce4-hdaps.png b/icons/256x256/xfce4-hdaps.png
new file mode 100644 (file)
index 0000000..4d8c0ca
Binary files /dev/null and b/icons/256x256/xfce4-hdaps.png differ
diff --git a/icons/32x32/Makefile.am b/icons/32x32/Makefile.am
new file mode 100644 (file)
index 0000000..4732ce2
--- /dev/null
@@ -0,0 +1,3 @@
+iconsdir = $(datadir)/icons/hicolor/32x32/apps
+icons_DATA = xfce4-hdaps.png
+EXTRA_DIST = $(icons_DATA)
diff --git a/icons/32x32/xfce4-hdaps.png b/icons/32x32/xfce4-hdaps.png
new file mode 100644 (file)
index 0000000..e5edff3
Binary files /dev/null and b/icons/32x32/xfce4-hdaps.png differ
diff --git a/icons/36x36/Makefile.am b/icons/36x36/Makefile.am
new file mode 100644 (file)
index 0000000..c916d6b
--- /dev/null
@@ -0,0 +1,3 @@
+iconsdir = $(datadir)/icons/hicolor/36x36/apps
+icons_DATA = xfce4-hdaps.png
+EXTRA_DIST = $(icons_DATA)
diff --git a/icons/36x36/xfce4-hdaps.png b/icons/36x36/xfce4-hdaps.png
new file mode 100644 (file)
index 0000000..d762207
Binary files /dev/null and b/icons/36x36/xfce4-hdaps.png differ
index a0b3ad801dfa7fe4fd5b64da78135febd49b6b1b..149a1249144c9ca08ca4e8e13ffd6b52ce8e1cb6 100644 (file)
@@ -1,10 +1,3 @@
-# $Id$
-
 iconsdir = $(datadir)/icons/hicolor/48x48/apps
 iconsdir = $(datadir)/icons/hicolor/48x48/apps
-icons_DATA =                                                           \
-       xfce4-hdaps.png
-
-EXTRA_DIST =                                                           \
-       $(icons_DATA)
-
-# vi:set ts=8 sw=8 noet ai nocindent syntax=automake:
+icons_DATA = xfce4-hdaps.png
+EXTRA_DIST = $(icons_DATA)
diff --git a/icons/512x512/Makefile.am b/icons/512x512/Makefile.am
new file mode 100644 (file)
index 0000000..a73402d
--- /dev/null
@@ -0,0 +1,3 @@
+iconsdir = $(datadir)/icons/hicolor/512x512/apps
+icons_DATA = xfce4-hdaps.png
+EXTRA_DIST = $(icons_DATA)
diff --git a/icons/512x512/xfce4-hdaps.png b/icons/512x512/xfce4-hdaps.png
new file mode 100644 (file)
index 0000000..cfa72c0
Binary files /dev/null and b/icons/512x512/xfce4-hdaps.png differ
diff --git a/icons/64x64/Makefile.am b/icons/64x64/Makefile.am
new file mode 100644 (file)
index 0000000..269834f
--- /dev/null
@@ -0,0 +1,3 @@
+iconsdir = $(datadir)/icons/hicolor/64x64/apps
+icons_DATA = xfce4-hdaps.png
+EXTRA_DIST = $(icons_DATA)
diff --git a/icons/64x64/xfce4-hdaps.png b/icons/64x64/xfce4-hdaps.png
new file mode 100644 (file)
index 0000000..1a1c5fe
Binary files /dev/null and b/icons/64x64/xfce4-hdaps.png differ
diff --git a/icons/72x72/Makefile.am b/icons/72x72/Makefile.am
new file mode 100644 (file)
index 0000000..6027925
--- /dev/null
@@ -0,0 +1,3 @@
+iconsdir = $(datadir)/icons/hicolor/72x72/apps
+icons_DATA = xfce4-hdaps.png
+EXTRA_DIST = $(icons_DATA)
diff --git a/icons/72x72/xfce4-hdaps.png b/icons/72x72/xfce4-hdaps.png
new file mode 100644 (file)
index 0000000..6dc6786
Binary files /dev/null and b/icons/72x72/xfce4-hdaps.png differ
diff --git a/icons/96x96/Makefile.am b/icons/96x96/Makefile.am
new file mode 100644 (file)
index 0000000..2fe3b57
--- /dev/null
@@ -0,0 +1,3 @@
+iconsdir = $(datadir)/icons/hicolor/96x96/apps
+icons_DATA = xfce4-hdaps.png
+EXTRA_DIST = $(icons_DATA)
diff --git a/icons/96x96/xfce4-hdaps.png b/icons/96x96/xfce4-hdaps.png
new file mode 100644 (file)
index 0000000..99119cd
Binary files /dev/null and b/icons/96x96/xfce4-hdaps.png differ
index 2caedee28b6faa7bbbbfe96aae7201753cfb2e12..652d7be8c277cf93e518b3a3a5fc31d0868fc9ea 100644 (file)
@@ -1,7 +1,17 @@
-# $Id$
-
-SUBDIRS =                                                              \
-       48x48                                                           \
+SUBDIRS =              \
+       16x16           \
+       22x22           \
+       24x24           \
+       32x32           \
+       36x36           \
+       48x48           \
+       64x64           \
+       72x72           \
+       96x96           \
+       128x128         \
+       192x192         \
+       256x256         \
+       512x512         \
        scalable
 
 gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor
        scalable
 
 gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor
@@ -16,5 +26,3 @@ install-data-hook:
                 echo "***   $(gtk_update_icon_cache)";                 \
                echo "***";                                             \
         fi
                 echo "***   $(gtk_update_icon_cache)";                 \
                echo "***";                                             \
         fi
-
-# vi:set ts=8 sw=8 noet ai nocindent syntax=automake: