From 29a6aef6cbfc5a6dad71429ed61a6c4b5727d3ca Mon Sep 17 00:00:00 2001 From: Antcar Date: Tue, 21 Jun 2022 23:43:13 +0800 Subject: [PATCH 1/8] Update SoftShutdownServiceClient.lua --- .../src/Client/SoftShutdownServiceClient.lua | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/src/softshutdown/src/Client/SoftShutdownServiceClient.lua b/src/softshutdown/src/Client/SoftShutdownServiceClient.lua index 30e0e107d12..8c056ffee20 100644 --- a/src/softshutdown/src/Client/SoftShutdownServiceClient.lua +++ b/src/softshutdown/src/Client/SoftShutdownServiceClient.lua @@ -124,7 +124,7 @@ function SoftShutdownServiceClient:_showSoftShutdownUI(titleKey, subtitleKey, do screenGui.ResetOnSpawn = false screenGui.AutoLocalize = false screenGui.IgnoreGuiInset = true - screenGui.DisplayOrder = 1e10 + screenGui.DisplayOrder = 1e9 screenGui.Parent = PlayerGuiUtils.getPlayerGui() screenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling renderMaid:GiveTask(screenGui) @@ -180,6 +180,20 @@ function SoftShutdownServiceClient:_hideCoreGuiUI(maid, ignoreScreenGui) end end) + PlayerGuiUtils.getPlayerGui().ChildAdded:Connect(function(item) + + if item:IsA("ScreenGui") and item ~= ignoreScreenGui and item.Enabled then + enabledScreenGuis[item] = item + item.Enabled = false + + maid:GiveTask(function() + item.Enabled = true + end) + + end + + end) + for _, coreGuiType in pairs(DISABLE_CORE_GUI_TYPES) do task.spawn(function() if StarterGui:GetCoreGuiEnabled(coreGuiType) then From 3146f47cb732fe7b2b2c49e543f007dd394e19b3 Mon Sep 17 00:00:00 2001 From: Antcar <58066418+antcar0929@users.noreply.github.com> Date: Wed, 11 Jan 2023 15:13:16 +0800 Subject: [PATCH 2/8] Update build.md Linking custom version of rojo. --- docs/build.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/build.md b/docs/build.md index 662cd93c71b..c2e263bb994 100644 --- a/docs/build.md +++ b/docs/build.md @@ -29,7 +29,7 @@ There are certain open source technologies that Nevermore uses to keep the build 8. [Hoarcekat](https://github.com/Kampfkarren/hoarcekat) - Story book (testing) :::info -We use a custom version of Rojo to allow symlinks between components. +We use a [custom version of Rojo](https://github.com/Quenty/rojo/releases/latest) to allow symlinks between components. ::: Additionally in the cloud we use From 83b98c5658bc1fd2490d43b81a847ff5957124f3 Mon Sep 17 00:00:00 2001 From: Antcar <58066418+antcar0929@users.noreply.github.com> Date: Wed, 11 Jan 2023 15:18:53 +0800 Subject: [PATCH 3/8] Bumping copyright date again! --- moonwave.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moonwave.toml b/moonwave.toml index 4efce463ea9..c135777fafe 100644 --- a/moonwave.toml +++ b/moonwave.toml @@ -12,7 +12,7 @@ label = "Discord" position = "right" [footer] -copyright = "Copyright © 2014-2022 James Onnen. Made with Moonwave." +copyright = "Copyright © 2014-2023 James Onnen. Made with Moonwave." [docusaurus] url = "https://quenty.github.io" From 9442eb024535eccb3fcccca37311fa25f86cff07 Mon Sep 17 00:00:00 2001 From: Antcar <58066418+antcar0929@users.noreply.github.com> Date: Wed, 11 Jan 2023 15:24:58 +0800 Subject: [PATCH 4/8] Bumping copyright date for softshutdown --- src/softshutdown/test/scripts/Server/init.server.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/softshutdown/test/scripts/Server/init.server.lua b/src/softshutdown/test/scripts/Server/init.server.lua index 53e4493ceb2..5d19b1687b7 100644 --- a/src/softshutdown/test/scripts/Server/init.server.lua +++ b/src/softshutdown/test/scripts/Server/init.server.lua @@ -16,7 +16,7 @@ ---- MIT License - Copyright (c) 2014-2022 Quenty + Copyright (c) 2014-2023 Quenty Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -61,4 +61,4 @@ local serviceBag = require(server.ServiceBag).new() serviceBag:GetService(require(server.SoftShutdownService)) serviceBag:Init() -serviceBag:Start() \ No newline at end of file +serviceBag:Start() From f361a2b5266c1bf632b8aeda79ac69dbca5640c1 Mon Sep 17 00:00:00 2001 From: Antcar <58066418+antcar0929@users.noreply.github.com> Date: Wed, 11 Jan 2023 15:27:23 +0800 Subject: [PATCH 5/8] Bumping license date again! --- LICENSE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LICENSE.md b/LICENSE.md index 09a9c0942ec..2e5a9cc6452 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2014-2022 Quenty +Copyright (c) 2014-2023 Quenty Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal From 6e95d0239bd313fe9b2570b7d90de1933e6a423f Mon Sep 17 00:00:00 2001 From: Antcar <58066418+antcar0929@users.noreply.github.com> Date: Sun, 22 Jan 2023 11:45:33 +0800 Subject: [PATCH 6/8] Add little example for UTF8 --- src/utf8/src/Shared/UTF8.lua | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/utf8/src/Shared/UTF8.lua b/src/utf8/src/Shared/UTF8.lua index 70a3b11e0c9..01711bf2dd2 100644 --- a/src/utf8/src/Shared/UTF8.lua +++ b/src/utf8/src/Shared/UTF8.lua @@ -1,5 +1,13 @@ --[=[ UTF8 utility functions + + ```lua + print(UTF8.upper("Foo")) + --FOO + print(UTF8.lower("Bar")) + --bar + ``` + @class UTF8 ]=] @@ -164,4 +172,4 @@ for key, val in pairs(UTF8.UPPER_MAP) do UTF8.LOWER_MAP[val] = key end -return UTF8 \ No newline at end of file +return UTF8 From 2f8c2795a426c57eb55928f7b93bf12ae2c27d2e Mon Sep 17 00:00:00 2001 From: Antcar <58066418+antcar0929@users.noreply.github.com> Date: Sun, 22 Jan 2023 12:18:07 +0800 Subject: [PATCH 7/8] Updating the file because the link is not working --- src/firstpersoncharactertransparency/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/firstpersoncharactertransparency/README.md b/src/firstpersoncharactertransparency/README.md index 66559c34cc1..202c0f385a5 100644 --- a/src/firstpersoncharactertransparency/README.md +++ b/src/firstpersoncharactertransparency/README.md @@ -13,7 +13,7 @@ Allows transparency to manually be controlled for a character in first-person mode -
View docs →
+
View docs →
## Installation ``` From 171d974898c91512158f6feed4d48370e2ff0b94 Mon Sep 17 00:00:00 2001 From: Antcar <58066418+antcar0929@users.noreply.github.com> Date: Sun, 22 Jan 2023 12:22:21 +0800 Subject: [PATCH 8/8] Update EloUtils.lua --- src/elo/src/Shared/EloUtils.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/elo/src/Shared/EloUtils.lua b/src/elo/src/Shared/EloUtils.lua index 6fb19729ee7..dda88f5cab6 100644 --- a/src/elo/src/Shared/EloUtils.lua +++ b/src/elo/src/Shared/EloUtils.lua @@ -1,5 +1,5 @@ --[=[ - Utilities to compute elo scores for players + Utilities to compute [elo scores](https://en.wikipedia.org/wiki/Elo_rating_system) for players @class EloUtils ```lua @@ -208,4 +208,4 @@ function EloUtils.extractKFactor(config, rating) end end -return EloUtils \ No newline at end of file +return EloUtils