Skip to content

Commit a585e55

Browse files
authored
Merge pull request #754 from processing/main
Merge latest changes
2 parents fc0dc61 + 7e576fa commit a585e55

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

mode/examples/Basics/Image/LoadDisplayImage/LoadDisplayImage.pde

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ void setup() {
1212
// The file "jelly.jpg" must be in the data folder
1313
// of the current sketch to load successfully
1414
a = loadImage("jelly.jpg"); // Load the image into the program
15-
noLoop(); // Makes draw() only run once
1615
}
1716

1817
void draw() {

mode/mode.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ url = https://android.processing.org
44
sentence = This mode lets you use Processing to create Android apps
55
paragraph =
66
imports=processing.mode.java.JavaMode
7-
version = 411
8-
prettyVersion = 4.5.1
7+
version = 412
8+
prettyVersion = 4.5.2
99
minRevision = 1283
1010
maxRevision = 0

mode/mode/gradlew.zip

54.2 KB
Binary file not shown.

mode/src/processing/mode/android/AndroidBuild.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -991,7 +991,7 @@ private File createTempBuildFolder(final Sketch sketch) throws IOException {
991991

992992
private void installGradlew(File exportFolder) throws IOException {
993993
File gradlewFile = mode.getContentFile("mode/gradlew.zip");
994-
AndroidUtil.extractFolder(gradlewFile, exportFolder, false, true);
994+
AndroidUtil.extractFolder(gradlewFile, exportFolder, false, false);
995995
if (Platform.isMacOS() || Platform.isLinux()) {
996996
File execFile = new File(exportFolder, "gradlew");
997997
execFile.setExecutable(true);

0 commit comments

Comments
 (0)