Skip to content

Commit bb5b46b

Browse files
committed
fix links for reference in the Help menu
1 parent fde276a commit bb5b46b

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

java/src/processing/mode/java/JavaEditor.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -295,12 +295,12 @@ public JMenu buildHelpMenu() {
295295

296296
item = new JMenuItem(Language.text("menu.help.environment"));
297297
//item.addActionListener(e -> showReference("environment/index.html"));
298-
item.addActionListener(e -> Platform.openURL("https://processing.org/reference/"));
298+
item.addActionListener(e -> Platform.openURL("https://processing.org/environment/"));
299299
menu.add(item);
300300

301301
item = new JMenuItem(Language.text("menu.help.reference"));
302302
//item.addActionListener(e -> showReference("index.html"));
303-
item.addActionListener(e -> Platform.openURL("https://processing.org/environment/"));
303+
item.addActionListener(e -> Platform.openURL("https://processing.org/reference/"));
304304
menu.add(item);
305305

306306
item = Toolkit.newJMenuItemShift(Language.text("menu.help.find_in_reference"), 'F');

todo.txt

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ X remove underscore and use (half?) space for tabs?
3131
X half space character not implemented, but the space looks good
3232
X disable behavior with sketch.name.replace_underscore = false
3333
X add clean-libs target to build.xml files that need it
34+
X check all Help menu entries and their destinations
35+
X Help > Environment not going to the right place
3436

3537
naming
3638
X Friendly Names for new Sketches (includes UI for switching it back)
@@ -378,7 +380,7 @@ _ https://github.com/processing/processing4/issues/522
378380
_ https://github.com/processing/processing4-javafx/issues/15
379381

380382

381-
can wait until next release
383+
next release
382384
_ thicker version of the search icon for the status panel
383385
_ copy the icon over from the manager
384386
_ changing between themes not updating the combo box text (though arrow trigger works)
@@ -563,7 +565,6 @@ _ Help > Library/Tools reference links don't work
563565
_ Export to Application not working with the current video library
564566
_ https://github.com/processing/processing-video/issues/188
565567
_ loadShape(), show a warning when using style instead of presentation attributes
566-
_ change help menu links to go to newer FAQ and the rest
567568
_ better means of understanding Library/Mode/Tool usage
568569
_ jeditsyntax is a mess of old-style getModifiers()
569570
_ would like to switch this over, but needs to be tested a lot
@@ -584,6 +585,10 @@ _ is this still the case?
584585
_ chars[] array is never used in ascii video example
585586
_ ui scaling in the PDE is important for classes/seeing at a distance
586587
_ Export to Application was broken with OpenGL (Casey)
588+
_ add a version of this to the 4.x repo
589+
_ https://github.com/processing/processing/wiki/troubleshooting
590+
_ and update the Help menu to link to it
591+
_ and maybe the FAQ too?
587592

588593

589594
decisions before final 4.0 release

0 commit comments

Comments
 (0)