mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-14 06:23:55 +01:00
11 lines
250 B
Plaintext
11 lines
250 B
Plaintext
function check_version(path) {
|
|
if(!file_exists(path)) {
|
|
json_save_struct(path, { version: BUILD_NUMBER });
|
|
return true;
|
|
}
|
|
|
|
if(TESTING) return true;
|
|
|
|
var res = json_load_struct(path);
|
|
return struct_try_get(res, "version") != BUILD_NUMBER;
|
|
} |