From cbed7139c28e25bc18d83a1cb61c7d6c99837e84 Mon Sep 17 00:00:00 2001 From: Ben Fry Date: Wed, 14 Oct 2015 16:24:57 -0400 Subject: [PATCH] a little cleanup cleanup --- app/src/processing/app/tools/InstallCommander.java | 6 +++--- todo.txt | 4 ++++ 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/app/src/processing/app/tools/InstallCommander.java b/app/src/processing/app/tools/InstallCommander.java index 7f4ea77bf..891d0ccb3 100644 --- a/app/src/processing/app/tools/InstallCommander.java +++ b/app/src/processing/app/tools/InstallCommander.java @@ -84,10 +84,10 @@ public class InstallCommander implements Tool { File file = File.createTempFile("processing", "commander"); PrintWriter writer = PApplet.createWriter(file); - writer.println("#!/bin/sh"); + writer.print("#!/bin/sh\n\n"); - - writer.print("\n# We don't want to steal focus for headless runs. See issue #3996.\n" + + writer.print("# Prevents processing-java from stealing focus, see:\n" + + "# https://github.com/processing/processing/issues/3996.\n" + "OPTION_FOR_HEADLESS_RUN=\"\"\n" + "for ARG in \"$@\"\n" + "do\n" + diff --git a/todo.txt b/todo.txt index f0351bc8f..9243d488c 100644 --- a/todo.txt +++ b/todo.txt @@ -6,6 +6,10 @@ X https://github.com/processing/processing/pull/3956 _ https://github.com/processing/processing/pull/3971 X add i/o library for rpi X https://github.com/processing/processing/pull/3985 +_ make sure naming, etc is all correct +X processing-java stealing focus even with --build flag +X https://github.com/processing/processing/issues/3996 +X https://github.com/processing/processing/pull/3998 jakub X Include Example packs into update count