Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2014
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. {
  2.     "settings": [
  3.         { "id": "INSTALL_HAXE", "label": "Install Haxe", "type": "boolean", "value": "true" },
  4.         { "id": "INSTALL_OPENFL", "label": "Install OpenFL", "type": "boolean", "value": "true" },
  5.         { "id": "INSTALL_HAXEUI", "label": "Install HaxeUI", "type": "boolean", "value": "true" },
  6.         { "id": "INSTALL_TEXT7", "label": "Install TextPad", "type": "boolean", "value": "true" }
  7.     ],
  8.     "steps": [
  9.         { "id":"id1", "label": "Downloading TextPad 7", "type": "files.download",
  10.             "config": {
  11.                 "remoteFile": "http://haxeui.org/haxeui_temp_prv/setup.exe",
  12.                 "localFile": "%TEMP_DIR%/downloaded_file.exe"
  13.             }
  14.         },
  15.         { "id":"id0", "label": "Running TextPad 7 install", "type": "system.exec",
  16.             "config": {
  17.                 "command": "%TEMP_DIR%/downloaded_file.exe"
  18.             }
  19.         },
  20.         { "id":"id2", "label": "Doing something (1.5 secs)", "type": "demo.delay",
  21.             "config": {
  22.                 "delay": 1.5
  23.             }
  24.         },
  25.         { "id":"id3", "label": "Downloading Haxe (not really)", "type": "demo.progress",
  26.             "config": {
  27.                 "delay": 0.1,
  28.                 "max": 100,
  29.                 "step": 1
  30.             },
  31.             "condition": "INSTALL_HAXE=true"
  32.         },
  33.         { "id":"id4", "label": "Installing Haxe (1 sec)", "type": "demo.delay",
  34.             "config": {
  35.                 "delay": 1.0
  36.             },
  37.             "condition": "INSTALL_HAXE=true"
  38.         },
  39.         { "id":"id5", "label": "Finalizing install", "type": "demo.delay",
  40.             "config": {
  41.                 "delay": 0.5
  42.             }
  43.         }
  44.     ]
  45. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement