Age | Commit message (Collapse) | Author | Files | Lines |
|
|
|
|
|
Helper script:
dirs=()
for dir in $(find ./mate/24x24 -mindepth 1 -maxdepth 1 -type d); do
directory=$(basename $dir)
if [ -f "mate/22x22/$directory/Makefile.am" ]; \
then
cp mate/22x22/$directory/Makefile.am mate/24x24/$directory/Makefile.am
sed -i -e 's/-w=22 -h=22/-w=24 -h=24/g' mate/24x24/$directory/Makefile.am
dirs+=($directory)
fi
done
./autogen.sh
for dir in ${dirs[@]}; do
make -C mate/24x24/$dir clean-png-icons build-png-icons
done
Change:
- @inkscape -z $^ --export-area=A:B:C:D -w=24 -h=24 -e=$@ 1> /dev/null
+ @inkscape -z $^ --export-area=A-1:B-1:C+1:D+1 -w=24 -h=24 -e=$@ 1> /dev/null
|
|
clean & build:
make -C mate/16x16/mimetypes clean-png-icons build-png-icons
make -C mate/22x22/mimetypes clean-png-icons build-png-icons
make -C mate/24x24/mimetypes clean-png-icons build-png-icons
make -C mate/32x32/mimetypes clean-png-icons build-png-icons
make -C mate/48x48/mimetypes clean-png-icons build-png-icons
make -C mate/256x256/mimetypes clean-png-icons build-png-icons
|
|
Test:
$ ./autogen.sh --prefix=/usr
$ make -C mate clean-png-icons build-png-icons
|
|
Icons pulled from mate-desktop:
https://github.com/mate-desktop/mate-desktop/commit/01c40983fb0c016549158b690fb8a5e54fbe508e
cp mate-desktop/icons/16x16/apps/mate-desktop.png mate-icon-theme/mate/16x16/apps/mate-desktop.png
cp mate-desktop/icons/22x22/apps/mate-desktop.png mate-icon-theme/mate/22x22/apps/mate-desktop.png
cp mate-desktop/icons/24x24/apps/mate-desktop.png mate-icon-theme/mate/24x24/apps/mate-desktop.png
cp mate-desktop/icons/32x32/apps/mate-desktop.png mate-icon-theme/mate/32x32/apps/mate-desktop.png
cp mate-desktop/icons/48x48/apps/mate-desktop.png mate-icon-theme/mate/48x48/apps/mate-desktop.png
cp mate-desktop/icons/scalable/apps/mate-desktop.svg mate-icon-theme/mate/scalable/apps/mate-desktop.svg
history | cut -c 8-
|
|
|
|
|
|
Fixes https://github.com/mate-desktop/mate-icon-theme/issues/37
|
|
|
|
|
|
|
|
|
|
|
|
fixes https://github.com/mate-desktop/mate-panel/issues/959
|
|
|
|
|
|
Upscale 22x22 volume status icons instead of downscale 32x32
|
|
$ inkscape -V
Inkscape 0.92.4 (unknown)
$ find . -type f -name Makefile.am -print0 | xargs -0 sed -i 's/ --convert-dpi-method=scale-document//g'
$ find . -type f -name Makefile.am -print0 | xargs -0 sed -i 's/ --convert-dpi-method=scale-viewbox//g'
$ find ./src -name *.svg -exec inkscape --convert-dpi-method=none --verb=FileVacuum --verb=FileSave --verb=FileQuit {} \;
|
|
clean & build:
make -C mate clean-png-icons
make -C mate build-png-icons
|
|
|
|
|
|
clean & build:
make -C mate clean-png-icons
make -C mate build-png-icons
|
|
icons:
apps/utilities-terminal
apps/utilities-system-monitor
clean & build:
make -C mate clean-png-icons
make -C mate build-png-icons
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Add video single and joined display symbolic svg icons
|
|
Refer to https://github.com/mate-desktop/mate-settings-daemon/pull/250
Signed-off-by: Zhang Xianwei <[email protected]>
|
|
|
|
|
|
fixes missing blueberry menu icon in f29
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
needed for pnmixer
|
|
|
|
|
|
they were never updated and weren't even included in po/LINGUAS
added in https://github.com/mate-desktop/mate-icon-theme/commit/59877fa41a8843a2734fa4a2ea264dbbfd148c10
|
|
and en_US isn't a translation at all
|
|
s/PACKAGE VERSION/MATE Desktop Environment/g
s/charset=CHARSET/charset=UTF-8/g
sadly "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" is left
But compiling works
|
|
|