From acd3cd1d293de670d7b5cbe58bde1b3f2f4be31d Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Tue, 26 Jul 2022 21:09:19 +0200 Subject: [PATCH 01/16] Version 2.0.0 --- README.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.txt b/README.txt index f1241b4..aa48cf7 100644 --- a/README.txt +++ b/README.txt @@ -1,4 +1,4 @@ -Pride Flags Mod v1.0 +Pride Flags Mod v2.0.0 By Leslie E. Krause and Wuzzy Pride Flags adds a variety of animated flags to celebrate Pride in Minetest. From 3c559f429f71304e811b7475375285cd2621d4ca Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Tue, 26 Jul 2022 21:17:22 +0200 Subject: [PATCH 02/16] Fix wrong LGPL license link --- README.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.txt b/README.txt index aa48cf7..309951f 100644 --- a/README.txt +++ b/README.txt @@ -108,7 +108,7 @@ This program is distributed in the hope that it will be useful, but WITHOUT ANY without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. -http://www.gnu.org/licenses/lgpl-2.1.html +http://www.gnu.org/licenses/lgpl-3.0.html Multimedia License (textures, sounds, and models) From e71ade5e450e4cc063cba85b5a892f42c9404077 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Tue, 26 Jul 2022 21:17:56 +0200 Subject: [PATCH 03/16] Version 2.0.1 --- README.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.txt b/README.txt index 309951f..8d31971 100644 --- a/README.txt +++ b/README.txt @@ -1,4 +1,4 @@ -Pride Flags Mod v2.0.0 +Pride Flags Mod v2.0.1 By Leslie E. Krause and Wuzzy Pride Flags adds a variety of animated flags to celebrate Pride in Minetest. From 7a2fd7d755461ae6708a34be3b34033afaeb98d8 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Tue, 26 Jul 2022 21:24:47 +0200 Subject: [PATCH 04/16] Clean up mod.conf, add description --- mod.conf | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/mod.conf b/mod.conf index 01122a5..8c7d6c5 100644 --- a/mod.conf +++ b/mod.conf @@ -1,6 +1,5 @@ name = pride_flags title = Pride Flags -author = sorcerykid -license = LGPL-3.0 +author = sorcerykid, Wuzzy optional_depends = default, screwdriver - +description = Adds a variety of animated flags to celebrate Pride. From 947cc219eb9888a39ccc43ccdae602b9d119f567 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Tue, 26 Jul 2022 21:25:07 +0200 Subject: [PATCH 05/16] Version 2.0.2 --- README.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.txt b/README.txt index 8d31971..154d870 100644 --- a/README.txt +++ b/README.txt @@ -1,4 +1,4 @@ -Pride Flags Mod v2.0.1 +Pride Flags Mod v2.0.2 By Leslie E. Krause and Wuzzy Pride Flags adds a variety of animated flags to celebrate Pride in Minetest. From 6c6e1d453d82d40f6ebe1f95a85ad29ce40b21d4 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Tue, 26 Jul 2022 21:43:40 +0200 Subject: [PATCH 06/16] Fix crash in non-MTG games --- init.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 2920011..1f287fc 100644 --- a/init.lua +++ b/init.lua @@ -464,7 +464,9 @@ minetest.register_node( "pride_flags:upper_mast", { end local def = minetest.registered_nodes["pride_flags:upper_mast"] - minetest.sound_play(def.sounds.place, {pos = pos}, true) + if def and def.sounds then + minetest.sound_play(def.sounds.place, {pos = pos}, true) + end return itemstack end, From e1ef02f97e9d4717dbe27b3232d7252dd49dd208 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Tue, 26 Jul 2022 21:44:00 +0200 Subject: [PATCH 07/16] Version 2.0.3 --- README.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.txt b/README.txt index 154d870..ea4c3a7 100644 --- a/README.txt +++ b/README.txt @@ -1,4 +1,4 @@ -Pride Flags Mod v2.0.2 +Pride Flags Mod v2.0.3 By Leslie E. Krause and Wuzzy Pride Flags adds a variety of animated flags to celebrate Pride in Minetest. From 17a152048713bd6e4409d75f171c79c719b34a32 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Tue, 26 Jul 2022 23:29:30 +0200 Subject: [PATCH 08/16] Remove orphan flags --- init.lua | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/init.lua b/init.lua index 1f287fc..0f7b718 100644 --- a/init.lua +++ b/init.lua @@ -111,6 +111,18 @@ else S = function(s) return s end end +-- Delete entity if there is no flag mast node +local delete_if_orphan = function( self ) + local pos = self.object:get_pos( ) + local node = minetest.get_node({x=pos.x,y=pos.y-1,z=pos.z}) + if node.name ~= "pride_flags:upper_mast" and node.name ~= "ignore" then + minetest.log("action", "[pride_flags] Orphan flag entity removed at "..minetest.pos_to_string(pos, 1)) + self.object:remove( ) + return true + end + return false +end + minetest.register_entity( "pride_flags:wavingflag", { initial_properties = { physical = false, @@ -125,6 +137,10 @@ minetest.register_entity( "pride_flags:wavingflag", { }, on_activate = function ( self, staticdata, dtime ) + if delete_if_orphan( self) then + return + end + -- Init stuff self:reset_animation( true ) self.object:set_armor_groups( { immortal = 1 } ) @@ -178,6 +194,9 @@ minetest.register_entity( "pride_flags:wavingflag", { self.anim_timer = self.anim_timer - dtime if self.anim_timer <= 0 then + if delete_if_orphan( self) then + return + end self:reset_animation( ) end end, From c676c63634d26fa7e80219fda8bd68ae3654226d Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Tue, 26 Jul 2022 23:29:50 +0200 Subject: [PATCH 09/16] Version 2.0.4 --- README.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.txt b/README.txt index ea4c3a7..c7f4fb2 100644 --- a/README.txt +++ b/README.txt @@ -1,4 +1,4 @@ -Pride Flags Mod v2.0.3 +Pride Flags Mod v2.0.4 By Leslie E. Krause and Wuzzy Pride Flags adds a variety of animated flags to celebrate Pride in Minetest. From 39924e6ab0d5c3f27c94b9be9c59dfc3df15b470 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Fri, 5 Aug 2022 23:57:51 +0200 Subject: [PATCH 10/16] Move license info to LICENSE.txt --- LICENSE.txt | 91 +++++++++++++++++++++++++++++++++++++++++++++++++++++ README.txt | 91 +++-------------------------------------------------- 2 files changed, 96 insertions(+), 86 deletions(-) create mode 100644 LICENSE.txt diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..36cd7db --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,91 @@ +# Licensing and credits for Pride Flags Mod + +Source Code License +---------------------------------------------------------- + +GNU Lesser General Public License v3 (LGPL-3.0) + +Copyright (c) 2022, Leslie E. Krause and Wuzzy + +This program is free software; you can redistribute it and/or modify it under the terms of +the GNU Lesser General Public License as published by the Free Software Foundation; either +version 3 of the License, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; +without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +See the GNU Lesser General Public License for more details. + +http://www.gnu.org/licenses/lgpl-3.0.html + + +Multimedia License (textures, sounds, and models) +---------------------------------------------------------- + +Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0) + + /models/pride_flags_mast_lower.obj + by sorcerykid + + /models/pride_flags_mast_upper.obj + by sorcerykid + + /models/pride_flags_wavingflag.b3d + by sorcerykid + + /textures/pride_flags_baremetal.png + by sorcerykid + + /sounds/pride_flags_flagwave1.ogg + by Chelly01 + obtained from https://freesound.org/people/Chelly01/sounds/541088/ + modified by sorcerykid + + /sounds/pride_flags_flagwave2.ogg + by Chelly01 + obtained from https://freesound.org/people/Chelly01/sounds/541088/ + modified by sorcerykid + + /sounds/pride_flags_flagwave3.ogg + by Chelly01 + obtained from https://freesound.org/people/Chelly01/sounds/541088/ + modified by sorcerykid + + Pride flags: + All pride flags have a name like "/textures/prideflag_.png", + where is the pride flag name. For example, the rainbow flag + is "/textures/prideflag_rainbow.png". These are the current pride flags: + + asexual, bisexual, rainbow, gendercreative, genderfluid, genderqueer, + lesbian, nonbinary, pansexual, polysexual, transgender: + by sorcerykid + + aromantic, grayromantic, demiromantic, graysexual, demisexual, omnisexual, + homoromantic, biromantic, panromantic, polyromantic, omniromantic, + vincian, agender, demigender, androgyne, multigender, + intersex, polyamorous, queer, maverique, neutrois, multigender, polygender: + by Wuzzy + +You are free to: +Share — copy and redistribute the material in any medium or format. +Adapt — remix, transform, and build upon the material for any purpose, even commercially. +The licensor cannot revoke these freedoms as long as you follow the license terms. + +Under the following terms: + +Attribution — You must give appropriate credit, provide a link to the license, and +indicate if changes were made. You may do so in any reasonable manner, but not in any way +that suggests the licensor endorses you or your use. + +No additional restrictions — You may not apply legal terms or technological measures that +legally restrict others from doing anything the license permits. + +Notices: + +You do not have to comply with the license for elements of the material in the public +domain or where your use is permitted by an applicable exception or limitation. +No warranties are given. The license may not give you all of the permissions necessary +for your intended use. For example, other rights such as publicity, privacy, or moral +rights may limit how you use the material. + +For more details: +http://creativecommons.org/licenses/by-sa/3.0/ diff --git a/README.txt b/README.txt index c7f4fb2..235618d 100644 --- a/README.txt +++ b/README.txt @@ -93,92 +93,11 @@ Installation 1) Unzip the archive into the mods directory of your game. 2) Rename the pride_flags-master directory to "pride_flags". -Source Code License +License/Credits ---------------------------------------------------------- -GNU Lesser General Public License v3 (LGPL-3.0) +This mod is free software. +The source code is licensed under the LGPLv3. +The media is licensed under CC BY-SA 3.0. -Copyright (c) 2022, Leslie E. Krause and Wuzzy - -This program is free software; you can redistribute it and/or modify it under the terms of -the GNU Lesser General Public License as published by the Free Software Foundation; either -version 3 of the License, or (at your option) any later version. - -This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; -without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU Lesser General Public License for more details. - -http://www.gnu.org/licenses/lgpl-3.0.html - - -Multimedia License (textures, sounds, and models) ----------------------------------------------------------- - -Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0) - - /models/pride_flags_mast_lower.obj - by sorcerykid - - /models/pride_flags_mast_upper.obj - by sorcerykid - - /models/pride_flags_wavingflag.b3d - by sorcerykid - - /textures/pride_flags_baremetal.png - by sorcerykid - - /sounds/pride_flags_flagwave1.ogg - by Chelly01 - obtained from https://freesound.org/people/Chelly01/sounds/541088/ - modified by sorcerykid - - /sounds/pride_flags_flagwave2.ogg - by Chelly01 - obtained from https://freesound.org/people/Chelly01/sounds/541088/ - modified by sorcerykid - - /sounds/pride_flags_flagwave3.ogg - by Chelly01 - obtained from https://freesound.org/people/Chelly01/sounds/541088/ - modified by sorcerykid - - Pride flags: - All pride flags have a name like "/textures/prideflag_.png", - where is the pride flag name. For example, the rainbow flag - is "/textures/prideflag_rainbow.png". These are the current pride flags: - - asexual, bisexual, rainbow, gendercreative, genderfluid, genderqueer, - lesbian, nonbinary, pansexual, polysexual, transgender: - by sorcerykid - - aromantic, grayromantic, demiromantic, graysexual, demisexual, omnisexual, - homoromantic, biromantic, panromantic, polyromantic, omniromantic, - vincian, agender, demigender, androgyne, multigender, - intersex, polyamorous, queer, maverique, neutrois, multigender, polygender: - by Wuzzy - -You are free to: -Share — copy and redistribute the material in any medium or format. -Adapt — remix, transform, and build upon the material for any purpose, even commercially. -The licensor cannot revoke these freedoms as long as you follow the license terms. - -Under the following terms: - -Attribution — You must give appropriate credit, provide a link to the license, and -indicate if changes were made. You may do so in any reasonable manner, but not in any way -that suggests the licensor endorses you or your use. - -No additional restrictions — You may not apply legal terms or technological measures that -legally restrict others from doing anything the license permits. - -Notices: - -You do not have to comply with the license for elements of the material in the public -domain or where your use is permitted by an applicable exception or limitation. -No warranties are given. The license may not give you all of the permissions necessary -for your intended use. For example, other rights such as publicity, privacy, or moral -rights may limit how you use the material. - -For more details: -http://creativecommons.org/licenses/by-sa/3.0/ +See LICENSE.txt for details and credits. From 02b3118cfc41e12c9e39999c5334ede5a72766f5 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Fri, 5 Aug 2022 23:58:16 +0200 Subject: [PATCH 11/16] Version 2.0.5 --- README.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.txt b/README.txt index 235618d..003e51a 100644 --- a/README.txt +++ b/README.txt @@ -1,4 +1,4 @@ -Pride Flags Mod v2.0.4 +Pride Flags Mod v2.0.5 By Leslie E. Krause and Wuzzy Pride Flags adds a variety of animated flags to celebrate Pride in Minetest. From 1985c4d921961546061c1307b0d08887e7f4c3c9 Mon Sep 17 00:00:00 2001 From: Edgy1 Date: Wed, 10 Aug 2022 16:04:49 -0400 Subject: [PATCH 12/16] Add progress flag --- init.lua | 4 +++- prideflag_progress.png | Bin 0 -> 1874 bytes 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 prideflag_progress.png diff --git a/init.lua b/init.lua index 0f7b718..1ed473b 100644 --- a/init.lua +++ b/init.lua @@ -27,7 +27,7 @@ local DEFAULT_FLAG = "rainbow" -- Flag list for the old number-based storing of flags, used up to -- 8fd4f9661e123bc84c0499c4809537e8aeb24c3b. Do not change this list! local legacy_flag_list = { - "rainbow", "lesbian", "bisexual", "transgender", "genderqueer", "nonbinary", "pansexual", "asexual", + "rainbow", "progress", "lesbian", "bisexual", "transgender", "genderqueer", "nonbinary", "pansexual", "asexual", "vincian", "polysexual", "omnisexual", "graysexual", "demisexual", "homoromantic", "biromantic", "polyromantic", "panromantic", "omniromantic", "aromantic", "grayromantic", "demiromantic", "androgyne", "demigender", "maverique", "neutrois", "multigender", "polygender", "pangender", "agender", @@ -36,6 +36,8 @@ local legacy_flag_list = { local flag_list = { -- rainbow flag / LGBT+ Pride flag / Gay Pride flag "rainbow", + -- progress flag + "progress", -- orientations (general) "lesbian", "vincian", -- sexual orientations diff --git a/prideflag_progress.png b/prideflag_progress.png new file mode 100644 index 0000000000000000000000000000000000000000..aff67ba637f3840eca39e80198b71fcf065398a6 GIT binary patch literal 1874 zcmV-Y2d(&tP)EX>4Tx04R}tkv&MmKpe$iQ^is$4(%Y~kfAz=1+gNIT7@E12(?114knj=L6e3g z#l=x@EjakGSaoo5*44pP5ClI!9G#pLU8KbSrG*wT9vt`M-Mz=%J3weum}d1%0Ge)_ z>10C8=2peNR|F757;%ir%rfRADFx5*bq^n3?_xa5``n+SU(H(#@QK8;%rI@@4dUrd z+u*!U9APC{B|aw}H|c`Jk6c$;{KmQHvcNMVW+pvP93d8qU95C5E14Sc6meA5bjla9 zEmk>ian>p|*1jiyVJNS!EOVXaFp^lr5+sOFP(v9N*oe`plVTxF`w0*Kkn5MorI4!( zMvetkp+R>2;D7MDTdNSCY$b&fK<|s=e2f5nyFjzwwE&%l-5@mCwb%qQvf zjut%v2DX8V>yD=E0hc?#;FBSnvMc#%3WWmjen#Jv1H!jJaIMu_dmpC{K!&vs zSx9mcOHzZL;qj!#zoBfPwLX&fGf&iLj~S{-eH zQZ8cYj6O(9U+#T5=`H`oK&bhTW5J4w-RJey@8@=A6&`c7MCsO)T&DduimW zcfpEeDueNWiW`e*X8V^G3z{Seg&30U(DQH}{e;znEC4)d%knZd8t-*VF=BE&sdF}n2Q}~xbj#M-Jy9nI8zF{w?#MJ z-p_%{vu1#+tzb5kN8{)Y%|p?`(^+lzdbEg~XVc6)8I9Y`g=e9ZAu&A*{C10Z!!3sbe^n)-77MdIHr$UWXN8f-q;V;r zA{1tinNx$nuBQc_ju`5;-d5N-nP-(`JX`BRrJIf3a2UAqi^y;W@f05)&nC+_P~*l! zC1T@g@9pIakH|P!=SIaQaq+TmiWZ~X^9@>DP!#RSjo6bDb=i5Y`< zwstn2)4GCJQvCnNBl-GZnx`8ZzODjB6+tsDhb38zvm}cQ_9K3py(C*or0~PEip3;H zud@oMR0Qp+2G+4z(S8*JZT)b0LrV*jY3ql}Bii}tFcuTypygg144^Fy_9MYVOQv!D zY8a|uXt`xvp3ox6G%j3Kp~l5S%MNFxdk$qmyQU%>%Ls|44QCK7-p4^(PGfLJ#XnJT z(fDwALW?eEFg&B;?}*rF0Bg^|5ZW2U``%}^#g++%uHC~zWQqMGjZ=Vo7eooNafRRv z5~q1+MHrb;u@H%}pJKmQXsf%b7MhX;ZHSK+UzRa)UB%5M4YbW-q5YR}M$tIkGoF%h zDWKx!y*LN$vXE#iaJisK>qkqZEEu~U#{Auc23i9|4Z=gaZO?`_poumbP!YVFc| zG#Yowb=#)kl!uQN85%&M?>%N)GDR^S2qU=2KGlhRlfdTP5IxqwE!gbvd$ww1+F4Ds zv4DzMF4_c8x(8;6Rd5SdJN%wXL}W<=?WAU=&2mnjWA7MHx))}N`$Bh$ZRqh-Vu_13 zpn;abcp%I@u8(I%fU^BCQxE_MlOptZwqlX6(W07Tn)YuTULnU&{qqEX2~)vIDk(xw zwFluM!bOYeM0=UMg=)D5W(=vP+JiehwBfV5(Ox2N;1RhNW)0~tEwtW~y3k&fkK$2z zJIox?Mx(tTcc6yU!|XxUj%jBR>(htUDz~GSJdQ#LY3-P%53NOh4Rz!R6iSed$h2m; z4cp0+D5Q`8AbRnfZnP%34LitFD728G7tbN4^Dly$5VND?X8-^I M07*qoM6N<$g6HpTJpcdz literal 0 HcmV?d00001 From 343f66453498408eef8ad86a570d6ccbcc426008 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Thu, 11 Aug 2022 12:10:40 +0200 Subject: [PATCH 13/16] Some bugfixes with regards to progress pride flag --- README.txt | 4 +++- init.lua | 7 +++---- .../prideflag_progress.png | Bin 3 files changed, 6 insertions(+), 5 deletions(-) rename prideflag_progress.png => textures/prideflag_progress.png (100%) diff --git a/README.txt b/README.txt index 003e51a..26c2a45 100644 --- a/README.txt +++ b/README.txt @@ -29,8 +29,10 @@ List of flags -------------------- These flags are available: -* Orientations (sexual, romantic or other) +* Broader community: * Gay/LGBTQ+ (rainbow flag) + * Progress Pride +* Orientations (sexual, romantic or other) * Lesbian * Vincian * Sexual orientations diff --git a/init.lua b/init.lua index 1ed473b..4628534 100644 --- a/init.lua +++ b/init.lua @@ -34,10 +34,9 @@ local legacy_flag_list = { "genderfluid", "intersex", "polyamorous", "queer", "demigirl", "demiboy", "bigender", "trigender", } local flag_list = { - -- rainbow flag / LGBT+ Pride flag / Gay Pride flag - "rainbow", - -- progress flag - "progress", + -- broader community + "rainbow", -- rainbow flag / LGBTQ+ Pride flag / Gay Pride flag + "progress", -- Progress Pride -- orientations (general) "lesbian", "vincian", -- sexual orientations diff --git a/prideflag_progress.png b/textures/prideflag_progress.png similarity index 100% rename from prideflag_progress.png rename to textures/prideflag_progress.png From a81e55d78187653607411518d0f790c05b028271 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Thu, 11 Aug 2022 12:11:36 +0200 Subject: [PATCH 14/16] Add Edgy1 to credits for Progress Pride --- LICENSE.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/LICENSE.txt b/LICENSE.txt index 36cd7db..7504c0e 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -65,6 +65,9 @@ Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0) intersex, polyamorous, queer, maverique, neutrois, multigender, polygender: by Wuzzy + progress + by Edgy1 + You are free to: Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material for any purpose, even commercially. From e1b6f0168732d3c54e41fd0c6bf2d8b313b15769 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Thu, 11 Aug 2022 12:13:22 +0200 Subject: [PATCH 15/16] Remove progress pride flag from legacy flag list --- init.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/init.lua b/init.lua index 4628534..cfed1aa 100644 --- a/init.lua +++ b/init.lua @@ -25,9 +25,10 @@ local rad_90 = pi / 2 local DEFAULT_FLAG = "rainbow" -- Flag list for the old number-based storing of flags, used up to --- 8fd4f9661e123bc84c0499c4809537e8aeb24c3b. Do not change this list! +-- 8fd4f9661e123bc84c0499c4809537e8aeb24c3b. +-- DO NOT CHANGE THIS LIST! local legacy_flag_list = { - "rainbow", "progress", "lesbian", "bisexual", "transgender", "genderqueer", "nonbinary", "pansexual", "asexual", + "rainbow", "lesbian", "bisexual", "transgender", "genderqueer", "nonbinary", "pansexual", "asexual", "vincian", "polysexual", "omnisexual", "graysexual", "demisexual", "homoromantic", "biromantic", "polyromantic", "panromantic", "omniromantic", "aromantic", "grayromantic", "demiromantic", "androgyne", "demigender", "maverique", "neutrois", "multigender", "polygender", "pangender", "agender", From e774da4fd448eaafeacc9dc8a5000cb647a81b59 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Fri, 19 Aug 2022 12:29:08 +0200 Subject: [PATCH 16/16] Version 2.1.0 --- README.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.txt b/README.txt index 26c2a45..252126a 100644 --- a/README.txt +++ b/README.txt @@ -1,4 +1,4 @@ -Pride Flags Mod v2.0.5 +Pride Flags Mod v2.1.0 By Leslie E. Krause and Wuzzy Pride Flags adds a variety of animated flags to celebrate Pride in Minetest.