From 3379eed4a941addc5661bf99514e092dc8d4aec6 Mon Sep 17 00:00:00 2001 From: shmyga Date: Wed, 4 Jan 2023 11:29:19 +0300 Subject: [PATCH] build: update dependencies versions --- .vscode/launch.json | 20 ++++++++++++++++++++ .vscode/settings.json | 11 +++++++++++ package.json | 11 +++++------ src/app/haxe/ru/m/puzzlez/view/StartFrame.hx | 2 +- 4 files changed, 37 insertions(+), 7 deletions(-) create mode 100644 .vscode/launch.json create mode 100644 .vscode/settings.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..5444386 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,20 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "args": [ + "app:flash:test" + ], + "name": "app:flash:test", + "program": "${workspaceFolder}/node_modules/gulp/bin/gulp.js", + "request": "launch", + "skipFiles": [ + "/**" + ], + "type": "node" + } + ] +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..ed54986 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,11 @@ +{ + "haxe.enableDiagnostics": true, + "haxe.configurations": [ + ["build/app/flash/haxe/debug.hxml"], + ], + "haxe.displayServer": { + "arguments": [ + //"-v" + ], + } +} \ No newline at end of file diff --git a/package.json b/package.json index 429b86f..95a0a1e 100644 --- a/package.json +++ b/package.json @@ -13,13 +13,12 @@ "yargs": "^13.2.4" }, "haxeDependencies": { - "haxework": "git@bitbucket.org:shmyga/haxework.git", - "lime": "7.9.0", - "openfl": "9.1.0", + "haxework": "2.0.0", + "lime": "8.0.0", + "openfl": "9.2.0", "hxcpp": "4.2.1", "svg": "1.1.3", - "protohx": "0.4.6", - "haxe-crypto": "0.0.7" + "protohx": "0.4.6" }, - "haxe": "4.2.2" + "haxe": "4.2.5" } diff --git a/src/app/haxe/ru/m/puzzlez/view/StartFrame.hx b/src/app/haxe/ru/m/puzzlez/view/StartFrame.hx index 1c177a9..6dc4901 100644 --- a/src/app/haxe/ru/m/puzzlez/view/StartFrame.hx +++ b/src/app/haxe/ru/m/puzzlez/view/StartFrame.hx @@ -33,7 +33,7 @@ import ru.m.update.Updater; public function new() { super(ID); var data:Array = []; - data.push({title: "Assets", sourceId: "asset"}); + // data.push({title: "Assets", sourceId: "asset"}); data.push(fileSource); for (type in AbstractEnumTools.getValues(PixabayCategory)) { data.push({title: type, sourceId: "pixabay", filter: ["category" => type]});