From 3128e3a172bb7189549d4d1b77f1b900bb3a26b2 Mon Sep 17 00:00:00 2001 From: "Clayton G. Hobbs" Date: Tue, 17 May 2016 15:08:42 -0400 Subject: New icons! They still need work of course, since I'm a programmer and not an artist. The new icons of course are Kaylee's parasol, and anyone who doesn't know that needs to watch Firefly. --- assets/kaylee.svg | 272 ++++++++++++++++++++++++++++--------------- assets/kaylee_gray.svg | 219 ++++++++++++++++++++++++++++++++++ assets/kaylee_small.svg | 111 ++++++++++++++++++ assets/kaylee_small_gray.svg | 111 ++++++++++++++++++ data/icon.png | Bin 27147 -> 58750 bytes data/icon_inactive.png | Bin 27997 -> 57969 bytes data/icon_inactive_small.png | Bin 0 -> 2912 bytes data/icon_small.png | Bin 0 -> 2699 bytes kayleevc/kaylee.py | 4 +- 9 files changed, 624 insertions(+), 93 deletions(-) create mode 100644 assets/kaylee_gray.svg create mode 100644 assets/kaylee_small.svg create mode 100644 assets/kaylee_small_gray.svg create mode 100644 data/icon_inactive_small.png create mode 100644 data/icon_small.png diff --git a/assets/kaylee.svg b/assets/kaylee.svg index f5e3627..2ae00d5 100644 --- a/assets/kaylee.svg +++ b/assets/kaylee.svg @@ -9,43 +9,44 @@ xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="512" - height="1024" - id="svg2" - version="1.1" inkscape:version="0.91 r13725" + version="1.1" + id="svg2" + viewBox="0 0 256 256" + height="256" + width="256" sodipodi:docname="kaylee.svg" - inkscape:export-filename="/storage/projects/blather/assets/blathersrc.png" + inkscape:export-filename="/home/clay/kaylee/data/icon.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90"> - + inkscape:guide-bbox="true" + units="px"> + @@ -55,75 +56,164 @@ image/svg+xml - + - - - - - K - - - - - K - + transform="translate(0,-796.36216)"> + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/kaylee_gray.svg b/assets/kaylee_gray.svg new file mode 100644 index 0000000..75bce7d --- /dev/null +++ b/assets/kaylee_gray.svg @@ -0,0 +1,219 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/kaylee_small.svg b/assets/kaylee_small.svg new file mode 100644 index 0000000..6a0268d --- /dev/null +++ b/assets/kaylee_small.svg @@ -0,0 +1,111 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/assets/kaylee_small_gray.svg b/assets/kaylee_small_gray.svg new file mode 100644 index 0000000..36b3bd8 --- /dev/null +++ b/assets/kaylee_small_gray.svg @@ -0,0 +1,111 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/data/icon.png b/data/icon.png index e9b3902..1569cb3 100644 Binary files a/data/icon.png and b/data/icon.png differ diff --git a/data/icon_inactive.png b/data/icon_inactive.png index 8ac72d5..0f67bb4 100644 Binary files a/data/icon_inactive.png and b/data/icon_inactive.png differ diff --git a/data/icon_inactive_small.png b/data/icon_inactive_small.png new file mode 100644 index 0000000..1d4e7ff Binary files /dev/null and b/data/icon_inactive_small.png differ diff --git a/data/icon_small.png b/data/icon_small.png new file mode 100644 index 0000000..3caa172 Binary files /dev/null and b/data/icon_small.png differ diff --git a/kayleevc/kaylee.py b/kayleevc/kaylee.py index f278444..18e21ef 100644 --- a/kayleevc/kaylee.py +++ b/kayleevc/kaylee.py @@ -47,11 +47,11 @@ class Kaylee: self.ui = UI(self.options, self.options['continuous']) self.ui.connect("command", self.process_command) # Can we load the icon resource? - icon = self.load_resource("icon.png") + icon = self.load_resource("icon_small.png") if icon: self.ui.set_icon_active_asset(icon) # Can we load the icon_inactive resource? - icon_inactive = self.load_resource("icon_inactive.png") + icon_inactive = self.load_resource("icon_inactive_small.png") if icon_inactive: self.ui.set_icon_inactive_asset(icon_inactive) -- cgit 1.4.1