From 6e311f07ba0bdf372efa78dcbf703346e2ebb2d0 Mon Sep 17 00:00:00 2001 From: stuartt_mcoded <34777184+RealMCoded@users.noreply.github.com> Date: Sun, 7 Aug 2022 23:49:19 -0400 Subject: [PATCH] Versioning! --- objects/obj_menusystem_PC/Draw_64.gml | 2 +- rooms/init/RoomCreationCode.gml | 2 ++ scripts/macros/macros.gml | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/objects/obj_menusystem_PC/Draw_64.gml b/objects/obj_menusystem_PC/Draw_64.gml index ee40367..407b9a1 100644 --- a/objects/obj_menusystem_PC/Draw_64.gml +++ b/objects/obj_menusystem_PC/Draw_64.gml @@ -13,7 +13,7 @@ for(var i=0; i < menuRange+1; i++) { draw_text_color(x, y, daopt, c_white, c_white, c_white, c_white, 1) -draw_text(16, 16, "ProgressGML95 - Recreation created by stuartt_mcoded. Original game created by icoeye.\nBuild Date: " + date_date_string(GM_build_date) + " " + date_time_string(GM_build_date)) +draw_text(16, 16, "ProgressGML95 - Recreation created by stuartt_mcoded. Original game created by icoeye.\n" + "Version " + version + " - Build Date: " + date_date_string(GM_build_date) + " " + date_time_string(GM_build_date)) draw_set_halign(fa_center) draw_text(room_width/2, 640, "Game install location: " + global.installLocation + "\n\n[DEL] Reset location") diff --git a/rooms/init/RoomCreationCode.gml b/rooms/init/RoomCreationCode.gml index 241e262..0116bb8 100644 --- a/rooms/init/RoomCreationCode.gml +++ b/rooms/init/RoomCreationCode.gml @@ -60,4 +60,6 @@ global.font[1] = font_add(global.installLocation + "\\Fonts\\progresspixel.ttf", #endregion +window_set_caption("ProgressGML95 [" + version + "]") + room_goto_next() \ No newline at end of file diff --git a/scripts/macros/macros.gml b/scripts/macros/macros.gml index 5034588..2fa59f5 100644 --- a/scripts/macros/macros.gml +++ b/scripts/macros/macros.gml @@ -1,2 +1,2 @@ #macro DEBUG debug_mode -#macro version "dev.0.0.1" \ No newline at end of file +#macro version "pre-alpha-10" \ No newline at end of file