We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a993d75 commit 8c7a27bCopy full SHA for 8c7a27b
scripts/draw_window_update/draw_window_update.gml
@@ -41,10 +41,10 @@ function draw_window_update() {
41
42
// Refresh changelog button (debug)
43
if (RUN_FROM_IDE != 1) {
44
- if (draw_button2(x1 + 500 - 144 - 16, y1 + 8, 72, "Open file")) {
+ if (draw_button2(x1 + 500 - 144 - 16, y1 + 8 + 24, 72, "Open file")) {
45
open_url(data_directory + "changelog.txt");
46
}
47
- if (draw_button2(x1 + 500 - 72 - 8, y1 + 8, 72, "Refresh")) {
+ if (draw_button2(x1 + 500 - 72 - 8, y1 + 8 + 24, 72, "Refresh")) {
48
changelogstr = load_text(data_directory + "changelog.txt");
49
50
@@ -58,6 +58,9 @@ function draw_window_update() {
58
draw_text_dynamic(x1 + 32, y1 + 32, "感谢你更新到 " + version + " 版本!")
59
60
61
+ if (language != 1 && draw_button2(x1 + 500 - 120 - 8, y1 + 8, 120, "Watch release video")) {
62
+ open_url("https://bit.ly/NBS311_video");
63
+ }
64
draw_area(x1 + 16, y1 + 58, x1 + 487 + theme_offset, y1 + 357)
65
n = string_count("\n", fullstr)
66
for (a = 0; a < n; a += 1) {
0 commit comments