Commit 1d9230f
store/read user scripts relative to plugins config directory (bruderstein#99)
* store/read user scripts relative to plugins config directory
Fixes bruderstein#15
* introducing shortenPathIfPossible and expandPathIfNeeded functions
adding NULL checks
* First step to replace chm with html help files (see bruderstein#96)
removed unnecessary declaration from ConfigFile
* prevent memory leaks by correctly deleting newly created array
change getFiles which fixes bruderstein#98
* revert UNICODE/ANSI block changes
* missing curly braces added
Run edit control converted to combobox - fixes issue bruderstein#69
* add missing identifier IDC_COMBO1
* Set stdout to console as default, fixes bruderstein#78
* recommit rc changes
make last command stay in editbox
* slight position adjustment to RUN button
* make selected combobox item stay
make edit control in combobox scrolling
* changing console combobox and run button position and dimensions1 parent d54a2b4 commit 1d9230fCopy full SHA for 1d9230f
10 files changed
+194-261Lines changed: 194 additions & 261 deletions
File tree
Expand file treeCollapse file tree
Open diff view settings
Filter options
- PythonScript
- res
- src
- scripts
Expand file treeCollapse file tree
Open diff view settings
Collapse file
PythonScript/res/PythonScript.rc
Copy file name to clipboardExpand all lines: PythonScript/res/PythonScript.rc+11-6Lines changed: 11 additions & 6 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
25 | 25 | |
26 | 26 | |
27 | 27 | |
28 | | - |
| 28 | + |
29 | 29 | |
30 | 30 | |
31 | 31 | |
32 | 32 | |
33 | | - |
| 33 | + |
34 | 34 | |
35 | 35 | |
36 | 36 | |
37 | 37 | |
38 | 38 | |
39 | | - |
| 39 | + |
40 | 40 | |
41 | 41 | |
42 | 42 | |
| ||
68 | 68 | |
69 | 69 | |
70 | 70 | |
71 | | - |
72 | | - |
73 | | - |
| 71 | + |
| 72 | + |
| 73 | + |
74 | 74 | |
75 | 75 | |
76 | 76 | |
| ||
204 | 204 | |
205 | 205 | |
206 | 206 | |
| 207 | + |
| 208 | + |
| 209 | + |
| 210 | + |
| 211 | + |
207 | 212 | |
208 | 213 | |
209 | 214 | |
|
Collapse file
PythonScript/res/resource.h
Copy file name to clipboardExpand all lines: PythonScript/res/resource.h+4-3Lines changed: 4 additions & 3 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
16 | 16 | |
17 | 17 | |
18 | 18 | |
19 | | - |
| 19 | + |
20 | 20 | |
21 | 21 | |
22 | 22 | |
| ||
43 | 43 | |
44 | 44 | |
45 | 45 | |
| 46 | + |
46 | 47 | |
47 | 48 | |
48 | 49 | |
49 | 50 | |
50 | | - |
| 51 | + |
51 | 52 | |
52 | | - |
| 53 | + |
53 | 54 | |
54 | 55 | |
55 | 56 | |
Collapse file
PythonScript/src/ConfigFile.cpp
Copy file name to clipboardExpand all lines: PythonScript/src/ConfigFile.cpp+43-9Lines changed: 43 additions & 9 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
62 | 62 | |
63 | 63 | |
64 | 64 | |
| 65 | + |
65 | 66 | |
66 | 67 | |
67 | 68 | |
68 | 69 | |
69 | 70 | |
70 | | - |
71 | 71 | |
72 | 72 | |
73 | 73 | |
74 | 74 | |
75 | | - |
76 | | - |
| 75 | + |
| 76 | + |
| 77 | + |
| 78 | + |
| 79 | + |
| 80 | + |
77 | 81 | |
78 | 82 | |
79 | 83 | |
80 | 84 | |
81 | 85 | |
| 86 | + |
82 | 87 | |
| 88 | + |
| 89 | + |
83 | 90 | |
84 | 91 | |
85 | 92 | |
| ||
88 | 95 | |
89 | 96 | |
90 | 97 | |
91 | | - |
| 98 | + |
| 99 | + |
| 100 | + |
| 101 | + |
| 102 | + |
| 103 | + |
92 | 104 | |
93 | | - |
94 | | - |
95 | | - |
96 | 105 | |
97 | 106 | |
98 | 107 | |
| ||
113 | 122 | |
114 | 123 | |
115 | 124 | |
| 125 | + |
| 126 | + |
| 127 | + |
| 128 | + |
| 129 | + |
| 130 | + |
| 131 | + |
| 132 | + |
| 133 | + |
| 134 | + |
| 135 | + |
| 136 | + |
| 137 | + |
| 138 | + |
| 139 | + |
| 140 | + |
| 141 | + |
| 142 | + |
| 143 | + |
| 144 | + |
| 145 | + |
| 146 | + |
| 147 | + |
| 148 | + |
116 | 149 | |
117 | 150 | |
118 | 151 | |
119 | 152 | |
| 153 | + |
120 | 154 | |
121 | 155 | |
122 | 156 | |
123 | | - |
| 157 | + |
124 | 158 | |
125 | 159 | |
126 | 160 | |
127 | 161 | |
128 | | - |
| 162 | + |
129 | 163 | |
130 | 164 | |
131 | 165 | |
|
Collapse file
PythonScript/src/ConfigFile.h
Copy file name to clipboardExpand all lines: PythonScript/src/ConfigFile.h+2Lines changed: 2 additions & 0 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
31 | 31 | |
32 | 32 | |
33 | 33 | |
| 34 | + |
| 35 | + |
34 | 36 | |
35 | 37 | |
36 | 38 | |
|
0 commit comments