@@ -1090,35 +1090,79 @@ public void actionPerformed(ActionEvent e) {
1090
1090
item = new JMenuItem (_ ("Getting Started" ));
1091
1091
item .addActionListener (new ActionListener () {
1092
1092
public void actionPerformed (ActionEvent e ) {
1093
- Base .showGettingStarted ();
1093
+ Base .showArduinoGettingStarted ();
1094
1094
}
1095
1095
});
1096
1096
menu .add (item );
1097
1097
1098
1098
item = new JMenuItem (_ ("Environment" ));
1099
1099
item .addActionListener (new ActionListener () {
1100
- public void actionPerformed (ActionEvent e ) {
1101
- Base .showEnvironment ();
1102
- }
1103
- });
1100
+ public void actionPerformed (ActionEvent e ) {
1101
+ Base .showEnvironment ();
1102
+ }
1103
+ });
1104
1104
menu .add (item );
1105
1105
1106
1106
item = new JMenuItem (_ ("Troubleshooting" ));
1107
1107
item .addActionListener (new ActionListener () {
1108
- public void actionPerformed (ActionEvent e ) {
1109
- Base .showTroubleshooting ();
1110
- }
1111
- });
1108
+ public void actionPerformed (ActionEvent e ) {
1109
+ Base .showTroubleshooting ();
1110
+ }
1111
+ });
1112
1112
menu .add (item );
1113
1113
1114
1114
item = new JMenuItem (_ ("Reference" ));
1115
1115
item .addActionListener (new ActionListener () {
1116
- public void actionPerformed (ActionEvent e ) {
1117
- Base .showReference ();
1118
- }
1119
- });
1116
+ public void actionPerformed (ActionEvent e ) {
1117
+ Base .showReference ();
1118
+ }
1119
+ });
1120
+ menu .add (item );
1121
+
1122
+ menu .addSeparator ();
1123
+
1124
+ item = new JMenuItem (_ ("Galileo Help" ));
1125
+ item .setEnabled (false );
1126
+ menu .add (item );
1127
+
1128
+ item = new JMenuItem (_ ("Getting Started" ));
1129
+ item .addActionListener (new ActionListener () {
1130
+ public void actionPerformed (ActionEvent e ) {
1131
+ Base .showReference ("reference/Galileo_help_files" , "ArduinoIDE_guide_galileo" );
1132
+ }
1133
+ });
1134
+ menu .add (item );
1135
+ item = new JMenuItem (_ ("Troubleshooting" ));
1136
+ item .addActionListener (new ActionListener () {
1137
+ public void actionPerformed (ActionEvent e ) {
1138
+ Base .showReference ("reference/Galileo_help_files" , "Guide_Troubleshooting_Galileo" );;
1139
+ }
1140
+ });
1120
1141
menu .add (item );
1121
1142
1143
+ menu .addSeparator ();
1144
+
1145
+ item = new JMenuItem (_ ("Edison Help" ));
1146
+ item .setEnabled (false );
1147
+ menu .add (item );
1148
+
1149
+ item = new JMenuItem (_ ("Getting Started" ));
1150
+ item .addActionListener (new ActionListener () {
1151
+ public void actionPerformed (ActionEvent e ) {
1152
+ Base .showReference ("reference/Edison_help_files" , "ArduinoIDE_guide_edison" );
1153
+ }
1154
+ });
1155
+ menu .add (item );
1156
+ item = new JMenuItem (_ ("Troubleshooting" ));
1157
+ item .addActionListener (new ActionListener () {
1158
+ public void actionPerformed (ActionEvent e ) {
1159
+ Base .showReference ("reference/Edison_help_files" , "Guide_Troubleshooting_Edison" );;
1160
+ }
1161
+ });
1162
+ menu .add (item );
1163
+
1164
+ menu .addSeparator ();
1165
+
1122
1166
item = newJMenuItemShift (_ ("Find in Reference" ), 'F' );
1123
1167
item .addActionListener (new ActionListener () {
1124
1168
public void actionPerformed (ActionEvent e ) {
0 commit comments