mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-10 12:34:06 +01:00
0.10.4
This commit is contained in:
parent
1f821fbab5
commit
80f4a40e92
@ -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) {
|
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 _realpath = environment_get_variable("LOCALAPPDATA") + "\\Pixels_Composer\\Palettes";
|
||||||
var _windir = environment_get_variable("WINDIR") + "\\explorer.exe";
|
var _windir = environment_get_variable("WINDIR") + "\\explorer.exe";
|
||||||
execute_shell(_windir, _realpath);
|
execute_shell_simple(_windir, _realpath);
|
||||||
}
|
}
|
||||||
bx -= ui(32);
|
bx -= ui(32);
|
||||||
#endregion
|
#endregion
|
||||||
|
@ -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) {
|
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 _realpath = environment_get_variable("LOCALAPPDATA") + "\\Pixels_Composer\\Gradients";
|
||||||
var _windir = environment_get_variable("WINDIR") + "\\explorer.exe";
|
var _windir = environment_get_variable("WINDIR") + "\\explorer.exe";
|
||||||
execute_shell(_windir, _realpath);
|
execute_shell_simple(_windir, _realpath);
|
||||||
}
|
}
|
||||||
bx -= ui(32);
|
bx -= ui(32);
|
||||||
#endregion
|
#endregion
|
||||||
|
@ -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) {
|
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 _realpath = environment_get_variable("LOCALAPPDATA") + "\\Pixels_Composer\\Palettes";
|
||||||
var _windir = environment_get_variable("WINDIR") + "\\explorer.exe";
|
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);
|
draw_sprite_ui_uniform(s_folder_24, 0, bx + ui(14), by + ui(14), 1, c_ui_blue_grey);
|
||||||
bx -= ui(32);
|
bx -= ui(32);
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
"resourceType": "GMWindowsOptions",
|
"resourceType": "GMWindowsOptions",
|
||||||
"resourceVersion": "1.1",
|
"resourceVersion": "1.1",
|
||||||
"name": "Windows",
|
"name": "Windows",
|
||||||
"option_windows_display_name": "Pixel Composer 0.10.3",
|
"option_windows_display_name": "Pixel Composer 0.10.4d",
|
||||||
"option_windows_executable_name": "${project_name} 0.10.3.exe",
|
"option_windows_executable_name": "${project_name} 0.10.4d.exe",
|
||||||
"option_windows_version": "0.10.3.0",
|
"option_windows_version": "0.10.4.0",
|
||||||
"option_windows_company_info": "MakhamDev",
|
"option_windows_company_info": "MakhamDev",
|
||||||
"option_windows_product_info": "Pixel Composer",
|
"option_windows_product_info": "Pixel Composer",
|
||||||
"option_windows_copyright_info": "",
|
"option_windows_copyright_info": "",
|
||||||
|
@ -17,9 +17,9 @@
|
|||||||
DEBUG = false;
|
DEBUG = false;
|
||||||
|
|
||||||
globalvar VERSION, SAVEFILE_VERSION, VERSION_STRING;
|
globalvar VERSION, SAVEFILE_VERSION, VERSION_STRING;
|
||||||
VERSION = 103;
|
VERSION = 104;
|
||||||
SAVEFILE_VERSION = 90;
|
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;
|
globalvar NODES, ANIMATOR, NODE_MAP, APPEND_MAP, HOTKEYS, HOTKEY_CONTEXT;
|
||||||
|
|
||||||
|
@ -100,7 +100,7 @@ function Node_Export(_x, _y) : Node(_x, _y) constructor {
|
|||||||
" " + target_path;
|
" " + target_path;
|
||||||
//show_debug_message(converter);
|
//show_debug_message(converter);
|
||||||
//show_debug_message(shell_cmd);
|
//show_debug_message(shell_cmd);
|
||||||
execute_shell(converter, shell_cmd);
|
execute_shell_simple(converter, shell_cmd);
|
||||||
}
|
}
|
||||||
|
|
||||||
static step = function() {
|
static step = function() {
|
||||||
|
Loading…
Reference in New Issue
Block a user