File tree Expand file tree Collapse file tree 4 files changed +16
-3
lines changed Expand file tree Collapse file tree 4 files changed +16
-3
lines changed Original file line number Diff line number Diff line change 20
20
#include " aboutdialog.h"
21
21
#include " properties.h"
22
22
23
+
23
24
AboutDialog::AboutDialog (QString landing, QWidget *parent) : QDialog(parent)
24
25
{
25
26
QVBoxLayout *layout = new QVBoxLayout (this );
Original file line number Diff line number Diff line change @@ -5285,6 +5285,14 @@ void MainSpinWindow::programDebug()
5285
5285
term->getEditor ()->setPortEnable (false );
5286
5286
btnConnected->setChecked (false );
5287
5287
5288
+ /* enable terminal here so first hello world program shows content */
5289
+ term->getEditor ()->setPlainText (" " );
5290
+ term->getEditor ()->setPortEnable (true );
5291
+ term->setPortName (portName);
5292
+ term->activateWindow ();
5293
+ term->setPortEnabled (true );
5294
+ term->show ();
5295
+
5288
5296
if (runLoader (" -r -t" )) {
5289
5297
portListener->close ();
5290
5298
return ;
@@ -5294,12 +5302,15 @@ void MainSpinWindow::programDebug()
5294
5302
portListener->open ();
5295
5303
5296
5304
btnConnected->setChecked (true );
5305
+
5306
+ /* activate terminal here so first hello world program is in focus like before */
5297
5307
term->getEditor ()->setPlainText (" " );
5298
5308
term->getEditor ()->setPortEnable (true );
5299
5309
term->setPortName (portName);
5300
5310
term->activateWindow ();
5301
5311
term->setPortEnabled (true );
5302
5312
term->show ();
5313
+
5303
5314
term->getEditor ()->setFocus ();
5304
5315
cbPort->setEnabled (false );
5305
5316
}
Original file line number Diff line number Diff line change 3
3
4
4
#define MyAppName " SimpleIDE"
5
5
#define MyDocName " SimpleIDE"
6
- #define MyAppVersion " 1-1-0 "
6
+ #define MyAppVersion " 1-1-2 "
7
7
#define MyAppPublisher " ParallaxInc"
8
8
#define MyAppURL " parallax.com"
9
9
#define MyAppExeName " bin\SimpleIDE.exe"
@@ -154,7 +154,8 @@ Filename: {app}\{#FtdiChipApp}; Flags: RunAsCurrentUser NoWait;
154
154
155
155
[Registry]
156
156
; would like to use HKLM for these things if possible for specifying compiler and user workspace fields.
157
- Root : HKCU; SubKey : Software\{#MyAppPublisher}; Flags : DeleteKey UninsDeleteKey ;
157
+ ;Root: HKCU; SubKey: Software\{#MyAppPublisher}; Flags: DeleteKey UninsDeleteKey; This removes all publisher keys. Don't enable it.
158
+ Root : HKCU; SubKey : Software\{#MyAppPublisher}\SimpleIDE; Flags : DeleteKey UninsDeleteKey ;
158
159
Root : HKCU; SubKey : Software\{#MyAppPublisher}\SimpleIDE\*; Flags : DeleteKey UninsDeleteKey ;
159
160
;Root: HKCU; Subkey: "Software\{#MyAppPublisher}\SimpleIDE"; ValueType: string; ValueName: SimpleIDE_Compiler; ValueData: "{app}\propeller-gcc\bin\propeller-elf-gcc.exe"; Flags: UninsDeleteKey;
160
161
;Root: HKCU; Subkey: "Software\{#MyAppPublisher}\SimpleIDE"; ValueType: string; ValueName: SimpleIDE_Includes; ValueData: "{app}\propeller-gcc\propeller-load\"; Flags: UninsDeleteKey;
Original file line number Diff line number Diff line change 5
5
# These define the version number in Menu->About
6
6
DEFINES += IDEVERSION =1
7
7
DEFINES += MINVERSION =1
8
- DEFINES += FIXVERSION =1
8
+ DEFINES += FIXVERSION =2
9
9
VERSION = IDEVERSION " ." MINVERSION " ." FIXVERSION
10
10
11
11
QT += core
You can’t perform that action at this time.
0 commit comments