This commit is contained in:
Tanasart 2022-12-23 13:02:49 +07:00
parent 1f821fbab5
commit 80f4a40e92
6 changed files with 9 additions and 9 deletions

View File

@ -59,7 +59,7 @@ if !ready exit;
if(buttonInstant(s_button_hide, bx, by, ui(28), ui(28), mouse_ui, sFOCUS, sHOVER, "Open palette folder", s_folder_24) == 2) {
var _realpath = environment_get_variable("LOCALAPPDATA") + "\\Pixels_Composer\\Palettes";
var _windir = environment_get_variable("WINDIR") + "\\explorer.exe";
execute_shell(_windir, _realpath);
execute_shell_simple(_windir, _realpath);
}
bx -= ui(32);
#endregion

View File

@ -82,7 +82,7 @@ if !ready exit;
if(buttonInstant(s_button_hide, bx, by, ui(28), ui(28), mouse_ui, sFOCUS, sHOVER, "Open gradient folder", s_folder_24) == 2) {
var _realpath = environment_get_variable("LOCALAPPDATA") + "\\Pixels_Composer\\Gradients";
var _windir = environment_get_variable("WINDIR") + "\\explorer.exe";
execute_shell(_windir, _realpath);
execute_shell_simple(_windir, _realpath);
}
bx -= ui(32);
#endregion

View File

@ -80,7 +80,7 @@ if palette == 0 exit;
if(buttonInstant(s_button_hide, bx, by, ui(28), ui(28), mouse_ui, sFOCUS, sHOVER, "Open palette folder", s_folder_24) == 2) {
var _realpath = environment_get_variable("LOCALAPPDATA") + "\\Pixels_Composer\\Palettes";
var _windir = environment_get_variable("WINDIR") + "\\explorer.exe";
execute_shell(_windir, _realpath);
execute_shell_simple(_windir, _realpath);
}
draw_sprite_ui_uniform(s_folder_24, 0, bx + ui(14), by + ui(14), 1, c_ui_blue_grey);
bx -= ui(32);

View File

@ -2,9 +2,9 @@
"resourceType": "GMWindowsOptions",
"resourceVersion": "1.1",
"name": "Windows",
"option_windows_display_name": "Pixel Composer 0.10.3",
"option_windows_executable_name": "${project_name} 0.10.3.exe",
"option_windows_version": "0.10.3.0",
"option_windows_display_name": "Pixel Composer 0.10.4d",
"option_windows_executable_name": "${project_name} 0.10.4d.exe",
"option_windows_version": "0.10.4.0",
"option_windows_company_info": "MakhamDev",
"option_windows_product_info": "Pixel Composer",
"option_windows_copyright_info": "",

View File

@ -17,9 +17,9 @@
DEBUG = false;
globalvar VERSION, SAVEFILE_VERSION, VERSION_STRING;
VERSION = 103;
VERSION = 104;
SAVEFILE_VERSION = 90;
VERSION_STRING = "0.10.3 DEMO";
VERSION_STRING = "0.10.4 DEMO";
globalvar NODES, ANIMATOR, NODE_MAP, APPEND_MAP, HOTKEYS, HOTKEY_CONTEXT;

View File

@ -100,7 +100,7 @@ function Node_Export(_x, _y) : Node(_x, _y) constructor {
" " + target_path;
//show_debug_message(converter);
//show_debug_message(shell_cmd);
execute_shell(converter, shell_cmd);
execute_shell_simple(converter, shell_cmd);
}
static step = function() {