/yed-aws-palettes.old

Old forked repo, see https://github.com/JustDerb/yed-aws-palettes

Primary LanguageJava

AWS Simple Icons Palettes for yED

yED is an awesome diagraming software. AWS Simple Icons is an AWS-created icon set for use in architecture diagrams.

This repository contains pre-made palettes to import into yED to start diagramming with AWS Icons immediately!

Screenshot

Support

Updating yED with new icons

You can use "Import Section..." in yED as described here.

  • Inside yED, go to "Edit" > "Manage Palette..."
  • Select "Import Section..."
  • In the file dialog, select all of the .graphml files and select "Okay"

This should override any sections with the same name in yED.

Deleting old palettes

You can use "Delete Section" in yED as described here.

  • Inside yED, go to "Edit" > "Manage Palette..."
  • Select a single palette you want to delete
  • Select "Delete Section"

Updating this repository

This repo has minimal automation around it, so it should update at most daily. If this repo needs to be manually updated, simply grab the latest URL and run the update.sh script:

# Grab latest URL from website
URL=$(curl -s https://aws.amazon.com/architecture/icons/ | grep 'Asset Package&nbsp;<i class="icon-download"></i>' | head -n1 | grep -oEi '//.*\.zip' | while read line; do echo "https:$line";  done)
echo "Latest URL: $URL"
# Run the updater, commiting the results
./update.sh "$URL" true