commit 915533bea492660ef0ac748e0378dfbe4e1647f3
parent 8325d3f48b98cb4aa2ec59486c460a90d0c73258
Author: therealFIGBERT <figbertwelner@gmail.com>
Date: Fri, 6 Dec 2019 11:07:36 -0800
Change black icon colors to white, add svg and ico versions
After contrasting the icon against other application icons, the black-on-purple did not look nearly as good, prompting the change to white-on-purple which looks better.
An SVG version has been added to enable changes to the icon in the long term, and the ico version has been added in preparation of the 2.5.* update on Windows.
Diffstat:
5 files changed, 31 insertions(+), 2 deletions(-)
diff --git a/Scripts/figENC.py b/Scripts/figENC.py
@@ -973,5 +973,9 @@ class App():
if __name__ == "__main__":
root = tk.Tk()
App(root)
- root.iconbitmap(find_path('icon-windowed.icns'))
+ if sys.platform == "darwin":
+ icon_path = find_path('icon-windowed.icns')
+ else:
+ icon_path = find_path('icon-windowed.ico')
+ root.iconbitmap(icon_path)
root.mainloop()
\ No newline at end of file
diff --git a/Scripts/icon-windowed.icns b/Scripts/icon-windowed.icns
Binary files differ.
diff --git a/Scripts/icon-windowed.ico b/Scripts/icon-windowed.ico
Binary files differ.
diff --git a/Scripts/icon-windowed.svg b/Scripts/icon-windowed.svg
@@ -0,0 +1,24 @@
+<svg width="486.733" height="486.733" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
+ <g class="layer">
+ <title>Layer 1</title>
+ <g id="svg_3"/>
+ <g id="svg_4"/>
+ <g id="svg_5"/>
+ <g id="svg_6"/>
+ <g id="svg_7"/>
+ <g id="svg_8"/>
+ <g id="svg_9"/>
+ <g id="svg_10"/>
+ <g id="svg_11"/>
+ <g id="svg_12"/>
+ <g id="svg_13"/>
+ <g id="svg_14"/>
+ <g id="svg_15"/>
+ <g id="svg_16"/>
+ <g id="svg_17"/>
+ <circle cx="243.767" cy="243.26701" fill="#72246c" id="svg_19" r="235.07201" stroke="#ffffff" stroke-width="15"/>
+ <g id="svg_1" stroke="null">
+ <path d="m350.21942,202.22707l-6.28976,0l0,-29.438c0,-54.44782 -43.20795,-99.9312 -97.21275,-100.90212c-1.47562,-0.02653 -4.42419,-0.02653 -5.89914,0c-54.00613,0.97092 -97.21342,46.4543 -97.21342,100.90212l0,29.438l-6.29043,0c-9.69329,0 -17.59992,10.00234 -17.59992,22.35571l0,147.64889c0,12.33945 7.90663,22.4353 17.60059,22.4353l212.90484,0c9.69328,0 17.60058,-10.09585 17.60058,-22.4353l0,-147.64889c0,-12.35271 -7.90663,-22.35571 -17.60058,-22.35571l-0.00001,0zm-86.5061,96.03027l0,44.61393c0,5.10861 -4.27696,9.43199 -9.38954,9.43199l-21.11222,0c-5.11325,0 -9.39021,-4.32338 -9.39021,-9.43199l0,-44.61393c-4.95872,-4.88113 -7.84562,-11.63049 -7.84562,-19.09676c0,-14.14864 10.93678,-26.30637 24.8427,-26.8681c1.47362,-0.05969 4.42551,-0.05969 5.89914,0c13.90592,0.56173 24.8427,12.71946 24.8427,26.8681c-0.00133,7.46628 -2.88822,14.21563 -7.84695,19.09676zm38.75989,-96.03027l-55.75631,0l-5.89913,0l-55.75631,0l0,-29.438c0,-32.43365 26.35811,-59.25135 58.70554,-59.25135c32.34744,0 58.70688,26.8177 58.70688,59.25135l0,29.438l-0.00067,0z" fill="#ffffff" id="svg_2" stroke="#ffffff" stroke-width="0"/>
+ </g>
+ </g>
+</svg>
+\ No newline at end of file
diff --git a/Scripts/version.txt b/Scripts/version.txt
@@ -1 +1 @@
-2.5.0
+2.5.1