Skip to content

Commit 4a00966

Browse files
committed
roll over the welcome screen for 4.0 beta so folks see it
1 parent 6a4864d commit 4a00966

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

app/src/processing/app/Base.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -254,9 +254,9 @@ static private void createAndShowGUI(String[] args) {
254254

255255
static private void handleWelcomeScreen(Base base) {
256256
boolean sketchbookPrompt = false;
257-
if (Preferences.getBoolean("welcome.show")) {
257+
if (Preferences.getBoolean("welcome.four.beta.show")) {
258258
// only ask once about split sketchbooks
259-
if (!Preferences.getBoolean("welcome.seen")) {
259+
if (!Preferences.getBoolean("welcome.four.beta.seen")) {
260260
// Check if there's a 2.0 sketchbook present
261261
String oldPath = Preferences.getOldSketchbookPath();
262262
if (oldPath != null) {
@@ -277,7 +277,7 @@ static private void handleWelcomeScreen(Base base) {
277277

278278
// Needs to be shown after the first editor window opens, so that it
279279
// shows up on top, and doesn't prevent an editor window from opening.
280-
if (Preferences.getBoolean("welcome.show")) {
280+
if (Preferences.getBoolean("welcome.four.beta.show")) {
281281
try {
282282
new Welcome(base, sketchbookPrompt);
283283
} catch (IOException e) {

build/shared/lib/defaults.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,9 @@
5050
# In 3.0, the location has changed.
5151
#sketchbook.path.three=
5252

53-
welcome.show = true
54-
welcome.seen = false
53+
# Rolling this over for the beta release
54+
welcome.four.beta.show = true
55+
welcome.four.beta.seen = false
5556

5657
# By default, no sketches currently open
5758
last.sketch.count = 0

todo.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ X https://github.com/processing/processing4/issues/203
3838
X update with a new round of icons
3939
X replace sketch.ico and sketch.icns to application (for exported app)
4040
X (too confusing b/c .pde is the "sketch", or especially if we go pdp)
41+
X roll over the welcome screen for 4.0 beta so folks see it
4142

4243
install from pdex files
4344
X initial code to install a contrib from a pdex file

0 commit comments

Comments
 (0)