more accurate 2011M (june 2011) gui
This commit is contained in:
parent
dd24d7de33
commit
fea4bc709e
|
|
@ -22,6 +22,7 @@ Enhancements:
|
||||||
- The server browser now displays versions in red if they're not the same exact version.
|
- The server browser now displays versions in red if they're not the same exact version.
|
||||||
- The master server security warning will now show up once for every Novetus session.
|
- The master server security warning will now show up once for every Novetus session.
|
||||||
- Novetus now bases your tripcode off of your computer's hardware information. (Powered by https://github.com/davcs86/csharp-uhwid)
|
- Novetus now bases your tripcode off of your computer's hardware information. (Powered by https://github.com/davcs86/csharp-uhwid)
|
||||||
|
- 2011M's GUI is now more accurate to when it released (Mid June 2011).
|
||||||
|
|
||||||
Fixes:
|
Fixes:
|
||||||
- Fixed the URL Override box in the Asset SDK not being functional.
|
- Fixed the URL Override box in the Asset SDK not being functional.
|
||||||
|
|
|
||||||
|
|
@ -1700,7 +1700,7 @@ else
|
||||||
gui = game:GetService("CoreGui").RobloxGui
|
gui = game:GetService("CoreGui").RobloxGui
|
||||||
end
|
end
|
||||||
|
|
||||||
local useOldDialog = false
|
local useOldDialog = true
|
||||||
|
|
||||||
local helpButton = nil
|
local helpButton = nil
|
||||||
local updateCameraDropDownSelection = nil
|
local updateCameraDropDownSelection = nil
|
||||||
|
|
@ -1712,7 +1712,7 @@ local classicLookScreenUrl = "rbxasset://textures/ui/tutorial_look_classic.png"
|
||||||
|
|
||||||
local hasGraphicsSlider = false
|
local hasGraphicsSlider = false
|
||||||
local recordingVideo = false
|
local recordingVideo = false
|
||||||
local useNewGui = true
|
local useNewGui = false
|
||||||
|
|
||||||
local newGuiPlaces = {0,41324860}
|
local newGuiPlaces = {0,41324860}
|
||||||
|
|
||||||
|
|
@ -2720,6 +2720,7 @@ if UserSettings then
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
)
|
)
|
||||||
|
print("Create old settings dialog return")
|
||||||
return shield
|
return shield
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
@ -2922,12 +2923,12 @@ if UserSettings then
|
||||||
end
|
end
|
||||||
|
|
||||||
delay(0, function()
|
delay(0, function()
|
||||||
for i = 1, #newGuiPlaces do
|
--[[for i = 1, #newGuiPlaces do
|
||||||
if game.PlaceId == newGuiPlaces[i] then
|
if game.PlaceId == newGuiPlaces[i] then
|
||||||
useNewGui = true
|
useNewGui = true
|
||||||
break
|
break
|
||||||
end
|
end
|
||||||
end
|
end]]--
|
||||||
if useNewGui then
|
if useNewGui then
|
||||||
createSettingsDialog().Parent = gui
|
createSettingsDialog().Parent = gui
|
||||||
|
|
||||||
|
|
@ -3585,13 +3586,16 @@ if isSaveDialogSupported then
|
||||||
end
|
end
|
||||||
|
|
||||||
--Spawn a thread for the Report Abuse dialogs
|
--Spawn a thread for the Report Abuse dialogs
|
||||||
|
print("about to create")
|
||||||
delay(0,
|
delay(0,
|
||||||
function()
|
function()
|
||||||
createReportAbuseDialog().Parent = gui
|
createReportAbuseDialog().Parent = gui
|
||||||
|
print("parenting report abuse")
|
||||||
if gui:FindFirstChild("BottomRightControl") and gui.BottomRightControl:FindFirstChild("ReportAbuse") then
|
if gui:FindFirstChild("BottomRightControl") and gui.BottomRightControl:FindFirstChild("ReportAbuse") then
|
||||||
gui.BottomRightControl.ReportAbuse.Active = true
|
gui.BottomRightControl.ReportAbuse.Active = true
|
||||||
elseif useOldDialog then
|
elseif useOldDialog then
|
||||||
gui.BottomRightControl.ReportAbuse.Active = true
|
gui.BottomRightControl.ReportAbuse.Active = true
|
||||||
|
print("old stuff")
|
||||||
else
|
else
|
||||||
waitForChild(gui,"UserSettingsShield")
|
waitForChild(gui,"UserSettingsShield")
|
||||||
waitForChild(gui.UserSettingsShield, "Settings")
|
waitForChild(gui.UserSettingsShield, "Settings")
|
||||||
|
|
|
||||||
|
|
@ -176,4 +176,5 @@ I AM GONNA TAKE YOUR COAT|SAY THANKS
|
||||||
[stylish]Wear your heart on your sleeve! It's the only way to live!|Everything will fall into place, you'll see!
|
[stylish]Wear your heart on your sleeve! It's the only way to live!|Everything will fall into place, you'll see!
|
||||||
[normal]If the entire world is getting banned by admins...|I'm taking a physgun with me.
|
[normal]If the entire world is getting banned by admins...|I'm taking a physgun with me.
|
||||||
[stylish]If the entire world is getting banned by admins, I'm taking a physgun with me.
|
[stylish]If the entire world is getting banned by admins, I'm taking a physgun with me.
|
||||||
After all, what fun is there in making sense?|I'm not a fan of puppeteers, but I've got a nagging fear that someone else is pulling at the strings!
|
After all, what fun is there in making sense?|I'm not a fan of puppeteers, but I've got a nagging fear that someone else is pulling at the strings!
|
||||||
|
If Novetus is so good, where's Novetus 2?|Where is it?
|
||||||
Loading…
Reference in New Issue