Skip to content

Commit 36ed025

Browse files
committed
Merge branch 'main' into lsp-fixes
2 parents a863cff + 77a5e9e commit 36ed025

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
<!-- Uncomment the shield below once the repo is made public -->
22
<!-- [![All Contributors](https://img.shields.io/github/all-contributors/processing/processing4?color=ee8449)](#contributors) -->
33

4-
> [!IMPORTANT]
5-
> Processing Foundation is excited to announce our open call for the [Processing Project Lead position](https://processingfoundation.org/employment/processing-project-lead)! This fully remote, full-time role starts on July 15, 2025. For full consideration, please submit your application by ~~**May 15, 2025 11:59 EST**~~ **DEADLINE EXTENDED: 11:59pm EST, Sunday, May 18th, 2025**. [Apply here!](https://docs.google.com/forms/u/1/d/e/1FAIpQLSeBGWD87Yg1Prbc34c2fmwgY71rSCL4LJVO2GaF9I2eLCi83g/viewform?usp=send_form)
6-
74
<img alt="Processing Logo" src="https://processing.org/favicon.svg" width="250">
85

96
Processing is a flexible software sketchbook and a programming language designed for learning how to code.

app/build.gradle.kts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -356,6 +356,11 @@ tasks.register<Copy>("includeJavaMode") {
356356
tasks.register<Copy>("includeJdk") {
357357
from(Jvm.current().javaHome.absolutePath)
358358
destinationDir = composeResources("jdk").get().asFile
359+
360+
fileTree(destinationDir).files.forEach { file ->
361+
file.setWritable(true, false)
362+
file.setReadable(true, false)
363+
}
359364
}
360365
tasks.register<Copy>("includeSharedAssets"){
361366
from("../build/shared/")

0 commit comments

Comments
 (0)