From 38d6c76ea9ffb73261c6f51a0a6d7851eba082c2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 8 Dec 2022 04:27:24 +0000 Subject: [PATCH 1/3] Bump nokogiri from 1.13.9 to 1.13.10 in /docs Bumps [nokogiri](https://github.com/sparklemotion/nokogiri) from 1.13.9 to 1.13.10. - [Release notes](https://github.com/sparklemotion/nokogiri/releases) - [Changelog](https://github.com/sparklemotion/nokogiri/blob/main/CHANGELOG.md) - [Commits](https://github.com/sparklemotion/nokogiri/compare/v1.13.9...v1.13.10) --- updated-dependencies: - dependency-name: nokogiri dependency-type: indirect ... Signed-off-by: dependabot[bot] --- docs/Gemfile.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Gemfile.lock b/docs/Gemfile.lock index ef3d00447..0debfed2d 100644 --- a/docs/Gemfile.lock +++ b/docs/Gemfile.lock @@ -211,7 +211,7 @@ GEM minitest (5.11.1) multipart-post (2.1.1) net-dns (0.9.0) - nokogiri (1.13.9) + nokogiri (1.13.10) mini_portile2 (~> 2.8.0) racc (~> 1.4) octokit (4.21.0) @@ -220,7 +220,7 @@ GEM pathutil (0.16.2) forwardable-extended (~> 2.6) public_suffix (2.0.5) - racc (1.6.0) + racc (1.6.1) rb-fsevent (0.11.0) rb-inotify (0.10.1) ffi (~> 1.0) From dc48ecd7ab954d9ee17cb46a58494a08d73128ba Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 7 Aug 2023 22:12:46 +0000 Subject: [PATCH 2/3] Bump nokogiri from 1.13.10 to 1.15.3 in /docs Bumps [nokogiri](https://github.com/sparklemotion/nokogiri) from 1.13.10 to 1.15.3. - [Release notes](https://github.com/sparklemotion/nokogiri/releases) - [Changelog](https://github.com/sparklemotion/nokogiri/blob/main/CHANGELOG.md) - [Commits](https://github.com/sparklemotion/nokogiri/compare/v1.13.10...v1.15.3) --- updated-dependencies: - dependency-name: nokogiri dependency-type: indirect ... Signed-off-by: dependabot[bot] --- docs/Gemfile.lock | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/Gemfile.lock b/docs/Gemfile.lock index 0debfed2d..25562a772 100644 --- a/docs/Gemfile.lock +++ b/docs/Gemfile.lock @@ -205,14 +205,14 @@ GEM rb-fsevent (>= 0.9.3) rb-inotify (>= 0.9.7) mercenary (0.3.6) - mini_portile2 (2.8.0) + mini_portile2 (2.8.4) minima (2.1.1) jekyll (~> 3.3) minitest (5.11.1) multipart-post (2.1.1) net-dns (0.9.0) - nokogiri (1.13.10) - mini_portile2 (~> 2.8.0) + nokogiri (1.15.3) + mini_portile2 (~> 2.8.2) racc (~> 1.4) octokit (4.21.0) faraday (>= 0.9) @@ -220,7 +220,7 @@ GEM pathutil (0.16.2) forwardable-extended (~> 2.6) public_suffix (2.0.5) - racc (1.6.1) + racc (1.7.1) rb-fsevent (0.11.0) rb-inotify (0.10.1) ffi (~> 1.0) From 7018f852a9d35c45d30ae94ff675fa7e931c4019 Mon Sep 17 00:00:00 2001 From: Medea-Destiny <37522714+Medea-Destiny@users.noreply.github.com> Date: Mon, 11 Sep 2023 07:36:19 +0100 Subject: [PATCH 3/3] Update oc_titler.lsl 0 length titles via chat commands (i.e [prefix]title) were returning "title" as a title rather than opening the textbox as intended. --- src/collar/oc_titler.lsl | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/collar/oc_titler.lsl b/src/collar/oc_titler.lsl index 5365fd51b..29083c055 100644 --- a/src/collar/oc_titler.lsl +++ b/src/collar/oc_titler.lsl @@ -160,12 +160,11 @@ UserCommand(integer iNum, string sStr, key kID) { if(iNum !=CMD_OWNER)return; if(sChangetype == "title"){ - string sTitle = llDumpList2String(llList2List(llParseString2List(sStr,[" "],[]), 1,-1)," "); - if(sTitle == ""){ + if(sChangevalue == ""){ Dialog(kID, "What should the title say?", [], [], 0, iNum, "Textbox~Title"); return; } - g_sTitle=sTitle; + g_sTitle=llDumpList2String(llList2List(llParseString2List(sStr,[" "],[]), 1,-1)," "); Save(SAVE_TITLE); } else if(sChangetype == "titler"){ if(sChangevalue == "color"){