You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (window = w_update) draw_text(x1 + 32, y1 + 32, "Thank you for upgrading to version " + version + "!")
11
11
fullstr = ""
12
+
fullstr += "Changes in v3.5.2 (2019.08.06):\n* NBS format updated to version 3. Now stores song length again\n\n"
12
13
fullstr += "Changes in v3.5.1 (2019.07.14):\n* Fixed MIDI Import crash\n\n"
13
14
fullstr += "Changes in v3.5.0 (2019.07.11):\n* Added Stereo.\n* Stereo added to Datapack Export.\n* Improved MIDI import, again.\n* Added settings to enhance performance.\n New sprites for note blocks in the dark theme.\n\n"
14
15
fullstr += "Changes in v3.4.0 (2019.05.11):\n* Added dark theme.\n* Datapack export: added option to let nearby players hear your music too.\n* Improved MIDI import.\n* NBS format now stores its version for future proofing. This means that\n songs made here can't be opened in older versions of Note Block Studio.\n\n"
Copy file name to clipboardExpand all lines: scripts/load_song/load_song.gml
+10-5Lines changed: 10 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -25,14 +25,19 @@ if (file_ext = ".nbs") {
25
25
byte2 = buffer_read_byte()
26
26
27
27
if(byte1 = 0 && byte2 = 0){
28
-
song_nbt_version = buffer_read_byte()
29
-
ifsong_nbt_version < nbt_versionmessage("Warning: You are opening an older NBS file. Saving this file will make it incompatible with older Note Block Studio versions.","Warning")
30
-
ifsong_nbt_version > nbt_versionmessage("Warning: You are opening an NBS file created in a later version of Note Block Studio. It may crash when opening.","Warning")
28
+
song_nbs_version = buffer_read_byte()
29
+
ifsong_nbs_version < nbs_versionmessage("Warning: You are opening an older NBS file. Saving this file will make it incompatible with older Note Block Studio versions.","Warning")
30
+
ifsong_nbs_version > nbs_versionmessage("Warning: You are opening an NBS file created in a later version of Note Block Studio. It may crash when opening.","Warning")
0 commit comments