diff --git a/.gitignore b/.gitignore old mode 100644 new mode 100755 diff --git a/LICENSE b/LICENSE old mode 100644 new mode 100755 diff --git a/README b/README old mode 100644 new mode 100755 diff --git a/bottle_overlay.png b/bottle_overlay.png old mode 100644 new mode 100755 index 5888850..41e64af Binary files a/bottle_overlay.png and b/bottle_overlay.png differ diff --git a/changelog.txt b/changelog.txt old mode 100644 new mode 100755 diff --git a/colors.txt b/colors.txt old mode 100644 new mode 100755 diff --git a/depends.txt b/depends.txt old mode 100644 new mode 100755 index 2717bef..b08c42c --- a/depends.txt +++ b/depends.txt @@ -1,2 +1,4 @@ default dye +intllib? + diff --git a/gentextures-jpg.sh b/gentextures-jpg.sh old mode 100644 new mode 100755 diff --git a/gentextures.sh b/gentextures.sh old mode 100644 new mode 100755 diff --git a/init.lua b/init.lua old mode 100644 new mode 100755 index e8c36b7..58d13c4 --- a/init.lua +++ b/init.lua @@ -31,14 +31,12 @@ with this program; if not, write to the Free Software Foundation, Inc., -- Boilerplate to support localized strings if intllib mod is installed. local S -if (minetest.get_modpath("intllib")) then - dofile(minetest.get_modpath("intllib").."/intllib.lua") - S = intllib.Getter(minetest.get_current_modname()) +if minetest.get_modpath("intllib") then + S = intllib.Getter() else - S = function ( s ) return s end + S = function(s) return s end end - -- Items/recipes needed to generate the few base colors that are not -- provided by the standard dyes mod. @@ -47,16 +45,12 @@ end minetest.register_craftitem(":dye:lime", { description = S("Lime Dye"), inventory_image = "unifieddyes_lime.png", - groups = { dye=1, excolor_lime=1, unicolor_lime=1, not_in_creative_inventory=1 } + groups = { dye=1, excolor_lime=1, unicolor_lime=1 } }) minetest.register_craft( { - type = "shapeless", output = "dye:lime 2", - recipe = { - "dye:yellow", - "dye:green", - }, + recipe = {{"dye:yellow", "dye:green"}} }) -- Aqua @@ -64,16 +58,12 @@ minetest.register_craft( { minetest.register_craftitem(":dye:aqua", { description = S("Aqua Dye"), inventory_image = "unifieddyes_aqua.png", - groups = { dye=1, excolor_aqua=1, unicolor_aqua=1, not_in_creative_inventory=1 } + groups = { dye=1, excolor_aqua=1, unicolor_aqua=1 } }) minetest.register_craft( { - type = "shapeless", output = "dye:aqua 2", - recipe = { - "dye:cyan", - "dye:green", - }, + recipe = {{"dye:green", "dye:cyan"}}, }) -- Sky blue @@ -81,16 +71,12 @@ minetest.register_craft( { minetest.register_craftitem(":dye:skyblue", { description = S("Sky-blue Dye"), inventory_image = "unifieddyes_skyblue.png", - groups = { dye=1, excolor_sky_blue=1, unicolor_sky_blue=1, not_in_creative_inventory=1 } + groups = { dye=1, excolor_sky_blue=1, unicolor_sky_blue=1 } }) minetest.register_craft( { - type = "shapeless", output = "dye:skyblue 2", - recipe = { - "dye:cyan", - "dye:blue", - }, + recipe = {{"dye:cyan", "dye:blue"}}, }) -- Red-violet @@ -98,16 +84,12 @@ minetest.register_craft( { minetest.register_craftitem(":dye:redviolet", { description = S("Red-violet Dye"), inventory_image = "unifieddyes_redviolet.png", - groups = { dye=1, excolor_red_violet=1, unicolor_red_violet=1, not_in_creative_inventory=1 } + groups = { dye=1, excolor_red_violet=1, unicolor_red_violet=1 } }) minetest.register_craft( { - type = "shapeless", output = "dye:redviolet 2", - recipe = { - "dye:red", - "dye:magenta", - }, + recipe = {{"dye:magenta", "dye:red"}}, }) @@ -116,19 +98,15 @@ minetest.register_craft( { minetest.register_craftitem(":dye:light_grey", { description = S("Light Grey Dye"), inventory_image = "unifieddyes_lightgrey.png", - groups = { dye=1, excolor_lightgrey=1, unicolor_light_grey=1, not_in_creative_inventory=1 } + groups = { dye=1, excolor_lightgrey=1, unicolor_light_grey=1 } }) minetest.register_craft( { - type = "shapeless", output = "dye:light_grey 2", - recipe = { - "dye:grey", - "dye:white", - }, + recipe = {{"dye:grey", "dye:white"}}, }) --- Extra craft for black dye +--[[ Extra craft for black dye minetest.register_craft( { type = "shapeless", @@ -136,7 +114,7 @@ minetest.register_craft( { recipe = { "default:coal_lump", }, -}) +})]] -- Extra craft for dark grey dye @@ -218,12 +196,8 @@ for i = 1, 12 do local hue2 = HUES2[i] minetest.register_craft( { - type = "shapeless", output = "unifieddyes:dark_" .. hue .. "_s50 2", - recipe = { - "dye:" .. hue, - "dye:dark_grey", - }, + recipe = {{"dye:" .. hue, "dye:dark_grey"}}, }) minetest.register_craft( { @@ -261,12 +235,8 @@ for i = 1, 12 do end minetest.register_craft( { - type = "shapeless", output = "unifieddyes:medium_" .. hue .. "_s50 2", - recipe = { - "dye:" .. hue, - "dye:grey", - }, + recipe = {{"dye:" .. hue, "dye:grey"}}, }) minetest.register_craft( { @@ -280,12 +250,10 @@ for i = 1, 12 do }) minetest.register_craft( { - type = "shapeless", - output = "unifieddyes:medium_" .. hue .. " 2", - recipe = { - "dye:" .. hue, - "dye:black", - }, + output = "unifieddyes:medium_" .. hue .. " 2", + recipe = { + {"dye:" .. hue, "dye:black"}, + } }) minetest.register_craft( { @@ -311,52 +279,48 @@ for i = 1, 12 do if hue ~= "red" then minetest.register_craft( { - type = "shapeless", output = "unifieddyes:light_" .. hue .. " 2", - recipe = { - "dye:" .. hue, - "dye:white", - }, + recipe = {{"dye:" .. hue, "dye:white"}}, }) end minetest.register_craftitem("unifieddyes:dark_" .. hue .. "_s50", { description = S("Dark " .. hue2 .. " Dye (low saturation)"), inventory_image = "unifieddyes_dark_" .. hue .. "_s50.png", - groups = { dye=1, ["unicolor_dark_"..hue.."_s50"]=1, not_in_creative_inventory=1 } + groups = { dye=1, ["unicolor_dark_"..hue.."_s50"]=1 } }) if hue ~= "green" then minetest.register_craftitem("unifieddyes:dark_" .. hue, { description = S("Dark " .. hue2 .. " Dye"), inventory_image = "unifieddyes_dark_" .. hue .. ".png", - groups = { dye=1, ["unicolor_dark_"..hue]=1, not_in_creative_inventory=1 } + groups = { dye=1, ["unicolor_dark_"..hue]=1 } }) end minetest.register_craftitem("unifieddyes:medium_" .. hue .. "_s50", { description = S("Medium " .. hue2 .. " Dye (low saturation)"), inventory_image = "unifieddyes_medium_" .. hue .. "_s50.png", - groups = { dye=1, ["unicolor_medium_"..hue.."_s50"]=1, not_in_creative_inventory=1 } + groups = { dye=1, ["unicolor_medium_"..hue.."_s50"]=1 } }) minetest.register_craftitem("unifieddyes:medium_" .. hue, { description = S("Medium " .. hue2 .. " Dye"), inventory_image = "unifieddyes_medium_" .. hue .. ".png", - groups = { dye=1, ["unicolor_medium_"..hue]=1, not_in_creative_inventory=1 } + groups = { dye=1, ["unicolor_medium_"..hue]=1 } }) minetest.register_craftitem("unifieddyes:" .. hue .. "_s50", { description = S(hue2 .. " Dye (low saturation)"), inventory_image = "unifieddyes_" .. hue .. "_s50.png", - groups = { dye=1, ["unicolor_"..hue.."_s50"]=1, not_in_creative_inventory=1 } + groups = { dye=1, ["unicolor_"..hue.."_s50"]=1 } }) if hue ~= "red" then minetest.register_craftitem("unifieddyes:light_" .. hue, { description = S("Light " .. hue2 .. " Dye"), inventory_image = "unifieddyes_light_" .. hue .. ".png", - groups = { dye=1, ["unicolor_light_"..hue]=1, not_in_creative_inventory=1 } + groups = { dye=1, ["unicolor_light_"..hue]=1 } }) end minetest.register_alias("unifieddyes:"..hue, "dye:"..hue) @@ -373,5 +337,5 @@ minetest.register_alias("unifieddyes:grey_paint", "dye:grey") minetest.register_alias("unifieddyes:darkgrey_paint", "dye:dark_grey") minetest.register_alias("unifieddyes:carbon_black", "dye:black") -print(S("[UnifiedDyes] Loaded!")) +minetest.log("action", S("[UnifiedDyes] Loaded!")) diff --git a/listcolors.sh b/listcolors.sh old mode 100644 new mode 100755 diff --git a/locale/de.txt b/locale/de.txt old mode 100644 new mode 100755 diff --git a/locale/template.txt b/locale/template.txt old mode 100644 new mode 100755 diff --git a/locale/tr.txt b/locale/tr.txt new file mode 100755 index 0000000..6109389 --- /dev/null +++ b/locale/tr.txt @@ -0,0 +1,88 @@ +# TUrkish translation +# Mahmutelmas06@hotmail.com + +Lime Dye = Limon Yeşili Boya +Aqua Dye = Deniz mavisi Boya +Sky-blue Dye = Gök-Mavi Boya +Red-violet Dye = Kırmızılı Boya +Light Grey Dye = Açık Grey Boya + +Dark Red Dye (low saturation) = Koyu Kırmızı Boya (düşük doygunluk) +Dark Orange Dye (low saturation) = Koyu Turuncu Boya (düşük doygunluk) +Dark Yellow Dye (low saturation) = Koyu Sarı Boya (düşük doygunluk) +Dark Lime Dye (low saturation) = Koyu Limon Yeşili Boya (düşük doygunluk) +Dark Green Dye (low saturation) = Koyu Yeşil Boya (düşük doygunluk) +Dark Aqua Dye (low saturation) = Koyu Deniz mavisi boya (düşük doygunluk) +Dark Cyan Dye (low saturation) = Koyu Cam göbeği Boya (düşük doygunluk) +Dark Sky-blue Dye (low saturation) = Koyu Gök-Mavi Boya (düşük doygunluk) +Dark Blue Dye (low saturation) = Koyu Mavi Boya (düşük doygunluk) +Dark Violet Dye (low saturation) = Koyu mor Boya (düşük doygunluk) +Dark Magenta Dye (low saturation) = Koyu Kızılımsı Mor Boya (düşük doygunluk) +Dark Red-violet Dye (low saturation) = Koyu Kırmızılı Boya (düşük doygunluk) + +Dark Red Dye = Koyu Kırmızı Boya +Dark Orange Dye = Koyu Turuncu Boya +Dark Yellow Dye = Koyu Sarı Boya +Dark Lime Dye = Koyu Limon Yeşili Boya +Dark Green Dye = Koyu Yeşil Boya +Dark Aqua Dye = Koyu Deniz mavisi Boya +Dark Cyan Dye = Koyu Cam göbeği Boya +Dark Sky-blue Dye = Koyu Gök-Mavi Boya +Dark Blue Dye = Koyu Mavi Boya +Dark Violet Dye = Koyu mor Boya +Dark Magenta Dye = Koyu Kızılımsı Mor Boya +Dark Red-violet Dye = Koyu Kırmızılı Boya + +Medium Red Dye (low saturation) = Kırmızı Boya (düşük doygunluk) +Medium Orange Dye (low saturation) = Turuncu Boya (düşük doygunluk) +Medium Yellow Dye (low saturation) = Sarı Boya (düşük doygunluk) +Medium Lime Dye (low saturation) = Limon Yeşili Boya (düşük doygunluk) +Medium Green Dye (low saturation) = Yeşil Boya (düşük doygunluk) +Medium Aqua Dye (low saturation) = Deniz mavisi Boya (düşük doygunluk) +Medium Cyan Dye (low saturation) = Cam göbeği Boya (düşük doygunluk) +Medium Sky-blue Dye (low saturation) = Gök-Mavi Boya (düşük doygunluk) +Medium Blue Dye (low saturation) = Mavi Boya (düşük doygunluk) +Medium Violet Dye (low saturation) = Koyu mor Boya (düşük doygunluk) +Medium Magenta Dye (low saturation) = Kızılımsı Mor Boya (düşük doygunluk) +Medium Red-violet Dye (low saturation) = Kırmızılı Boya (düşük doygunluk) + +Medium Red Dye = Kırmızı Boya +Medium Orange Dye = Turuncu Boya +Medium Yellow Dye = Sarı Boya +Medium Lime Dye = Limon Yeşili Boya +Medium Green Dye = Yeşil Boya +Medium Aqua Dye = Deniz mavisi Boya +Medium Cyan Dye = Cam göbeği Boya +Medium Sky-blue = Gök-Mavi +Medium Blue Dye = Mavi Boya +Medium Violet Dye = Koyu mor Boya +Medium Magenta Dye = Kızılımsı Mor Boya +Medium Red-violet Dye = Kırmızılı Boya + +Red Dye (low saturation) = Kırmızı Boya (düşük doygunluk) +Orange Dye (low saturation) = Turuncu Boya (düşük doygunluk) +Yellow Dye (low saturation) = Sarı Boya (düşük doygunluk) +Lime Dye (low saturation) = Limon Yeşili Boya (düşük doygunluk) +Green Dye (low saturation) = Yeşil Boya (düşük doygunluk) +Aqua Dye (low saturation) = Deniz mavisi Boya (düşük doygunluk) +Cyan Dye (low saturation) = Cam göbeği Boya (düşük doygunluk) +Sky-blue Dye (low saturation) = Gök-Mavi Boya (düşük doygunluk) +Blue Dye (low saturation) = Mavi Boya (düşük doygunluk) +Violet Dye (low saturation) = Koyu mor Boya (düşük doygunluk) +Magenta Dye (low saturation) = Kızılımsı Mor Boya (düşük doygunluk) +Red-violet Dye (low saturation) = Kırmızılı Boya (düşük doygunluk) + +Red Dye = Kırmızı Boya +Orange Dye = Turuncu Boya +Yellow Dye = Sarı Boya +Lime Dye = Limon Yeşili Boya +Green Dye = Yeşil Boya +Aqua Dye = Deniz mavisi Boya +Cyan Dye = Cam göbeği Boya +Sky-blue Dye = Gök-Mavi Boya +Blue Dye = Mavi Boya +Violet Dye = Koyu mor Boya +Magenta Dye = Kızılımsı Mor Boya +Red-violet Dye = Kırmızılı Boya + +[UnifiedDyes] Loaded! = [UnifiedBoyas] yüklendi! diff --git a/textures/unifieddyes_aqua.png b/textures/unifieddyes_aqua.png old mode 100644 new mode 100755 index da73e21..77bdddd Binary files a/textures/unifieddyes_aqua.png and b/textures/unifieddyes_aqua.png differ diff --git a/textures/unifieddyes_aqua_s50.png b/textures/unifieddyes_aqua_s50.png old mode 100644 new mode 100755 index d737e67..4e0335c Binary files a/textures/unifieddyes_aqua_s50.png and b/textures/unifieddyes_aqua_s50.png differ diff --git a/textures/unifieddyes_blue_s50.png b/textures/unifieddyes_blue_s50.png old mode 100644 new mode 100755 index 33ab950..c2abddb Binary files a/textures/unifieddyes_blue_s50.png and b/textures/unifieddyes_blue_s50.png differ diff --git a/textures/unifieddyes_cyan_s50.png b/textures/unifieddyes_cyan_s50.png old mode 100644 new mode 100755 index 7f304b7..e5c9ad2 Binary files a/textures/unifieddyes_cyan_s50.png and b/textures/unifieddyes_cyan_s50.png differ diff --git a/textures/unifieddyes_dark_aqua.png b/textures/unifieddyes_dark_aqua.png old mode 100644 new mode 100755 index 6a146ea..fb8a02e Binary files a/textures/unifieddyes_dark_aqua.png and b/textures/unifieddyes_dark_aqua.png differ diff --git a/textures/unifieddyes_dark_aqua_s50.png b/textures/unifieddyes_dark_aqua_s50.png old mode 100644 new mode 100755 index 5dbf4bd..a8176c2 Binary files a/textures/unifieddyes_dark_aqua_s50.png and b/textures/unifieddyes_dark_aqua_s50.png differ diff --git a/textures/unifieddyes_dark_blue.png b/textures/unifieddyes_dark_blue.png old mode 100644 new mode 100755 index 2a62a38..6386629 Binary files a/textures/unifieddyes_dark_blue.png and b/textures/unifieddyes_dark_blue.png differ diff --git a/textures/unifieddyes_dark_blue_s50.png b/textures/unifieddyes_dark_blue_s50.png old mode 100644 new mode 100755 index 4eceeff..99b3746 Binary files a/textures/unifieddyes_dark_blue_s50.png and b/textures/unifieddyes_dark_blue_s50.png differ diff --git a/textures/unifieddyes_dark_cyan.png b/textures/unifieddyes_dark_cyan.png old mode 100644 new mode 100755 index 4cfbee4..4d02c89 Binary files a/textures/unifieddyes_dark_cyan.png and b/textures/unifieddyes_dark_cyan.png differ diff --git a/textures/unifieddyes_dark_cyan_s50.png b/textures/unifieddyes_dark_cyan_s50.png old mode 100644 new mode 100755 index 857c470..e4e1f82 Binary files a/textures/unifieddyes_dark_cyan_s50.png and b/textures/unifieddyes_dark_cyan_s50.png differ diff --git a/textures/unifieddyes_dark_green.png b/textures/unifieddyes_dark_green.png old mode 100644 new mode 100755 index 19caa48..40ed03b Binary files a/textures/unifieddyes_dark_green.png and b/textures/unifieddyes_dark_green.png differ diff --git a/textures/unifieddyes_dark_green_s50.png b/textures/unifieddyes_dark_green_s50.png old mode 100644 new mode 100755 index 686a49e..9faf32c Binary files a/textures/unifieddyes_dark_green_s50.png and b/textures/unifieddyes_dark_green_s50.png differ diff --git a/textures/unifieddyes_dark_lime.png b/textures/unifieddyes_dark_lime.png old mode 100644 new mode 100755 index 927ddf8..7870b22 Binary files a/textures/unifieddyes_dark_lime.png and b/textures/unifieddyes_dark_lime.png differ diff --git a/textures/unifieddyes_dark_lime_s50.png b/textures/unifieddyes_dark_lime_s50.png old mode 100644 new mode 100755 index f274909..4afd55f Binary files a/textures/unifieddyes_dark_lime_s50.png and b/textures/unifieddyes_dark_lime_s50.png differ diff --git a/textures/unifieddyes_dark_magenta.png b/textures/unifieddyes_dark_magenta.png old mode 100644 new mode 100755 index 4f622b8..fbcc99c Binary files a/textures/unifieddyes_dark_magenta.png and b/textures/unifieddyes_dark_magenta.png differ diff --git a/textures/unifieddyes_dark_magenta_s50.png b/textures/unifieddyes_dark_magenta_s50.png old mode 100644 new mode 100755 index 1c461dc..1e7f4ba Binary files a/textures/unifieddyes_dark_magenta_s50.png and b/textures/unifieddyes_dark_magenta_s50.png differ diff --git a/textures/unifieddyes_dark_orange.png b/textures/unifieddyes_dark_orange.png old mode 100644 new mode 100755 index 10bfdd2..63915c8 Binary files a/textures/unifieddyes_dark_orange.png and b/textures/unifieddyes_dark_orange.png differ diff --git a/textures/unifieddyes_dark_orange_s50.png b/textures/unifieddyes_dark_orange_s50.png old mode 100644 new mode 100755 index 2a794de..a94568e Binary files a/textures/unifieddyes_dark_orange_s50.png and b/textures/unifieddyes_dark_orange_s50.png differ diff --git a/textures/unifieddyes_dark_red.png b/textures/unifieddyes_dark_red.png old mode 100644 new mode 100755 index 504c359..5b01ca0 Binary files a/textures/unifieddyes_dark_red.png and b/textures/unifieddyes_dark_red.png differ diff --git a/textures/unifieddyes_dark_red_s50.png b/textures/unifieddyes_dark_red_s50.png old mode 100644 new mode 100755 index 4e7f01b..cbb53cf Binary files a/textures/unifieddyes_dark_red_s50.png and b/textures/unifieddyes_dark_red_s50.png differ diff --git a/textures/unifieddyes_dark_redviolet.png b/textures/unifieddyes_dark_redviolet.png old mode 100644 new mode 100755 index 79f1b15..f1fa072 Binary files a/textures/unifieddyes_dark_redviolet.png and b/textures/unifieddyes_dark_redviolet.png differ diff --git a/textures/unifieddyes_dark_redviolet_s50.png b/textures/unifieddyes_dark_redviolet_s50.png old mode 100644 new mode 100755 index 889329e..b20387a Binary files a/textures/unifieddyes_dark_redviolet_s50.png and b/textures/unifieddyes_dark_redviolet_s50.png differ diff --git a/textures/unifieddyes_dark_skyblue.png b/textures/unifieddyes_dark_skyblue.png old mode 100644 new mode 100755 index dc6e928..3cb64f0 Binary files a/textures/unifieddyes_dark_skyblue.png and b/textures/unifieddyes_dark_skyblue.png differ diff --git a/textures/unifieddyes_dark_skyblue_s50.png b/textures/unifieddyes_dark_skyblue_s50.png old mode 100644 new mode 100755 index ac32c49..d601c7b Binary files a/textures/unifieddyes_dark_skyblue_s50.png and b/textures/unifieddyes_dark_skyblue_s50.png differ diff --git a/textures/unifieddyes_dark_violet.png b/textures/unifieddyes_dark_violet.png old mode 100644 new mode 100755 index b093fd0..02f3139 Binary files a/textures/unifieddyes_dark_violet.png and b/textures/unifieddyes_dark_violet.png differ diff --git a/textures/unifieddyes_dark_violet_s50.png b/textures/unifieddyes_dark_violet_s50.png old mode 100644 new mode 100755 index c507491..6df26be Binary files a/textures/unifieddyes_dark_violet_s50.png and b/textures/unifieddyes_dark_violet_s50.png differ diff --git a/textures/unifieddyes_dark_yellow.png b/textures/unifieddyes_dark_yellow.png old mode 100644 new mode 100755 index 7bb6225..3a6d613 Binary files a/textures/unifieddyes_dark_yellow.png and b/textures/unifieddyes_dark_yellow.png differ diff --git a/textures/unifieddyes_dark_yellow_s50.png b/textures/unifieddyes_dark_yellow_s50.png old mode 100644 new mode 100755 index c391292..08e0027 Binary files a/textures/unifieddyes_dark_yellow_s50.png and b/textures/unifieddyes_dark_yellow_s50.png differ diff --git a/textures/unifieddyes_darkgrey.png b/textures/unifieddyes_darkgrey.png old mode 100644 new mode 100755 index 61b13d0..826c516 Binary files a/textures/unifieddyes_darkgrey.png and b/textures/unifieddyes_darkgrey.png differ diff --git a/textures/unifieddyes_green_s50.png b/textures/unifieddyes_green_s50.png old mode 100644 new mode 100755 index 8f8fb73..f2c4787 Binary files a/textures/unifieddyes_green_s50.png and b/textures/unifieddyes_green_s50.png differ diff --git a/textures/unifieddyes_light_aqua.png b/textures/unifieddyes_light_aqua.png old mode 100644 new mode 100755 index 80458e2..b9a4b95 Binary files a/textures/unifieddyes_light_aqua.png and b/textures/unifieddyes_light_aqua.png differ diff --git a/textures/unifieddyes_light_blue.png b/textures/unifieddyes_light_blue.png old mode 100644 new mode 100755 index 19f001d..9fa767b Binary files a/textures/unifieddyes_light_blue.png and b/textures/unifieddyes_light_blue.png differ diff --git a/textures/unifieddyes_light_cyan.png b/textures/unifieddyes_light_cyan.png old mode 100644 new mode 100755 index 1ff5580..8ce00ef Binary files a/textures/unifieddyes_light_cyan.png and b/textures/unifieddyes_light_cyan.png differ diff --git a/textures/unifieddyes_light_green.png b/textures/unifieddyes_light_green.png old mode 100644 new mode 100755 index e549c6f..9ad4c57 Binary files a/textures/unifieddyes_light_green.png and b/textures/unifieddyes_light_green.png differ diff --git a/textures/unifieddyes_light_lime.png b/textures/unifieddyes_light_lime.png old mode 100644 new mode 100755 index e5d797e..a0cb68b Binary files a/textures/unifieddyes_light_lime.png and b/textures/unifieddyes_light_lime.png differ diff --git a/textures/unifieddyes_light_magenta.png b/textures/unifieddyes_light_magenta.png old mode 100644 new mode 100755 index 08bed5b..6014e9d Binary files a/textures/unifieddyes_light_magenta.png and b/textures/unifieddyes_light_magenta.png differ diff --git a/textures/unifieddyes_light_orange.png b/textures/unifieddyes_light_orange.png old mode 100644 new mode 100755 index b92b000..025083d Binary files a/textures/unifieddyes_light_orange.png and b/textures/unifieddyes_light_orange.png differ diff --git a/textures/unifieddyes_light_red.png b/textures/unifieddyes_light_red.png old mode 100644 new mode 100755 index ecc8bd8..df164ea Binary files a/textures/unifieddyes_light_red.png and b/textures/unifieddyes_light_red.png differ diff --git a/textures/unifieddyes_light_redviolet.png b/textures/unifieddyes_light_redviolet.png old mode 100644 new mode 100755 index 2e01d6f..bb8c4ca Binary files a/textures/unifieddyes_light_redviolet.png and b/textures/unifieddyes_light_redviolet.png differ diff --git a/textures/unifieddyes_light_skyblue.png b/textures/unifieddyes_light_skyblue.png old mode 100644 new mode 100755 index 9fc1a44..c2ff96e Binary files a/textures/unifieddyes_light_skyblue.png and b/textures/unifieddyes_light_skyblue.png differ diff --git a/textures/unifieddyes_light_violet.png b/textures/unifieddyes_light_violet.png old mode 100644 new mode 100755 index 41d45fa..48d55ac Binary files a/textures/unifieddyes_light_violet.png and b/textures/unifieddyes_light_violet.png differ diff --git a/textures/unifieddyes_light_yellow.png b/textures/unifieddyes_light_yellow.png old mode 100644 new mode 100755 index ed140d1..a0a2e60 Binary files a/textures/unifieddyes_light_yellow.png and b/textures/unifieddyes_light_yellow.png differ diff --git a/textures/unifieddyes_lightgrey.png b/textures/unifieddyes_lightgrey.png old mode 100644 new mode 100755 index 97ab01f..5171084 Binary files a/textures/unifieddyes_lightgrey.png and b/textures/unifieddyes_lightgrey.png differ diff --git a/textures/unifieddyes_lime.png b/textures/unifieddyes_lime.png old mode 100644 new mode 100755 index 5e6d5bf..50b75c2 Binary files a/textures/unifieddyes_lime.png and b/textures/unifieddyes_lime.png differ diff --git a/textures/unifieddyes_lime_s50.png b/textures/unifieddyes_lime_s50.png old mode 100644 new mode 100755 index d02762e..c942e8b Binary files a/textures/unifieddyes_lime_s50.png and b/textures/unifieddyes_lime_s50.png differ diff --git a/textures/unifieddyes_magenta_s50.png b/textures/unifieddyes_magenta_s50.png old mode 100644 new mode 100755 index aaf9d51..4527c42 Binary files a/textures/unifieddyes_magenta_s50.png and b/textures/unifieddyes_magenta_s50.png differ diff --git a/textures/unifieddyes_medium_aqua.png b/textures/unifieddyes_medium_aqua.png old mode 100644 new mode 100755 index 3659c18..8f8c5f0 Binary files a/textures/unifieddyes_medium_aqua.png and b/textures/unifieddyes_medium_aqua.png differ diff --git a/textures/unifieddyes_medium_aqua_s50.png b/textures/unifieddyes_medium_aqua_s50.png old mode 100644 new mode 100755 index fcd8869..17ec4fc Binary files a/textures/unifieddyes_medium_aqua_s50.png and b/textures/unifieddyes_medium_aqua_s50.png differ diff --git a/textures/unifieddyes_medium_blue.png b/textures/unifieddyes_medium_blue.png old mode 100644 new mode 100755 index 4da240d..a3505a2 Binary files a/textures/unifieddyes_medium_blue.png and b/textures/unifieddyes_medium_blue.png differ diff --git a/textures/unifieddyes_medium_blue_s50.png b/textures/unifieddyes_medium_blue_s50.png old mode 100644 new mode 100755 index bd6e0f9..9261c88 Binary files a/textures/unifieddyes_medium_blue_s50.png and b/textures/unifieddyes_medium_blue_s50.png differ diff --git a/textures/unifieddyes_medium_cyan.png b/textures/unifieddyes_medium_cyan.png old mode 100644 new mode 100755 index e8015f6..402eb77 Binary files a/textures/unifieddyes_medium_cyan.png and b/textures/unifieddyes_medium_cyan.png differ diff --git a/textures/unifieddyes_medium_cyan_s50.png b/textures/unifieddyes_medium_cyan_s50.png old mode 100644 new mode 100755 index de14506..2b6dba7 Binary files a/textures/unifieddyes_medium_cyan_s50.png and b/textures/unifieddyes_medium_cyan_s50.png differ diff --git a/textures/unifieddyes_medium_green.png b/textures/unifieddyes_medium_green.png old mode 100644 new mode 100755 index ecc5f06..424d8fd Binary files a/textures/unifieddyes_medium_green.png and b/textures/unifieddyes_medium_green.png differ diff --git a/textures/unifieddyes_medium_green_s50.png b/textures/unifieddyes_medium_green_s50.png old mode 100644 new mode 100755 index c9681b3..5f2816e Binary files a/textures/unifieddyes_medium_green_s50.png and b/textures/unifieddyes_medium_green_s50.png differ diff --git a/textures/unifieddyes_medium_lime.png b/textures/unifieddyes_medium_lime.png old mode 100644 new mode 100755 index 2060bac..694dbf8 Binary files a/textures/unifieddyes_medium_lime.png and b/textures/unifieddyes_medium_lime.png differ diff --git a/textures/unifieddyes_medium_lime_s50.png b/textures/unifieddyes_medium_lime_s50.png old mode 100644 new mode 100755 index 6eadc25..f1933af Binary files a/textures/unifieddyes_medium_lime_s50.png and b/textures/unifieddyes_medium_lime_s50.png differ diff --git a/textures/unifieddyes_medium_magenta.png b/textures/unifieddyes_medium_magenta.png old mode 100644 new mode 100755 index 0f6144d..80eaf06 Binary files a/textures/unifieddyes_medium_magenta.png and b/textures/unifieddyes_medium_magenta.png differ diff --git a/textures/unifieddyes_medium_magenta_s50.png b/textures/unifieddyes_medium_magenta_s50.png old mode 100644 new mode 100755 index d5ca0dd..db70725 Binary files a/textures/unifieddyes_medium_magenta_s50.png and b/textures/unifieddyes_medium_magenta_s50.png differ diff --git a/textures/unifieddyes_medium_orange.png b/textures/unifieddyes_medium_orange.png old mode 100644 new mode 100755 index d131b9c..4f5dbcb Binary files a/textures/unifieddyes_medium_orange.png and b/textures/unifieddyes_medium_orange.png differ diff --git a/textures/unifieddyes_medium_orange_s50.png b/textures/unifieddyes_medium_orange_s50.png old mode 100644 new mode 100755 index 7e08bcf..2db3a5a Binary files a/textures/unifieddyes_medium_orange_s50.png and b/textures/unifieddyes_medium_orange_s50.png differ diff --git a/textures/unifieddyes_medium_red.png b/textures/unifieddyes_medium_red.png old mode 100644 new mode 100755 index 28bc56d..ccb75d0 Binary files a/textures/unifieddyes_medium_red.png and b/textures/unifieddyes_medium_red.png differ diff --git a/textures/unifieddyes_medium_red_s50.png b/textures/unifieddyes_medium_red_s50.png old mode 100644 new mode 100755 index 0eef916..2788a3c Binary files a/textures/unifieddyes_medium_red_s50.png and b/textures/unifieddyes_medium_red_s50.png differ diff --git a/textures/unifieddyes_medium_redviolet.png b/textures/unifieddyes_medium_redviolet.png old mode 100644 new mode 100755 index 1143e27..0879e32 Binary files a/textures/unifieddyes_medium_redviolet.png and b/textures/unifieddyes_medium_redviolet.png differ diff --git a/textures/unifieddyes_medium_redviolet_s50.png b/textures/unifieddyes_medium_redviolet_s50.png old mode 100644 new mode 100755 index a314935..8acdebb Binary files a/textures/unifieddyes_medium_redviolet_s50.png and b/textures/unifieddyes_medium_redviolet_s50.png differ diff --git a/textures/unifieddyes_medium_skyblue.png b/textures/unifieddyes_medium_skyblue.png old mode 100644 new mode 100755 index f1e935f..7fa825e Binary files a/textures/unifieddyes_medium_skyblue.png and b/textures/unifieddyes_medium_skyblue.png differ diff --git a/textures/unifieddyes_medium_skyblue_s50.png b/textures/unifieddyes_medium_skyblue_s50.png old mode 100644 new mode 100755 index bd2423e..86b36f5 Binary files a/textures/unifieddyes_medium_skyblue_s50.png and b/textures/unifieddyes_medium_skyblue_s50.png differ diff --git a/textures/unifieddyes_medium_violet.png b/textures/unifieddyes_medium_violet.png old mode 100644 new mode 100755 index dd8b5fa..8523003 Binary files a/textures/unifieddyes_medium_violet.png and b/textures/unifieddyes_medium_violet.png differ diff --git a/textures/unifieddyes_medium_violet_s50.png b/textures/unifieddyes_medium_violet_s50.png old mode 100644 new mode 100755 index 4b6de6a..fe6a04e Binary files a/textures/unifieddyes_medium_violet_s50.png and b/textures/unifieddyes_medium_violet_s50.png differ diff --git a/textures/unifieddyes_medium_yellow.png b/textures/unifieddyes_medium_yellow.png old mode 100644 new mode 100755 index 578f5b9..f89eb5b Binary files a/textures/unifieddyes_medium_yellow.png and b/textures/unifieddyes_medium_yellow.png differ diff --git a/textures/unifieddyes_medium_yellow_s50.png b/textures/unifieddyes_medium_yellow_s50.png old mode 100644 new mode 100755 index ce141da..68cb095 Binary files a/textures/unifieddyes_medium_yellow_s50.png and b/textures/unifieddyes_medium_yellow_s50.png differ diff --git a/textures/unifieddyes_orange_s50.png b/textures/unifieddyes_orange_s50.png old mode 100644 new mode 100755 index fe62b73..0f9dd12 Binary files a/textures/unifieddyes_orange_s50.png and b/textures/unifieddyes_orange_s50.png differ diff --git a/textures/unifieddyes_red_s50.png b/textures/unifieddyes_red_s50.png old mode 100644 new mode 100755 index 6aef4c6..000c2bf Binary files a/textures/unifieddyes_red_s50.png and b/textures/unifieddyes_red_s50.png differ diff --git a/textures/unifieddyes_redviolet.png b/textures/unifieddyes_redviolet.png old mode 100644 new mode 100755 index 2cb0692..40740dd Binary files a/textures/unifieddyes_redviolet.png and b/textures/unifieddyes_redviolet.png differ diff --git a/textures/unifieddyes_redviolet_s50.png b/textures/unifieddyes_redviolet_s50.png old mode 100644 new mode 100755 index a438d9d..fe0d6cb Binary files a/textures/unifieddyes_redviolet_s50.png and b/textures/unifieddyes_redviolet_s50.png differ diff --git a/textures/unifieddyes_skyblue.png b/textures/unifieddyes_skyblue.png old mode 100644 new mode 100755 index 85aa3c5..36f98c5 Binary files a/textures/unifieddyes_skyblue.png and b/textures/unifieddyes_skyblue.png differ diff --git a/textures/unifieddyes_skyblue_s50.png b/textures/unifieddyes_skyblue_s50.png old mode 100644 new mode 100755 index 1d6834b..8eece77 Binary files a/textures/unifieddyes_skyblue_s50.png and b/textures/unifieddyes_skyblue_s50.png differ diff --git a/textures/unifieddyes_violet_s50.png b/textures/unifieddyes_violet_s50.png old mode 100644 new mode 100755 index 620e42c..d40f564 Binary files a/textures/unifieddyes_violet_s50.png and b/textures/unifieddyes_violet_s50.png differ diff --git a/textures/unifieddyes_yellow_s50.png b/textures/unifieddyes_yellow_s50.png old mode 100644 new mode 100755 index a3b5f0b..da4e8cb Binary files a/textures/unifieddyes_yellow_s50.png and b/textures/unifieddyes_yellow_s50.png differ diff --git a/unifieddyes_base.png b/unifieddyes_base.png old mode 100644 new mode 100755 index a51e50d..4ad67e1 Binary files a/unifieddyes_base.png and b/unifieddyes_base.png differ