-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathchangelog.txt
2637 lines (2555 loc) · 137 KB
/
changelog.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1.4
---------------------------------------------------------------------------
Snapshot v24.8906.16186.1
Enhancements:
- Added the winners of the Summer 2024 contest!
- jskog - Bionicle's Kini-Nui
- Jozuno - Survive the Builder's Club Members (Revamped)
Items:
Faces:
- Spawn Location
---------------------------------------------------------------------------
Snapshot v24.8906.16186.1
Enhancements:
- Added all 4 versions of Old Cars to Novetus to replace mislabeled versions. Happy 10 years!
- Changed Novetus file structure.
- Added more maps to Novetus, curated by the Novetus community and Novetus Creators.
Fixes:
- 2012M: Fixed a bug where tools become draggable immediately after respawning.
- Fixed a bug where the Item SDK doesn't load items properly after creating them.
- Fixed a bug where 2006S-2007M Play Solo doesn't load properly.
Items:
Hats:
- Pinstripe Fedora
- WhiteBusinessFedora (Imperfectly Illegitimate Businessman)
---------------------------------------------------------------------------
Snapshot v24.8854.31454.1
Note:
- The client SDK has been unlocked to facilitate moving to the new Novetus 2.0 client format. It is generally not advised to host public servers at this time, but I'm not stopping you. If you have made ANY clients, export them to txt, ini, or json formats. Future you will thank you.
Enhancements:
- Added console commands for reading and writing individual configuration values.
- Added console commands for manipulating outfit files.
- Improved map searching.
- Improved selection of dependencies available in the Dependency Installer.
- It will now install multiple versions of VC++ 2005 and VC++ 2008, making it easier to set up clients.
- Added a DirectX installer.
- The Dependency Installer will require admin permissions by default, allowing all installers to run with admin permissions, making it quicker to install each dependency.
- Added support for more client APIs in the Web Proxy.
- Losing connection from servers will now automatically close the client.
- Improved player kick function.
- Removed the following redundant clients to save space:
2006S-Shaders
2007E-Shaders
2007M-Shaders
- 2009E-HD Clients can now join 2009E servers and vice versa.
Fixes:
- Fixed a bug where "Reset Colors" would reset the entire outfit.
- Fixed the "reset config" button being non-functional.
- Removed the "save config" button.
- Fixed character collision accuracy issues in 2007M clients.
- Fixed the Web Proxy not starting up automatically once enabled.
- Fixed a bug where kicked players don't fully disconnect from the server.
- Removed the ShadersCompatibility plugin due to security issues.
- Fixed issues when creating reskins of certain hats.
- Fixed a crash that would occur if 2 map files were in the same subfolder.
- Reverted loadstring/bytecode security fix due to server stability isssues.
Items:
Hats:
- Cat Ears
Heads:
- Old Default Head (Replica)
---------------------------------------------------------------------------
Continuation of 1.4 development.
---------------------------------------------------------------------------
1.3 v3.2024.2
Changes from 1.3 v3.2024.1:
- Fixed a bug where kicked players don't fully disconnect from the server.
- Removed the ShadersCompatibility plugin due to security issues.
- Losing connection from servers will now automatically close the client.
---------------------------------------------------------------------------
1.3 v3.2024.1
Changes from 1.3 v8.2022.1:
- Fixed bytecode and metatable security issues.
- Discontinued the Lite version.
- My setup has been configured for the 2.0 release which is about as small as the Lite version. This means that I can no longer publish Lite versions.
---------------------------------------------------------------------------
1.3 Emergency Updates
---------------------------------------------------------------------------
Snapshot v24.8790.39939.1
Enhancements:
- Converted info.ini to the JSON format.
Fixes:
- Fixed a bug where the character doesn't load properly in 2012M.
---------------------------------------------------------------------------
EDGE Snapshot v24.8790.38411.1
Enhancements:
- Added a revamped Novetus Dependency Installer based off of NSIS that streamlines the installation of Novetus' dependencies.
- Replaced most INI and XML files with JSON files.
Fixes:
- Fixed a bug where selecting an Extra item in the Extras panel would be slightly broken when "Show Hats" is enabled.
- Fixed buggy item description behavior.
---------------------------------------------------------------------------
EDGE Snapshot v24.8786.38141.3
Fixes:
- Fixed ROBLOXian 2.0 being affected by.....the issue from the previous update. This is what happens if you use existing items as test items and never update them...
---------------------------------------------------------------------------
EDGE Snapshot v24.8786.38141.2
Fixes:
- Item SDK: Fixed some package part values being filled in rare instances.
---------------------------------------------------------------------------
EDGE Snapshot v24.8786.37407.1
Enhancements:
- Improved the Item SDK in regards to testing items.
- The Item SDK will no longer re-open the Character Customization panel if it's already open.
- The Item SDK will only turn off Item Editing if the category changes, and not when an item is saved.
- If the "Keep Loaded Item Options" box is checked, the Item SDK will keep all item options regardless of if a new item is loaded.
- Added support for the basic package system in the Item SDK.
Fixes:
- Fixed GoldenHair's brick being unlocked.
Items:
- ROBLOXian 2.0 (Extra)
- Blue Checkerboard (Shirt, Pants, T-Shirt)
- Purple Checkerboard (Shirt, Pants, T-Shirt)
- Source 1 Error (HL2 Version, Hat)
- Source 1 Error (P2 Version, Hat)
- Source 2 Error (Hat)
---------------------------------------------------------------------------
EDGE Snapshot v24.8785.40763.1
Enhancements:
- Play Solo now uses its own port (1027)
- Added extremely basic support for local packages in the Extra slot.
Fixes:
- Fixed a crash involving setting certain fields wrong in the Stylish Style.
- Fixed some clothing types not functioning in 2011 clients.
Items:
- Girl Torso (Extra)
---------------------------------------------------------------------------
EDGE Snapshot v23.8783.34531.1
Notes:
- This release was put out to address concerns from the itch.io forums about the pop-ups upon launching Novetus. As a result, this was posted as an article in the news posting for those interested in this update. The way these two features are handled will be streamlined in a later snapshot.
Enhancements:
- Novetus will no longer ask about the web proxy unless the user runs "proxy on" in the Novetus Console.
- Novetus will no longer ask about dependencies unless the user runs "dependencies" in the Novetus Console.
----------------------------------------------------------------------------
EDGE Snapshot v23.8770.30764.2
Fixes:
- Fixed the "Regen ID" buttons not working in the Stylish style.
----------------------------------------------------------------------------
EDGE Snapshot v23.8770.30096.1
Fixes:
- Fixed AwardBadge and HasBadge extension database names.
- Fixed 2010L's 3D Preview not working properly.
- Fixed the "Regen ID" buttons not working.
- Updated the Dependency Installer.
----------------------------------------------------------------------------
EDGE Snapshot v23.8745.28516.1
Enhancements:
- Play Solo now uses the current server port (defined in the Host menu.)
- This makes it easier to launch Play Solo on some computers.
- Novetus will now create basic _meta.ini files for games that have badges! They can then be filled out with correct information by map creators and archivists.
Fixes:
- Fixed the AwardBadge and HasBadge extensions not working properly.
- Fixed the Bootstrapper not showing the correct launcher version.
----------------------------------------------------------------------------
EDGE Snapshot v23.8731.28487.3
Fixes:
- The 3D Preview now works properly in 2006S.
- Fixed an issue with transparent Robloxians in 2007E-based clients in 3D Preview.
- Fixed the default launcher appearance not being correct.
- This should fix some issues for Wine and Proton users.
----------------------------------------------------------------------------
EDGE Snapshot v23.8731.25671.2
Fixes:
- Improved the look of the 3D Preview on later clients.
- Fixed various issues related to the 3D Preview.
- Novetus now detects more VC++ 2005 redistributable installations.
----------------------------------------------------------------------------
EDGE Snapshot v23.8731.22692.1
Enhancements:
- Play Solo now has its own dedicated server component, much like the original Roblox feature. This means scripts in Play Solo are far more accurate to how they're depicted in multiplayer sessions.
- Added the ability for the 3D Preview to use other clients.
- The Banhammer's animations in the 3D Preview can now be stopped mid frame. Hold down the left mouse button to play the animation. Let go of the left mouse button to stop the animation. Click and/or hold the left mouse button to switch to the next animation.
- Redid the default username generation as a response to privacy concerns.
- A term from a list of terms will be chosen, alongside a series of numbers.
- Improved Visual C++ dependency detection.
----------------------------------------------------------------------------
EDGE Snapshot v23.8728.23339.1
Enhancements:
- Novetus will now set your default username to your Windows user name.
- If you already have a name set in Novetus, it won't be changed, just for when you start Novetus for the first time.
Fixes:
- Fixed various issues with Novetus not loading the info.ini properly.
----------------------------------------------------------------------------
EDGE Snapshot v23.8728.22429.2
Fixes:
- Fixed missing clientinfo error on intital launch.
----------------------------------------------------------------------------
EDGE Snapshot v23.8724.27074.1
Enhancements:
- Added proper metatable protection on all affected clients. (2006S-2010L)
- Downgraded Novetus to .NET Framework 4.5.1 for better WINE/Proton compatibility.
- Added the ability for Novetus to detect if Visual C++ dependencies are installed.
- Credit to Matt from Sodikm for the code for this feature. :D
Fixes:
- Fixed issues with the new config system.
----------------------------------------------------------------------------
EDGE Snapshot v23.8700.30967.1
Notes:
- Novetus' license has switched to the GPL 3.0.
- 💙
Enhancements:
- Improved tripcode generation to fix various issues.
Fixes:
- Fixed tripcodes not working
- Disabled new security features in 2009E due to joining issues
Added 1 item:
Hats:
- Tales of the Spheres (Custom)
----------------------------------------------------------------------------
EDGE Snapshot v23.8544.14774.1
Enhancements:
- The Config System now has support for default values!
- Missing values will now be replaced with default values, making the system more reliable.
Fixes:
- The Award Badge API is now functional again.
----------------------------------------------------------------------------
EDGE Snapshot v23.8543.15186.1
Enhancements:
- Customization is now fixed and available.
- You may have to delete your config/config_customization.ini in order for Novetus to save the proper default settings.
Fixes:
- Fixed a bug where Hat #2 reports as Hat #1 in the character customization menu.
Known Issues:
- The Hair O' Snow will not work with clients below 2010L due to it being saved with version 2 instead of version 1.0.
----------------------------------------------------------------------------
EDGE Snapshot v23.8542.41029.1
Notes:
- This snapshot begins the introduction of EDGE builds, snapshots with heavily unpolished, work-in-progress features coming to Novetus. The EDGE features will be listed in each EDGE snapshot.
- Customization has been temporarily disabled for the time being. This snapshot was deployed to test the stability of the EDGE features listed below, and certain features were turned off to prevent further unstability.
EDGE features:
- Rewrote the config system.
- The config system will now save every edit done to fields.
- Saving configs will not work, as there is no way to manually save them due to the nature of the new system.
Enhancements:
- Removed ReShade integration due to issues with AMD cards.
- This change also removes the dlldelete setting command.
- Simplified command-line usage of the Novetus Console.
- Before, -cmdonly and -cmdmode were required before executing any other command line parameters. Now, only -cmdonly is required.
Items:
- Added a Contest Winner: Hair O' Snow by tobu.fi!
----------------------------------------------------------------------------
Snapshot v23.8482.17361.1
Enhancements:
- Slightly sped up asset loading times with the Web Proxy.
- Added the following Security changes to 2009E.
- Removed customization security check, as Appearance isn't a required security value.
- Removed a useless for loop in the kicking code.
- MD5 values and Tripcodes can no longer be modified by the server owner.
- Novetus now checks for string length for MD5s and Tripcodes.
Fixes:
- Fixed an issue where not all customization item types are saved automatically after seclection.
- Fixed a crash issue when joining a server on the same client instance.
----------------------------------------------------------------------------
Snapshot v23.8469.20669.1
Enhancements:
- Added clean_junk.bat to allow the user to quickly reset their Novetus install.
- The Asset Web Proxy extension now tries to download online assets for quicker asset loading on future map launches.
- Some older clients may take a long time to load assets regardless.
- Improved reliability under Wine.
- Enabled the use of commands in CMD mode.
- Changing any item or color in the customization menu will now automatically save the setting. No manual saving required!
- Added a note related to internet connection for the Web Proxy.
----------------------------------------------------------------------------
Snapshot v23.8428.35205.1
Notes:
- Updated the year number from 22 to 23 in the version number.
- Changed the release version numbering from v1.3 11.2022 to v11.22
- Changed the snapshot version numbering from 1.3 Snapshot v23.8415.37168.1 to Snapshot v23.8415.37168.1
- Novetus is still on branch v1.3.
Enhancements:
- Added the following Place Contest (Holiday 2022) entries:
- Zork and tobu.fi - Explosive Xmas
- Added support for HasBadge to the Web Proxy.
- Merged some static APIs into one extension.
- Restored the Help button functionality.
- All clients now work properly with the Web Proxy.
- Rearraged folder layout.
- Refactored the majority of the core codebase.
- Removed the following maps for containing hateful content:
- Lego's Race War Simulator
- Fixed the Mod Package Creator not being resizable.
- The Initial File List will now only be created in Novetus upon inital bootup.
- Added better Web Proxy extension management.
- Enabled Large Address Aware on all clients.
- Added Web Proxy support for online clothing.
- Clients can now be opened up multiple times, much like in older Novetus versions.
- Open servers will have their listings removed from the Master Server list
Fixes:
- Fixed a crash that happens in 2010L/2011E Play Solo upon calling AwardBadge.
- Fixed launcher DPI scaling.
- Fixed a potential security vulnerability with empty master server entries.
----------------------------------------------------------------------------
1.4 (originally 2.0)
----------------------------------------------------------------------------
1.3 Snapshot v22.8412.32591.1
Enhancements:
- Added badge support to the Web Proxy.
- The Easter Egg now loads up a server and a client, rather than loading a client in Play Solo mode.
- Further improved web proxy reliability.
Fixes:
- Fixed the previous splash not showing up after closing the Easter Egg.
- Fixed a bug where the Console could close Novetus with a client open.
----------------------------------------------------------------------------
1.3 Snapshot v22.8411.39962.1
Enhancements:
- Web Proxy Extension API additions:
- Added Author().
- Improved Web Proxy Extension loading and management.
- Improved the Console user experience.
- Added proxy extensions reload - Reloads all Web Proxy extensions.
- Added proxy extensions list - Lists all Web Proxy extensions.
Fixes:
- Fixed a bug that happens when the user manually stops the Web Proxy with the Console.
----------------------------------------------------------------------------
1.3 Snapshot v22.8408.16129.1
Enhancements:
- Changed the design of the Console to be more user friendly.
- Further improved web proxy and Console reliability.
Fixes:
- Fixed a bug involving clearing the Console.
----------------------------------------------------------------------------
1.3 Snapshot v22.8406.21589.1
Enhancements:
- Added the following functionality to the Web Proxy:
- Asset Redirection
- Various web pages.
Fixes:
- Fixed various stability issues with the Novetus Script Engine (used for Web Proxy Extensions).
- Improved the reliability and functionality of the Console when printing a large number of messages.
----------------------------------------------------------------------------
1.3 Snapshot v22.8405.19856.1
Enhancements:
- Added the Web Proxy!
- Novetus will now have a prompt on launch asking if the user would like to enable the web proxy. When pressing "Yes", the user will have to install the web proxy certificate on the next prompt. The initial prompt will only appear once.
- The proxy Console command is an additional way to turn on and turn off the web proxy.
- The Proxy is extendable with user scripts that enhance the client experience.
Fixes:
- Fixed a bug where resetting the config would close the console.
----------------------------------------------------------------------------
1.3 Snapshot v22.8391.14830.1
Notes:
- As of the current Novetus version, .NET Framework 4.0 is no longer the main framework running Novetus. Novetus now requires .NET Framework 4.8.
Enhancements:
- Updated required libraries.
- Made the itch.io app support more user friendly.
- Clarified the Server IP Address in the server information panel more clearly.
- Made the healthbar in 2011E more accurate.
- The Asset Fixer will now skip downloads of files with the same name.
- ClientScript gets a visual makeover, with more readable tags!
- Removed unnecessary ClientScript variables.
Fixes:
- Fixed bullets arcing in Rise of the Killbots (credits to Ae1ouRed)
- Remastered audio in Rise of the Killbots to be less loud.
- Renamed altserverip to altip to fix miscellaneous issues with it.
----------------------------------------------------------------------------
1.3 Snapshot v22.8342.20628.1
Enhancements:
- Added some of my original places from 2009-2011 as Novetus Exclusives!
- 2012M is now considered finished!
Fixes:
- Fixed the UI in the Extended style on the .NET Framework 4.8 version.
- Fixed issues in 2010L-2012M where assetdelivery URLs didn't function reliably.
----------------------------------------------------------------------------
1.3 Snapshot v22.8341.26380.2
Fixes:
- Fixed 2011M not being able to load.
- Fixed Dialogs not working in 2011E-2012M clients in multiplayer games.
----------------------------------------------------------------------------
1.3 Snapshot v22.8341.26380.1
Enhancements:
- Upgraded to .NET Framework 4.8!
- Note that .NET Framework 4.0 binaries will be provided upon release.
- Re-added 2012M.
- Dialogs are now visible in Studio in 2011E-2012M!
- "Dialogs will load, but are unusable. I'm assuming you're running Studio. If you're not, you may have to reinstall Novetus." - The Wise Novetus Studio Console Output.
- Novetus now has support for compressed BZip2 files for maps!
- All maps have been compressed.
- Novetus' console now prints out the outcome for Asset Fixer and Asset Downloader downloads.
Fixes:
- Fixed an issue where Dialogs didn't work in 2012M.
- Fixed an issue where Backpacks get wiped upon respawn in 2012M.
----------------------------------------------------------------------------
1.3 Snapshot v22.8337.30163.1
Enhancements:
- Added the following Place Contest (Halloween 2022) entries:
- Atomic - Spooking Out
- The Asset Fixer's Regex pattern is now accessible in config/assetfixer_pattern.txt.
- The console will now display exceptions whenever they happen.
Fixes:
- Fixed the Asset Fixer incorrectly removing end quotes in scripts. (")
----------------------------------------------------------------------------
1.3 Snapshot v22.8327.19048.1
Notes:
- Cut 2012M temporarily to focus on fixing bugs for the next update's release.
Enhancements:
- Redesigned the Custom Graphics Settings window to be smaller.
- The Custom Graphics Settings button is now disablued UNTIL the user selects custom graphics quality.
- Added a note about ReShade's system requirements.
Fixes:
- Fixed the Oh Noes hat's collision model.
Items:
T-Shirts:
- Added buildermanShirt.png
----------------------------------------------------------------------------
1.3 Snapshot v22.8300.22254.1
Notes:
- Re-implemented the old 2012M backpack scripts.
- 2012M is now in the Beta stage.
Fixes:
- Fixed the Asset Fixer not processing some links correctly.
----------------------------------------------------------------------------
1.3 Snapshot v22.8297.27455.1
Enhancements:
- Added the ability to install Addon Scripts with the "Install Mod Package" feature.
- Changed the look of the Versions tab in Stylish.
Fixes:
- Fixed the Novetus Console not exiting when the client is closed.
----------------------------------------------------------------------------
1.3 Snapshot v22.8297.22678.1
Enhancements:
- Added most NovetusCMD server command line parameters to the Novetus Console.
- The NovetusCMD is now considered deprecated and unsupported.
- Added %server% - Returns the full server string with IP:Port.
- IP and Port are now 1 value.
- When just pasting an IP in the Server Address field, the default Novetus port will be applied automatically.
- Changed the design of the launcher forms for better ease of use.
- Added -join <IP:Port. Port is optional.> | Client Only. Specifies the server for the Client to connect to.
Fixes:
- Fixed a bug where required config files didn't get created when loading Novetus without the console.
- Fixed the launcher and console feeling slow and sluggish.
----------------------------------------------------------------------------
1.3 Snapshot v22.8296.19696.1
Fixes:
- Fixed an issue where Discord, UPnP and other features wouldn't work without the console.
----------------------------------------------------------------------------
1.3 Snapshot v22.8296.19413.1
Enhancements:
- You may now specify a custom folder name for assets to download to with the Asset Fixer!
- Redesigned the Asset Fixer to be easier to use.
Fixes:
- Fixed an issue where the Asset Fixer wouldn't be able to replace or fix some links.
- Fixed an issue where the SDK would load with an error if the console is generating the initial file list.
----------------------------------------------------------------------------
1.3 Snapshot v22.8296.15106.1
Enhancements:
- Novetus Console now doesn't load with the Novetus launcher by default via the bootstrapper/legacy launcher.
- Added -nocmd to launch the launcher without the Novetus Console.
Fixes:
- Fixed an issue where you couldn't respawn in 2009L Play Solo.
- Updated the Legacy Launcher.
- Fixed an issue where Novetus was using abnormal CPU usage.
----------------------------------------------------------------------------
1.3 Snapshot v22.8293.20101.1
Enhancements:
- Added the following Place Contest (August 2022) entries:
- Lachrymogenic - Lachrys Disorderly Deathmatch
- Added a new Rise of the Killbots map: Haunted Mansion!
- Added NovetusCMD mode to the Novetus Console.
- You are now able to launch any client script type! See the help list for info.
- Added the "clear" command to the Novetus Console.
- Changed the Novetus Console font.
Fixes:
- Fixed a bug where -nofilelist couldn't be used.
- Removed commands used in previous versions of the Novetus Console.
----------------------------------------------------------------------------
1.3 Snapshot v22.8292.27609.1
Notes:
- The Novetus/Roblox soundtrack has been removed to respect the rights of the original copyright holders.
Enhancements:
- Re-added and updated 2009L!
- Thanks to MenderMan and Coke/Natalie for fixes!
- Made exception logging less verbose.
- The launcher now has a new standalone console!
- Made the Stylish interface less confusing and easier to navigate.
- Changed the "Settings" button to read "Graphics Settings".
Fixes:
- Fixed a design mistake on the Extended Style.
- Fixed Universal - Haunted Mansion not working properly (Credits to MenderMan)
----------------------------------------------------------------------------
1.3 Snapshot v22.8288.28158.1
Enhancements:
- Reverted the safechat.xml in all clients to the original version distributed in each client for accuracy reasons.
- Fixed an exploit where players were able to inject places into online games.
----------------------------------------------------------------------------
1.3 Snapshot v22.8288.23564.2
Fixes:
- Clarified the %generatescript% documentation.
- Fixed a certain easter egg not working.
----------------------------------------------------------------------------
1.3 Snapshot v22.8288.23564.1
Enhancements:
- Added the following Place Contest (August 2022) entries:
- Zork - Bowlarama
- Added the following plugins from early versions of 2012 to 2012M:
- Time of Day
- Input Info
- Plateaus
- Orbs
- Moved all additional 2012M plugins into a seperate plugin folder (novetusadditions)
- Novetus now uses a baseplate as its default place when launching Studio with no map.
- Added %generatescript% - Allows non-2007 clients to generate scripts. Equivalent to the "Generate scripts and fix map loading for 2007/2012+" option.
- The ClientScript Tester will use this for testing purposes.
Fixes:
- Fixed an issue where assetdelivery links wouldn't work well with the Asset Fixer or other SDK tools that use downloading.
- Fixed a few grammatical errors with the Asset Fixer.
----------------------------------------------------------------------------
1.3 Snapshot v22.8282.21847.1
Enhancements:
- Added the following Place Contest (August 2022) entries:
- Ironman_45 - MW2
- Added the ability to skip the Bootstrapper on the next Novetus launch.
- To re-enable the Bootstrapper, set BootstrapperShowUI to True in config/config.ini.
Fixes:
- Fixed issues with regenerating structures in Universal - Crossroads.
----------------------------------------------------------------------------
1.3 Snapshot v22.8272.20133.3
Enhancements:
- Improved the Media Feature Pack/Windows Media Player installation instructions in the Dependency Installer.
- Added the Flood Fill plugin from later versions of 2012 to 2012M.
Fixes:
- Fixed 2012M zooming out the camera upon the first player respawn.
----------------------------------------------------------------------------
1.3 Snapshot v22.8272.20133.2
Fixes:
- Fixed texture issues with OpenGL Stable in 2009E-HD
- Lowered the volume of the jump sound in 2009E-HD
- Fixed the Sapphire Eye not loading properly.
----------------------------------------------------------------------------
1.3 Snapshot v22.8272.20133.1
Enhancements:
- Added a notice to the settings panel regarding clients that need a secondary restart after applying settings.
Fixes:
- Fixed Truss Detail settings not working.
- Switched to the 2011M corescripts to get weapon selection working in 2012M.
- Note that the extended backpack UI still doesn't function. If anyone finds a solution, let me know.
----------------------------------------------------------------------------
1.3 Snapshot v22.8270.18357.1
Enhancements:
- Added an alpha 2012M client!
- NOTE: this client is VERY experimental and a WIP. It may be removed at any time for any reason.
- You can now change the "blank" place that loads up when studio loads with no map. Just replace "Place1.rbxl" in the config folder with one of your choice!
Fixes:
- Fixed -outputinfo not functioning without -debug being enabled.
----------------------------------------------------------------------------
1.3 Snapshot v22.8268.17854.1
Enhancements:
- Made the Novetus URI Player Configuration UI more user friendly.
- You can now skip the Novetus URI Player Configuration menu. Click "Don't Show Again" to make it stop showing up upon joining a server URI.
- To re-enable the Novetus URI Player Configuration menu, set URIQuickConfigure to True in config/config.ini.
- You can now press the tilde (` and ~) key in the Extended and Compact styles to get easy access to the Console.
Fixes:
- Fixed an issue where 2010L kicks players after rejoining.
- Removed "TEST" text in the Console on the Compact style.
- Fixed the Novetus URI not properly closing after an error.
----------------------------------------------------------------------------
1.3 Snapshot v22.8259.17635.1
Fixes:
- Made it so Novetus closes any open client process after 1 minute of not showing a window
- This should fix issues with older clients staying open in the background after closing.
----------------------------------------------------------------------------
Pre-1.4 (originally 2.0)
----------------------------------------------------------------------------
1.3 v8.2022.1
Changes from 1.3 v6.2022.1:
Notes:
- If you want to use the new Mod Package Creator for the first time, make sure to use a clean, unmodified Novetus install. Any installed mods before this update will not show up in the Mod Package Creator if you install this update on top of a previous Novetus version.
- Add the list.php and delist.php files to your master server if you would like to support future 1.3 versions.
- The query.php file is now deprecated, but it is still under the original GPL v3 license. Do NOT expect any updates for it.
Enhancements:
- Novetus will now switch to the Extended style by default under Wine due to the lack of proper WPF support.
- Logs are now stored in the "logs" directory.
- Removed the Novetus Asset Redirect due to the hosting provider taking it down.
- Removed the "Show Item Types" option from the Asset Fixer as it was deprecated by the Item SDK.
- Added better Asset Fixer error handling.
- The Asset Fixer will now show up as "ASSETFIX" in the logs if there is an error.
- Every client now has support for custom addon scripts!
- Addon scripts can extend Novetus functionality with the Novetus Scripting API, or just be basic scripts
- Add addon scripts to the addons folder. Add them to addons/core/AddonLoader.lua for your addons to load properly.
- Client side scripts are unsupported due to security issues. Scripts will only execute serverside, or in Play Solo and/or Studio modes.
- The old -script command line argument in NovetusCMD and the ClientScript variable %addonscriptpath% have both been removed to support this.
- Look in the addons/Addon_Template.lua file for more info on how to create your addon script!
- Addon Scripts that are pre-installed and loaded:
- Utils - Prints the name of the currently running client and script in a Lighting object.
- ShadersCompatibility - Allows 2007E, 2007M, 2006S and 2009E to connect to servers running alternate versions (Shaders, HD, etc) and vice versa.
- ServerWhitelist - Makes it so users' tripcodes have to be added to a whitelist before joining a server. Disabled by default.
- 2008M no longer uses OpenGL Legacy as the default graphics mode.
- The Asset Fixer and Legacy Place Converter will now show errors when loading a binary format place/model.
- The Legacy Place Converter now can load RBXMX, RBXL, and RBXM file types.
- The Asset SDK is now split up into 3 utilities:
- Mesh Converter
- Asset Fixer
- Asset Downloader
- The Asset Downloader's batch feature now shows the overall size of all items downloaded at the end of the download.
- Addon Packages are now renamed to Mod Packages to make differentiating them from Addon Scripts easier.
- Added the Mod Package Creator! Create compressed .zip files of new items, maps, and more and share them with the community!
- This adds a new file list file that gets created upon initial launcher bootup. Use the -nofilelist command line option to disable the launcher's file list creation if Novetus takes a while to load initially (will make the Mod Package Creator basically unusable).
- Made Master Server ping messages more verbose.
- Improved the stability of master server pings.
- The Master Server has been split into 2 files: list.php and delist.php
- Backwards compatibility has been added for master servers only using query.php. Master Server owners should still move to the new list/delist.php system for optimal security.
- Each server now has a randomly generated ID that is only visible to the server host (in the console) and the master server host (in serverlist.txt)
- IDs will become visible in the Console in some Novetus launcher styles and NovetusCMD.
Fixes:
- Made the initial Asset Fixer "Unable to fix the asset." error message more descriptive.
- Rewrote the Asset Fixer, fixing many issues with downloading place assets and accessibility.
- The Asset Fixer now doesn't override the URL of items when an error is brought up.
- Fixed 2010L server joining not working.
- Fixed 2007E based clients not loading all customized parts properly.
- Fixed master server pings making the launcher/CMD unresponsive.
- Rise of the Killbots: Fixed bullets not disappearing after a specified amount of time, causing some optimization issues (https://itch.io/t/2277693/issues-with-bullets-in-rise-of-killbots)
----------------------------------------------------------------------------
1.3 Snapshot v22.8253.19867.1
Enhancements:
- Added backwards compatibility for master servers only using query.php. Master Server owners should still move to the new list/delist.php system.
- Sped up the asset fixing process with the Asset Fixer.
- The asset fixer will now report the progress on actual asset links.
Fixes:
- Fixed master server pings making the launcher/CMD unresponsive.
- Fixed URL parsing in the Asset Fixer.
----------------------------------------------------------------------------
1.3 Snapshot v22.8251.28463.2
Fixes:
- Replaced numeric IDs and with string IDs. (composed of a random string + random number)
----------------------------------------------------------------------------
1.3 Snapshot v22.8251.26754.1
Notes:
- Add the list.php and delist.php files to your master server if you would like to support future 1.3 versions.
- The query.php file is now deprecated, but it is still under the original GPL v3 license. Do NOT expect any updates for it.
Enhancements:
- The initial file list for the Mod Package Creator now checks if all lines are created on the file.
- The initial file list now generates when launching the SDK if one is not generated already.
- Added the -nofilelist command line option to disable the launcher's file list creation on slower computers (will make the Mod Package Creator basically unusable on first load)
- Added a new default addon: the Server Whitelist!
- On servers, the Server Whitelist will kick other players that do not have their tripcodes in the whitelist.
- This plugin is disabled by default, so the server host will have to enable it manually if they wish to enable this feature.
- Made Master Server ping messages more verbose.
- Improved the stability of master server pings.
- The Master Server has been split into 2 files: list.php and delist.php
- Each server now has a randomly generated ID that is only visible to the server host (in the console) and the master server host (in serverlist.txt)
----------------------------------------------------------------------------
1.3 Snapshot v22.8245.27180.1
Notes:
- If you want to use the new Mod Package Creator for the first time, make sure to use a clean, unmodified Novetus install. Any installed mods before this update will not show up in the Mod Package Creator if you install this update on a previous Novetus version.
Enhancements:
- Re-implemented the progress bar/status text to the Asset Fixer.
- The Asset Fixer and Legacy Place Converter will now show errors when loading a binary format place/model.
- The Legacy Place Converter now can load RBXMX, RBXL, and RBXM file types.
- The Asset SDK is now split up into 3 utilities:
- Mesh Converter
- Asset Fixer
- Asset Downloader
- The Asset Downloader's batch feature now shows the overall size of all items downloaded at the end of the download.
- Addon Packages are now renamed to Mod Packages to make differentiating them from Addon Scripts easier.
- Added the Mod Package Creator! Create compressed .zip files of new items, maps, and more and share them with the community!
----------------------------------------------------------------------------
1.3 Snapshot v22.8222.20490.3
Enhancements:
- Added support for multiple addon scripts!
- Thanks to BRAVONATCHO for the idea on how to implement this!
- Added 2 functions to the scripting API.
- OnPrePlayerKicked
- Update
- 2008M no longer uses OpenGL Legacy as the default graphics mode.
- You can now join normal 2007 servers with Shaders clients (and vice versa)!
- Added the ability to view client name, and script type in game.Lighting.
- Added the ability to view server time in game.Lighting.
Fixes:
- Fixed 2010L server joining not working.
- Fixed 2007E based clients not loading all customized parts properly.
----------------------------------------------------------------------------
1.3 Snapshot v22.8222.20490.2
Enhancements:
- Added a Novetus Scripting API!
- Look in the addons/Addon_Template.lua file for more info!
----------------------------------------------------------------------------
1.3 Snapshot v22.8222.20490.1
Enhancements:
- Every client now has support for custom addon scripts!
- Install it to clients/[Client Name]/content/scripts/addon.lua.
- Client side scripts are unsupported due to security issues. Scripts will only execute serverside, or in Play Solo and/or Studio modes.
- The old -script command line argument in NovetusCMD and the ClientScript variable %addonscriptpath% have both been removed to support this.
----------------------------------------------------------------------------
1.3 Snapshot v22.8220.23140.1
Enhancements:
- Novetus will now switch to the Extended style by default under Wine due to the lack of WPF support.
- Logs are now stored in the "logs" directory.
- Removed the Novetus Asset Redirect due to the hosting provider taking it down.
- Removed the "Show Item Types" option from the Asset Fixer as it was deprecated by the Item SDK.
- Added better Asset Fixer error handling.
- The Asset Fixer will now show up as "ASSETFIX" in the logs if there is an error.
Fixes:
- Made the initial Asset Fixer "Unable to fix the asset." error message more descriptive.
- Rewrote the Asset Fixer, fixing many issues with downloading place assets.
- The Asset Fixer now doesn't override the URL of items when an error is brought up.
----------------------------------------------------------------------------
1.3 v6.2022.1:
Changes from 1.3 v2.2022.1:
Enhancements:
- The following maps are now converted to Universal places:
- 2006 - Pirate Ship
- 2008 - ROtris
- 2008 - Grow a Brick
- 2008 - Roblox HQ 2.0
- 2008 - The Undead Coming v1.2
- 2009 - Fall Down the Stairs XMAS VERSION
- 2009 - Iron Cafe
- 2010 - ROBLOX Arcade
- 2012 - Script Builder
- 2010 - ROBLOX's Skate Park
- Added more download error information to the Asset SDK to help fix potential errors in files.
- Added the ability to sign scripts.
- There are 2 ways to sign scripts, use the new ClientScript variables for generated join scripts, or use the File -> Sign Script Manually (For Modern Clients) option.
- The generated key files are stored in the same path as the script file, so using the same key is viable.
- New ClientScript variables:
- %signgeneratedjoinscript% - Signs the generated join script if "Generate scripts and fix map loading for 2007/2012+" is enabled.
- %usenewsignformat% - for %signgeneratedjoinscript%, uses the new client signature format found on newer clients.
- %useloadfile% - Uses the "loadfile" function instead of "dofile" for generated join scripts if "Generate scripts and fix map loading for 2007/2012+" is enabled.
- %userbxassetforgeneration% - When "Generate scripts and fix map loading for 2007/2012+" is enabled, use "rbxasset" as the main path we should get the file from.
- Server hosters and map authors may now insert a "DisableRespawns" object into Lighting that will disable player respawns. DisableRespawns may also be removed to re-enable respawning.
- Added better Bootstrapper error handling.
- Made config saving more reliable on initial startup.
Fixes:
- Fixed a bug where Novetus wouldn't load configs due to a issue from the splash system.
- Fixed Rocket HopperBins in 2006S.
- Fixed errors with script fixing.
- Fixed the Asset Fixer not functioning properly with asset redirects.
- Fixed Universal - Ultimate Build not loading properly.
----------------------------------------------------------------------------
1.3 Snapshot v22.8105.20619.3
Fixes:
- Fixed Rocket HopperBins in 2006S.
----------------------------------------------------------------------------
1.3 Snapshot v22.8105.20619.2
Fixes:
- Fixed broken assets for all new Universal places.
- Fixed more errors with the Asset Fixer.
----------------------------------------------------------------------------
1.3 Snapshot v22.8105.19446.1
Enhancements:
- The following maps are now converted to Universal places:
- 2006 - Pirate Ship
- 2008 - ROtris
- 2008 - Grow a Brick
- 2008 - Roblox HQ 2.0
- 2008 - The Undead Coming v1.2
- 2009 - Fall Down the Stairs XMAS VERSION
- 2009 - Iron Cafe
- 2010 - ROBLOX Arcade
- 2010 - ROBLOXs Skate Park
- 2012 - Script Builder
- Added more download error information to the Asset SDK to help fix potential errors in files.
Fixes:
- Fixed errors with script fixing.
----------------------------------------------------------------------------
1.3 Snapshot v22.8103.32684
Fixes:
- Fixed the Asset Fixer not functioning properly with asset redirects.
----------------------------------------------------------------------------
1.3 Snapshot v22.8100.20815
Enhancements:
- Added the ability to sign scripts.
- There are 2 ways to sign scripts, use the new ClientScript variables for generated join scripts, or use the File -> Sign Script Manually (For Modern Clients) option.
- The generated key files are stored in the same path as the script file, so using the same key is viable.
- New ClientScript variables:
- %signgeneratedjoinscript% - Signs the generated join script if "Generate scripts and fix map loading for 2007/2012+" is enabled.
- %usenewsignformat% - for %signgeneratedjoinscript%, uses the new client signature format found on newer clients.
- %useloadfile% - Uses the "loadfile" function instead of "dofile" for generated join scripts if "Generate scripts and fix map loading for 2007/2012+" is enabled.
- %userbxassetforgeneration% - When "Generate scripts and fix map loading for 2007/2012+" is enabled, use "rbxasset" as the main path we should get the file from.
- Added better Bootstrapper error handling.
- Made config saving more reliable on initial startup.
----------------------------------------------------------------------------
1.3 v2.2022.1
Changes from v12.2021.2:
Enhancements:
- All places will now use the Novetus asset redirect.
- All assets are now fixed on places.
- Note that some places may crash Novetus. Let Bitl know on the Discord server or the Forums if such crashes occur.
- The Asset Fixer in the asset SDK now properly shows an error when an invalid file (i.e, a modern Roblox place file) is loaded.
Added items:
Hats:
- Snowman Teapot
- 2012 Roblox Visor
- 2012 Roblox Visor (Original)
Fixes:
- Fixed characters not loading up in medium to large size maps in 2011E and 2011M.
- Fixed the Wintertime R&R&R Hoodie being the TBC hoodie.
- Remade the Blue Flame Jacket's texture from scratch as the original was broken.
Misc:
- Removed epicgamers.xyz from the Content Providers as it is no longer functional.
- Rise of the Killbots: Reverted Killbot behaviors to how they were in 1.3 v11.2021.1.
- Added a background image behind the character shown in the color select screen in the Stylish style.
- The background image is replaceable by changing the image in bin/data to something else.
----------------------------------------------------------------------------
1.3 v12.2021.2
Changes from v12.2021.1:
Enhancements:
- The "dlldelete" console command now toggles the setting instead of 2 seperate commands.
- Added 1 new command:
- altserverip <IP> - Sets the alternate server IP for server info. Replace <IP> with your specified IP or specify 'none' to remove the current alternate server IP.
- Improved the functionality of some commands.
- Renamed the Item Creation SDK to the Item SDK.
- The "Keep Loaded Item Options" option will now be turned off when switching item types in the Item SDK.
- The Item SDK will now reload the created item on creation.
- Added refresh buttons for hat meshes and textures in the Item SDK.
- You can now enable or disable the visibility of item types in the Asset Fixer.
- You many now give downloaded RBXM/RBXL assets a name in the Asset SDK.
Added items:
Hats:
- Witch Hat
- Halloween Lampshade
- Red Paintball Mask
- Blue Paintball Mask
- Snowman Headrow
- Heat Vision Goggles
- Frost Vision Goggles
- Spartan Helmet
- Tixplosion
- Buxsplosion
T-Shirts:
- Shadow Dragon
- Spread The Lulz!
- "WHOA" Administrator Badge
- Do The Brew!
Faces:
- ZOMG
- Classic Vampire
- Eyes of Crimsonwrath
- Eyes of Azurewrath
- Eyes of Emeraldwrath
Fixes:
- Fixed the Lampshade having a Force Field.
- Fixed a bug where new items wouldn't be loaded properly in the Item Creation SDK after resetting or reloading the current item.
- The Item Creation SDK will no longer center when changing item settings.
- Fixed character customization not working properly with Wine (Credits to man-of-eel in pull request #33, a different implementation was added).
- Fixed the "studio" and "server" commands.
- Fixed the Asset Fixer not working with some assets.
Misc:
- Removed the custom font from the Novetus Bootstrapper as it was causing errors on some Windows 11 systems.
Lite version changes:
- Restored 2007M and 2008M to the Lite version based on community feedback.
----------------------------------------------------------------------------
1.3 v12.2021.1
Changes from v11.2021.1:
New Features:
- The Asset SDK Asset Localizer is now known as the Asset Fixer!
- Added the ability to "fix" all asset URLs by changing them to a URL of your choice!
- The Asset SDK's Asset Fixer now properly supports fixing the URLs inside of scripts.
- Added T-Shirt support to 2007E/2007E-Shaders.
- T-Shirts with Roblox Asset URLs/Redirects are not supported due to 2 issues with 2007e: Roblox Asset URLs/Redirects do not work properly in 2007E if it's a texture and using anything to get the current texture value for a ShirtGraphic or Decal returns a "bad cast" error.
- As a result, T-Shirts with Roblox Asset URLs/Redirects will not load in 2007e.
- Added ClientScript Variables:
- %tshirttexid%, %shirttexid%, %pantstexid%, %facetexid% - Returns the texture URL for the respective online clothing type. Returns nothing if the URL is invalid, the item isn't using Online Clothing, or %localizeonlineclothing% is not defined in the script.
- %tshirttexidlocal%, %shirttexidlocal%, %pantstexidlocal%, %facetexlocal%" - Returns the texture rbxasset URL for the respective online clothing type. Returns nothing if the URL is invalid, the item isn't using Online Clothing, or %localizeonlineclothing% is not defined in the script. Only the client who downloads the clothing would be able to see it.
- %localizeonlineclothing% - Grabs texture IDS for the %texid% variables and localizes the texture for the %texidlocal% variables. This WILL increase load times of your client depending on how many items are being downloaded.
- %newgui% - Returns if the 2011L interface is enabled on 2011M clients. Can be used as a toggle switch for other client-side CoreScript features.
- Users may now use a image URL to load custom icons.
- Icons loaded from a URL will show up for all players.
- Added the ability to assign a custom client EXE name in the Client SDK.
- Server hosters and map authors may now insert a "DisableCustomization" object into Lighting that will disable player customizations. DisableCustomization may also be removed to re-enable player customizations.
- 2011M's GUI is now more accurate to when it released (Mid June 2011).
- You can re-enable the previous GUI by going into Novetus' settings.
Enhancements:
- The Bootstrapper now creates error logs of its own.
- Added an additional warning about certain GUI elements being disabled in later clients when No3D is selected.
- Novetus no longer requires the Script MD5 when generating a clientinfo.nov.
- Placed the %port% ClientScript variable into the Server category.
- The server browser no longer requires a server to be the same exact version as the current running version of Novetus.
- 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.
- Novetus now bases your tripcode off of your computer's hardware information. (Powered by https://github.com/davcs86/csharp-uhwid)
- The Client SDK now has specific version numbers for each clientinfo version.
- Made the Client Description and Warning fields larger in the Client SDK.
- The Client Description field now resizes with the rest of the Client SDK window.
- 2006S and 2006S-Shaders now use "PlayerHopper" instead of "Backpack" for compatibility with 2006 levels.
- All customization items are now named properly in 2006S-2007M.
- Studio can now be launched alongside other game types and clients.
- Universal maps are now categorized based on client optimizations.
- Clearing asset cache now properly clears the folder.
- Rise of the Killbots: The Killbots' behaviors will now more accurately depict the Killbots from Rise of the Killbots: MEMORY ERROR.
- Added the ability to reset graphics settings.
- Pressing the ESC key in 2011M with the 2011L UI on will open up the main menu.
- Disabled Server Notifications by default.
- Added 2009E-HD's rocket launcher to the 3D Avatar Preview.
Fixes:
- Fixed the URL Override box in the Asset SDK not being functional.
- Fixed logging for most Novetus applications.
- Fixed a bug in all clients where kicking a player would kick the entire server.
- Fixed a crash that occured in 2010L after kicking a player.
- Fixed small decoding issues with the splash system.
- Fixed the Stylish interface not showing a warning when hosting a seperate master server.
- Fixed the Stylish interface not pinging the master server.
- Fixed some clients not functioning properly with Wine (Credits to man-of-eel in pull request #27).
- Fixed small issues with tripcodes.
- Fixed a bug where Novetus would switch the style to Stylish even after saving.
- Fixed compatibility with 1.2.3 clientinfo.nov files in the Client SDK.
- Fixed Santa's Winter Stronghold.
- Fixed missing assets in some Universal maps.
- Fixed the config overriding values whenever there's an error.
- If a value is detected as an error, it will be overriden with the defaults.
- Fixed a bug where the Play and Versions tabs can be filled up with repeated entries in the Stylish style.
Lite version changes:
- Removed the following clients:
- 2007M
- 2008M
- Client Script Tester
- Removed the following SDK tools:
- Roblox Legacy Place Converter
- Roblox Script Generator
- Client Script Tester
- Removed .NET Framework 2.0 dependency.
- Removed the soundtrack.
----------------------------------------------------------------------------
Post 1.3
----------------------------------------------------------------------------
1.3 v11.2021.1
Changes from Pre-Release 5:
- The server hosting panel is closed by default in the Stylish view. You must now click "Server" if you want to edit hosting settings and launch a server.
- Moved the customization button to somewhere where it's more pronounced.
- Fixed file moving. Again.
- Fixed a bug where the map file doesn't properly reset if it doesn't exist.
- Fixed a bug where the style would reset back to the Stylish style if the map didn't exist.
- Added Server Information functionality to the Stylish style.
- The launcher and Novetus CMD will now ping the master server upon server closure.
- Added 2 new command line arguments to Novetus CMD: