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 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 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" 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 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 ``` diff --git a/src/softshutdown/src/Client/SoftShutdownServiceClient.lua b/src/softshutdown/src/Client/SoftShutdownServiceClient.lua index c1bbb4feacd..96b584531e1 100644 --- a/src/softshutdown/src/Client/SoftShutdownServiceClient.lua +++ b/src/softshutdown/src/Client/SoftShutdownServiceClient.lua @@ -196,6 +196,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 maid:GiveTask(CoreGuiEnabler:Disable(self, coreGuiType)) end 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() 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