updated build: moved the export thing to runexport

removed design.md
added some licenses to unlicensed files
This commit is contained in:
germedeb 2022-09-10 16:43:56 -03:00
parent 5e2e9a8711
commit 62614f45df
4 changed files with 13 additions and 45 deletions

View File

@ -3,6 +3,6 @@ Upstream-Name: Aleta-Postre
Upstream-Contact: debgerme <fossgerme@tuta.io>
Source: https://git.owlcode.tech/germedeb/aleta-postre
Files: icons/apps/* icons/ui/* icons/places/* icons/status/* icons/notdetermined/* icons/mimetypes/* icons/templates/* icons/devices/* icons/categories/* icons/scalable/* icons/animations/* icons/actions/* icons/emblems/*
Files: icons/*
Copyright: 2022 debgerme <fossgerme@tuta.io>
License: CC-BY-SA-4.0

View File

@ -1,35 +0,0 @@
# THIS IS WIP SO PLEASE CONTACT ME INSTEAD OF READING THIS IF YOU WILL DESIGN ICONS.
## Inkscape setup
_This step (Inkscape setup) is fully optional._
#### import the inkscape palette in the Tools folder. how?:
* copy `other/aleta-postre.gpl` to your inkscape folder.
In gnu linux are two possibilities:
if you have the flatpak version: `~/.var/app/org.inkscape.Inkscape/config/inkscape/palettes`
if you have the native version: `~/.config/inkscape/palettes`.
## Concepts
here is an image describing the parts of an icon of aleta.
![concepts](../../other/Screenshots/design-concepts.svg)
## Design
* the position of the foreground will fit in the hints.
* the foreground must be white. *This don't mean that you will draw every path in white. you can use any color you want while drawing. this means that the* **result** *of your drawing session is an icon with a white foreground*
* the minimal width is a square of the grid. preferably make «2 squares lines» as minimum.
* if the icon is too complex, try to simplify it.
* please use the **original color**¹; if the original icon shows many colors, decide by yourself what are the best color to use.
* you can use plain colors, but gradients are appreciated.
¹: in aleta postre, i have changed the color rules and now aleta uses the original colors of the apps. there is no more the needing of a palette.
## folder design
* instead of the template.svg, use the template-folder.svg.
* this template is specific for folders and **NOT** FOR ICONS.
* this template hast only one hint.

View File

@ -117,15 +117,7 @@ esac
if [ "$EXPOR" = yes ]; then
printf "${info_color}exporting all the icons... this will take a long time.${reset_colors}\\n"
./tasks/export/export-emblems.sh
./tasks/export/export-places.sh
./tasks/export/export-apps.sh
./tasks/export/export-categories.sh
./tasks/export/export-devices.sh
./tasks/export/export-status.sh
./tasks/export/export-mimetypes.sh
./tasks/export/export-actions.sh
./tasks/export/export-animations.sh
./tasks/runexport.sh
fi
case "$@" in *--use-optipng*|*-o*)

11
tasks/runexport.sh Executable file
View File

@ -0,0 +1,11 @@
#!/bin/bash
./tasks/export/export-emblems.sh
./tasks/export/export-places.sh
./tasks/export/export-apps.sh
./tasks/export/export-categories.sh
./tasks/export/export-devices.sh
./tasks/export/export-status.sh
./tasks/export/export-mimetypes.sh
./tasks/export/export-actions.sh
./tasks/export/export-animations.sh