From dc3de61da8f4f0ca38a7e218d8f7ac4a4cd44bdd Mon Sep 17 00:00:00 2001 From: Joshua Granick Date: Tue, 21 Feb 2017 17:24:09 -0800 Subject: [PATCH] Remove some platforms from command-line help --- tools/CommandLineTools.hx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/tools/CommandLineTools.hx b/tools/CommandLineTools.hx index ceefd3b3d..b42124340 100644 --- a/tools/CommandLineTools.hx +++ b/tools/CommandLineTools.hx @@ -858,16 +858,16 @@ class CommandLineTools { LogHelper.println (" " + LogHelper.accentColor + "Targets:" + LogHelper.resetColor); LogHelper.println (""); LogHelper.println (" \x1b[1mandroid\x1b[0m -- Create an Android application"); - LogHelper.println (" \x1b[1mblackberry\x1b[0m -- Create a BlackBerry application"); + //LogHelper.println (" \x1b[1mblackberry\x1b[0m -- Create a BlackBerry application"); LogHelper.println (" \x1b[1memscripten\x1b[0m -- Create an Emscripten application"); LogHelper.println (" \x1b[1mflash\x1b[0m -- Create a Flash SWF application"); LogHelper.println (" \x1b[1mhtml5\x1b[0m -- Create an HTML5 canvas application"); LogHelper.println (" \x1b[1mios\x1b[0m -- Create an iOS application"); LogHelper.println (" \x1b[1mlinux\x1b[0m -- Create a Linux application"); LogHelper.println (" \x1b[1mmac\x1b[0m -- Create a Mac OS X application"); - LogHelper.println (" \x1b[1mtizen\x1b[0m -- Create a Tizen application"); + //LogHelper.println (" \x1b[1mtizen\x1b[0m -- Create a Tizen application"); LogHelper.println (" \x1b[1mtvos\x1b[0m -- Create a tvOS application"); - LogHelper.println (" \x1b[1mwebos\x1b[0m -- Create a webOS application"); + //LogHelper.println (" \x1b[1mwebos\x1b[0m -- Create a webOS application"); LogHelper.println (" \x1b[1mwindows\x1b[0m -- Create a Windows application"); LogHelper.println (""); LogHelper.println (" " + LogHelper.accentColor + "Options:" + LogHelper.resetColor); @@ -882,7 +882,8 @@ class CommandLineTools { LogHelper.println (" \x1b[3m(windows|mac|linux)\x1b[0m \x1b[1m-neko\x1b[0m -- Build with Neko instead of C++"); LogHelper.println (" \x1b[3m(mac|linux)\x1b[0m \x1b[1m-32\x1b[0m -- Compile for 32-bit instead of the OS default"); LogHelper.println (" \x1b[3m(mac|linux)\x1b[0m \x1b[1m-64\x1b[0m -- Compile for 64-bit instead of the OS default"); - LogHelper.println (" \x1b[3m(ios|blackberry|tizen|tvos|webos)\x1b[0m \x1b[1m-simulator\x1b[0m -- Target the device simulator"); + //LogHelper.println (" \x1b[3m(ios|blackberry|tizen|tvos|webos)\x1b[0m \x1b[1m-simulator\x1b[0m -- Target the device simulator"); + LogHelper.println (" \x1b[3m(ios|tvos)\x1b[0m \x1b[1m-simulator\x1b[0m -- Target the device simulator"); LogHelper.println (" \x1b[3m(ios)\x1b[0m \x1b[1m-simulator -ipad\x1b[0m -- Build/test for the iPad Simulator"); LogHelper.println (" \x1b[3m(android)\x1b[0m \x1b[1m-emulator\x1b[0m -- Target the device emulator"); LogHelper.println (" \x1b[3m(html5)\x1b[0m \x1b[1m-minify\x1b[0m -- Minify output using the Google Closure compiler");