Skip to content

Commit 7a87425

Browse files
committed
fix: add definitive release trailer video links
1 parent 6ce3ed2 commit 7a87425

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

scripts/draw_window_update/draw_window_update.gml

+6-2
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,12 @@ function draw_window_update() {
5858
draw_text_dynamic(x1 + 32, y1 + 32, "感谢你更新到 " + version + " 版本!")
5959
}
6060
}
61-
if (language != 1 && draw_button2(x1 + 500 - 120 - 8, y1 + 8, 120, "Watch release video")) {
62-
open_url("https://bit.ly/NBS311_video");
61+
if (draw_button2(x1 + 500 - 120 - 8, y1 + 8, 120, language != 1 ? "Watch release video" : "观看更新视频")) {
62+
if (language != 1) {
63+
open_url("https://youtu.be/gya4NAQunEc");
64+
} else {
65+
open_url("https://www.bilibili.com/video/BV1qWq9Y2ESX/");
66+
}
6367
}
6468
draw_area(x1 + 16, y1 + 58, x1 + 487 + theme_offset, y1 + 357)
6569
n = string_count("\n", fullstr)

0 commit comments

Comments
 (0)