forked from TeamUlysses/ulib
Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
6b26feb0e2 | ||
![]() |
fcaa4033ce | ||
![]() |
7eb152498e | ||
![]() |
72c7b66989 | ||
![]() |
3a484fb5b1 |
@ -1,10 +1,10 @@
|
||||
# ULib Changelog
|
||||
|
||||
## Experimental Features in Testing - *(00/00/0000)*
|
||||
## Upcoming - *(00/00/00)*
|
||||
* [ADD] Added a hook for PostCommandCalled (Thanks, brandonsturgeon)
|
||||
* [CHANGE] Moved Users to SQLite. (Thanks, JoshPiper)
|
||||
|
||||
## v2.71 - *(00/00/0000)*
|
||||
## v2.71 - *(03/24/24)*
|
||||
* [ADD] Added a sanity check to ULib.replicatedWritableCvar to address older addons after the net code rewrite. (Thanks, ZenBre4ker)
|
||||
* [FIX] Fixed some issues in player.lua with SetClip errors. (Thanks, JoshPiper)
|
||||
* [FIX] Cleaned up some code in player.lua to be more aligned with our docs. (Thanks, JoshPiper)
|
||||
@ -15,7 +15,7 @@
|
||||
* [CHANGE] Removed gsub from the SteamID replacement string in ban reasons.
|
||||
* [CHANGE] Strings can now be passed to ULib.addBan for the admin parameter. This is useful for 3rd party integrations of ULib's ban. (Thanks, wrefgtzweve)
|
||||
|
||||
## v2.70 - *(08/04/2022)*
|
||||
## v2.70 - *(08/04/22)*
|
||||
* [ADD] Hook when a new, previously unknown access is registered. UCLChanged is now called as well.
|
||||
* [CHANGE] Moved bans to SQLite.
|
||||
* [CHANGE] Listen server hosts can no longer be banned (thanks, lewez).
|
||||
|
@ -112,9 +112,8 @@ end
|
||||
|
||||
|
||||
local function doInvis()
|
||||
local players = player.GetAll()
|
||||
local remove = true
|
||||
for _, player in ipairs( players ) do
|
||||
for _, player in player.Iterator() do
|
||||
local t = player:GetTable()
|
||||
if t.invis then
|
||||
remove = false
|
||||
|
@ -467,6 +467,4 @@ if SERVER then
|
||||
util.AddNetworkString( "tsayc" )
|
||||
util.AddNetworkString( "ulib_repWriteCvar" )
|
||||
util.AddNetworkString( "ulib_repChangeCvar" )
|
||||
|
||||
|
||||
end
|
||||
|
@ -161,7 +161,7 @@ function ULib.updateCheck( name, url )
|
||||
end
|
||||
|
||||
local function httpCheck( body, len, headers, httpCode )
|
||||
if httpCode ~= 200 then
|
||||
if httpCode < 200 or httpCode > 299 then
|
||||
return
|
||||
end
|
||||
|
||||
@ -181,7 +181,7 @@ local function httpErr()
|
||||
end
|
||||
|
||||
local function downloadForUlibUpdateCheck()
|
||||
http.Fetch( "http://google.com", httpCheck, httpErr )
|
||||
http.Fetch( "http://connectivity-check.ubuntu.com/", httpCheck, httpErr )
|
||||
end
|
||||
|
||||
if ULib.AUTOMATIC_UPDATE_CHECKS then
|
||||
|
@ -1 +1 @@
|
||||
1711238607
|
||||
1712359479
|
||||
|
Loading…
Reference in New Issue
Block a user