arcadia 0.11.1.1 → 0.11.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/README +4 -4
  2. data/ext/ae-editor/ae-editor.rb +5 -1
  3. data/lib/a-core.rb +1 -1
  4. metadata +154 -154
data/README CHANGED
@@ -1,8 +1,8 @@
1
1
  = Arcadia Ide
2
- version 0.11.1.1
2
+ version 0.11.1.2
3
3
 
4
4
  by Antonio Galeone
5
- on Mar 7, 2012
5
+ on Jun 29, 2012
6
6
 
7
7
 
8
8
  == About
@@ -16,8 +16,8 @@ Some of Arcadia ide project features include:
16
16
  * Debugging support
17
17
  * Highly extensibility architecture.
18
18
 
19
- == In this release 0.11.1.1
20
- - A Bug fixed (see issue 41) : arcadia was crashing in some environments (es. Fedora16 + ruby 1.8.7)
19
+ == In this release 0.11.1.2
20
+ - A Bug fixed : error in string encoding on file loading
21
21
 
22
22
  == Dependencies
23
23
  - rubygems
@@ -3337,7 +3337,11 @@ class AgEditor
3337
3337
  @file = _filename
3338
3338
  if _filename
3339
3339
  File::open(_filename,'rb'){ |file|
3340
- @text.insert('end',file.readlines.collect!{| line | line.chomp}.join("\n"))
3340
+ if Arcadia.conf('encoding')
3341
+ @text.insert('end',file.readlines.collect!{| line | Tk.EncodedString(line.chomp, Arcadia.conf('encoding'))}.join("\n"))
3342
+ else
3343
+ @text.insert('end',file.readlines.collect!{| line | line.chomp}.join("\n"))
3344
+ end
3341
3345
  #@text.insert('end',file.read)
3342
3346
  }
3343
3347
  File.open(_filename, 'rb') { |file|
data/lib/a-core.rb CHANGED
@@ -23,7 +23,7 @@ class Arcadia < TkApplication
23
23
  super(
24
24
  ApplicationParams.new(
25
25
  'arcadia',
26
- '0.11.1.1',
26
+ '0.11.1.2',
27
27
  'conf/arcadia.conf',
28
28
  'conf/arcadia.pers'
29
29
  )
metadata CHANGED
@@ -6,8 +6,8 @@ version: !ruby/object:Gem::Version
6
6
  - 0
7
7
  - 11
8
8
  - 1
9
- - 1
10
- version: 0.11.1.1
9
+ - 2
10
+ version: 0.11.1.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Antonio Galeone
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2012-03-07 00:00:00 +01:00
18
+ date: 2012-06-29 00:00:00 +02:00
19
19
  default_executable: arcadia
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -46,198 +46,198 @@ files:
46
46
  - lib/a-tkcommons.rb
47
47
  - lib/ctags.exe
48
48
  - lib/a-contracts.rb
49
- - lib/a-core.rb
50
- - lib/anigif.rb
51
49
  - lib/a-commons.rb
52
- - ext/test-shutdown-after-startup/test-shutdown-after-startup.conf
53
- - ext/test-shutdown-after-startup/test-shutdown-after-startup.rb
54
- - ext/ae-dir-projects/ae-dir-projects.conf
55
- - ext/ae-dir-projects/ae-dir-projects.rb
56
- - ext/ae-file-history/ae-file-history.conf
57
- - ext/ae-file-history/ae-file-history.rb
58
- - ext/ae-breakpoints/ae-breakpoints.rb
59
- - ext/ae-breakpoints/ae-breakpoints.conf
60
- - ext/ae-shell/ae-shell.conf
61
- - ext/ae-shell/sh.rb
62
- - ext/ae-shell/ae-shell.rb
50
+ - lib/anigif.rb
51
+ - lib/a-core.rb
52
+ - ext/ae-ruby-debug/ae-ruby-debug.rb
53
+ - ext/ae-ruby-debug/ae-ruby-debug.conf
54
+ - ext/ae-subprocess-inspector/ae-subprocess-inspector.rb
63
55
  - ext/ae-subprocess-inspector/process.res
64
56
  - ext/ae-subprocess-inspector/ae-subprocess-inspector.conf
65
- - ext/ae-subprocess-inspector/ae-subprocess-inspector.rb
66
- - ext/ae-output/ae-output.rb
67
- - ext/ae-output/ae-output.conf
68
- - ext/ae-search-in-files/ext/ack-in-files/ack-in-files.conf
69
- - ext/ae-search-in-files/ext/ack-in-files/ack-in-files.rb
70
- - ext/ae-search-in-files/ae-search-in-files.conf
71
- - ext/ae-search-in-files/ae-search-in-files.rb
72
- - ext/ae-rad/ae-rad.rb
73
- - ext/ae-rad/ae-rad.conf
74
- - ext/ae-rad/ae-rad-libs.rb
57
+ - ext/ae-breakpoints/ae-breakpoints.rb
58
+ - ext/ae-breakpoints/ae-breakpoints.conf
59
+ - ext/ae-rad/lib/tk/al-tk.rb
60
+ - ext/ae-rad/lib/tk/al-tk.res.rb
61
+ - ext/ae-rad/lib/tk/al-tkcustom.rb
62
+ - ext/ae-rad/lib/tk/al-tkarcadia.rb
63
+ - ext/ae-rad/lib/tkext/al-tile.rb
75
64
  - ext/ae-rad/lib/tkext/al-tktable.rb
76
65
  - ext/ae-rad/lib/tkext/al-iwidgets.rb
77
- - ext/ae-rad/lib/tkext/al-tile.rb
78
66
  - ext/ae-rad/lib/tkext/al-bwidget.rb
79
- - ext/ae-rad/lib/tk/al-tkarcadia.rb
80
- - ext/ae-rad/lib/tk/al-tkcustom.rb
81
- - ext/ae-rad/lib/tk/al-tk.res.rb
82
- - ext/ae-rad/lib/tk/al-tk.rb
83
67
  - ext/ae-rad/ae-rad-palette.rb
68
+ - ext/ae-rad/ae-rad.conf
69
+ - ext/ae-rad/ae-rad-libs.rb
70
+ - ext/ae-rad/ae-rad.rb
84
71
  - ext/ae-rad/ae-rad-inspector.rb
85
- - ext/ae-ruby-debug/ae-ruby-debug.conf
86
- - ext/ae-ruby-debug/ae-ruby-debug.rb
87
- - ext/ae-editor/ae-editor.rb
88
- - ext/ae-editor/ae-editor.conf
89
- - ext/ae-editor/langs/java.lang
72
+ - ext/ae-search-in-files/ext/ack-in-files/ack-in-files.conf
73
+ - ext/ae-search-in-files/ext/ack-in-files/ack-in-files.rb
74
+ - ext/ae-search-in-files/ae-search-in-files.rb
75
+ - ext/ae-search-in-files/ae-search-in-files.conf
76
+ - ext/ae-editor/lib/rbeautify.rb
77
+ - ext/ae-editor/langs/html.lang
78
+ - ext/ae-editor/langs/css.lang
90
79
  - ext/ae-editor/langs/conf.lang
80
+ - ext/ae-editor/langs/python.lang
81
+ - ext/ae-editor/langs/text.lang
91
82
  - ext/ae-editor/langs/xml.lang
92
- - ext/ae-editor/langs/rhtml.lang
93
- - ext/ae-editor/langs/ruby.lang
94
- - ext/ae-editor/langs/css.lang
95
83
  - ext/ae-editor/langs/coderay.tokens
84
+ - ext/ae-editor/langs/java.lang
96
85
  - ext/ae-editor/langs/tcl.lang
97
- - ext/ae-editor/langs/html.lang
98
- - ext/ae-editor/langs/python.lang
99
- - ext/ae-editor/langs/text.lang
100
- - ext/ae-editor/lib/rbeautify.rb
101
- - tcl/anigif/anigif.tcl
86
+ - ext/ae-editor/langs/rhtml.lang
87
+ - ext/ae-editor/langs/ruby.lang
88
+ - ext/ae-editor/ae-editor.conf
89
+ - ext/ae-editor/ae-editor.rb
90
+ - ext/ae-file-history/ae-file-history.rb
91
+ - ext/ae-file-history/ae-file-history.conf
92
+ - ext/test-shutdown-after-startup/test-shutdown-after-startup.rb
93
+ - ext/test-shutdown-after-startup/test-shutdown-after-startup.conf
94
+ - ext/ae-output/ae-output.rb
95
+ - ext/ae-output/ae-output.conf
96
+ - ext/ae-dir-projects/ae-dir-projects.rb
97
+ - ext/ae-dir-projects/ae-dir-projects.conf
98
+ - ext/ae-shell/ae-shell.rb
99
+ - ext/ae-shell/sh.rb
100
+ - ext/ae-shell/ae-shell.conf
102
101
  - tcl/anigif/pkgIndex.tcl
103
- - tcl/fsdialog/fsdlg-gif.tcl
102
+ - tcl/anigif/anigif.tcl
103
+ - tcl/fsdialog/fsdlg-png.tcl
104
+ - tcl/fsdialog/de.msg
105
+ - tcl/fsdialog/en.msg
104
106
  - tcl/fsdialog/fsdialog.tcl
105
107
  - tcl/fsdialog/sv.msg
106
- - tcl/fsdialog/en.msg
108
+ - tcl/fsdialog/fsdlg-gif.tcl
107
109
  - tcl/fsdialog/tclIndex
108
- - tcl/fsdialog/de.msg
109
- - tcl/fsdialog/fsdlg-png.tcl
110
- - tcl/bwidget-1.9.5/panedw.tcl
111
- - tcl/bwidget-1.9.5/lang/es.rc
112
- - tcl/bwidget-1.9.5/lang/no.rc
113
- - tcl/bwidget-1.9.5/lang/en.rc
110
+ - tcl/bwidget-1.9.5/demo/tree.tcl
111
+ - tcl/bwidget-1.9.5/demo/basic.tcl
112
+ - tcl/bwidget-1.9.5/demo/dnd.tcl
113
+ - tcl/bwidget-1.9.5/demo/manager.tcl
114
+ - tcl/bwidget-1.9.5/demo/select.tcl
115
+ - tcl/bwidget-1.9.5/demo/demo.tcl
116
+ - tcl/bwidget-1.9.5/demo/bwidget.xbm
117
+ - tcl/bwidget-1.9.5/demo/x1.xbm
118
+ - tcl/bwidget-1.9.5/demo/tmpldlg.tcl
114
119
  - tcl/bwidget-1.9.5/lang/da.rc
115
120
  - tcl/bwidget-1.9.5/lang/de.rc
116
- - tcl/bwidget-1.9.5/lang/nl.rc
121
+ - tcl/bwidget-1.9.5/lang/en.rc
122
+ - tcl/bwidget-1.9.5/lang/es.rc
123
+ - tcl/bwidget-1.9.5/lang/fr.rc
117
124
  - tcl/bwidget-1.9.5/lang/hu.rc
125
+ - tcl/bwidget-1.9.5/lang/nl.rc
126
+ - tcl/bwidget-1.9.5/lang/no.rc
118
127
  - tcl/bwidget-1.9.5/lang/pl.rc
119
- - tcl/bwidget-1.9.5/lang/fr.rc
120
- - tcl/bwidget-1.9.5/init.tcl
121
- - tcl/bwidget-1.9.5/notebook.tcl
128
+ - tcl/bwidget-1.9.5/labelentry.tcl
129
+ - tcl/bwidget-1.9.5/tree.tcl
130
+ - tcl/bwidget-1.9.5/color.tcl
131
+ - tcl/bwidget-1.9.5/BWman/Button.html
132
+ - tcl/bwidget-1.9.5/BWman/MessageDlg.html
133
+ - tcl/bwidget-1.9.5/BWman/options.htm
134
+ - tcl/bwidget-1.9.5/BWman/Tree.html
135
+ - tcl/bwidget-1.9.5/BWman/StatusBar.html
136
+ - tcl/bwidget-1.9.5/BWman/BWidget.html
137
+ - tcl/bwidget-1.9.5/BWman/ButtonBox.html
138
+ - tcl/bwidget-1.9.5/BWman/ComboBox.html
139
+ - tcl/bwidget-1.9.5/BWman/navtree.html
140
+ - tcl/bwidget-1.9.5/BWman/Label.html
141
+ - tcl/bwidget-1.9.5/BWman/DropSite.html
142
+ - tcl/bwidget-1.9.5/BWman/ProgressBar.html
143
+ - tcl/bwidget-1.9.5/BWman/ScrollView.html
144
+ - tcl/bwidget-1.9.5/BWman/index.html
145
+ - tcl/bwidget-1.9.5/BWman/ListBox.html
146
+ - tcl/bwidget-1.9.5/BWman/SelectFont.html
147
+ - tcl/bwidget-1.9.5/BWman/LabelEntry.html
148
+ - tcl/bwidget-1.9.5/BWman/PanedWindow.html
149
+ - tcl/bwidget-1.9.5/BWman/ScrolledWindow.html
150
+ - tcl/bwidget-1.9.5/BWman/SelectColor.html
151
+ - tcl/bwidget-1.9.5/BWman/DynamicHelp.html
152
+ - tcl/bwidget-1.9.5/BWman/Dialog.html
153
+ - tcl/bwidget-1.9.5/BWman/PasswdDlg.html
154
+ - tcl/bwidget-1.9.5/BWman/SpinBox.html
155
+ - tcl/bwidget-1.9.5/BWman/TitleFrame.html
156
+ - tcl/bwidget-1.9.5/BWman/LabelFrame.html
157
+ - tcl/bwidget-1.9.5/BWman/DragSite.html
158
+ - tcl/bwidget-1.9.5/BWman/ScrollableFrame.html
159
+ - tcl/bwidget-1.9.5/BWman/MainFrame.html
160
+ - tcl/bwidget-1.9.5/BWman/contents.html
161
+ - tcl/bwidget-1.9.5/BWman/PagesManager.html
162
+ - tcl/bwidget-1.9.5/BWman/Entry.html
163
+ - tcl/bwidget-1.9.5/BWman/ArrowButton.html
164
+ - tcl/bwidget-1.9.5/BWman/NoteBook.html
165
+ - tcl/bwidget-1.9.5/BWman/Widget.html
166
+ - tcl/bwidget-1.9.5/BWman/Separator.html
167
+ - tcl/bwidget-1.9.5/BWman/ProgressDlg.html
168
+ - tcl/bwidget-1.9.5/BWman/PanelFrame.html
169
+ - tcl/bwidget-1.9.5/tests/entry.test
170
+ - tcl/bwidget-1.9.5/dragsite.tcl
171
+ - tcl/bwidget-1.9.5/widget.tcl
172
+ - tcl/bwidget-1.9.5/pkgIndex.tcl
122
173
  - tcl/bwidget-1.9.5/scrollview.tcl
123
- - tcl/bwidget-1.9.5/dialog.tcl
124
- - tcl/bwidget-1.9.5/ChangeLog
125
- - tcl/bwidget-1.9.5/label.tcl
126
174
  - tcl/bwidget-1.9.5/labelframe.tcl
127
- - tcl/bwidget-1.9.5/statusbar.tcl
128
- - tcl/bwidget-1.9.5/titleframe.tcl
129
- - tcl/bwidget-1.9.5/LICENSE.txt
175
+ - tcl/bwidget-1.9.5/label.tcl
130
176
  - tcl/bwidget-1.9.5/font.tcl
177
+ - tcl/bwidget-1.9.5/listbox.tcl
178
+ - tcl/bwidget-1.9.5/panelframe.tcl
179
+ - tcl/bwidget-1.9.5/pagesmgr.tcl
131
180
  - tcl/bwidget-1.9.5/bitmap.tcl
132
- - tcl/bwidget-1.9.5/buttonbox.tcl
133
- - tcl/bwidget-1.9.5/images/new.gif
134
- - tcl/bwidget-1.9.5/images/opcopy.xbm
135
- - tcl/bwidget-1.9.5/images/print.gif
181
+ - tcl/bwidget-1.9.5/dialog.tcl
182
+ - tcl/bwidget-1.9.5/notebook.tcl
183
+ - tcl/bwidget-1.9.5/button.tcl
184
+ - tcl/bwidget-1.9.5/progressbar.tcl
185
+ - tcl/bwidget-1.9.5/statusbar.tcl
186
+ - tcl/bwidget-1.9.5/images/plus.xbm
187
+ - tcl/bwidget-1.9.5/images/warning.gif
188
+ - tcl/bwidget-1.9.5/images/undo.gif
189
+ - tcl/bwidget-1.9.5/images/cut.gif
190
+ - tcl/bwidget-1.9.5/images/dragicon.gif
191
+ - tcl/bwidget-1.9.5/images/dragfile.gif
136
192
  - tcl/bwidget-1.9.5/images/save.gif
137
- - tcl/bwidget-1.9.5/images/opmove.xbm
138
- - tcl/bwidget-1.9.5/images/redo.gif
193
+ - tcl/bwidget-1.9.5/images/paste.gif
194
+ - tcl/bwidget-1.9.5/images/overstrike.gif
195
+ - tcl/bwidget-1.9.5/images/file.gif
196
+ - tcl/bwidget-1.9.5/images/target.xbm
197
+ - tcl/bwidget-1.9.5/images/oplink.xbm
139
198
  - tcl/bwidget-1.9.5/images/underline.gif
140
- - tcl/bwidget-1.9.5/images/palette.gif
199
+ - tcl/bwidget-1.9.5/images/new.gif
200
+ - tcl/bwidget-1.9.5/images/copy.gif
141
201
  - tcl/bwidget-1.9.5/images/minus.xbm
142
- - tcl/bwidget-1.9.5/images/bold.gif
202
+ - tcl/bwidget-1.9.5/images/folder.gif
203
+ - tcl/bwidget-1.9.5/images/palette.gif
204
+ - tcl/bwidget-1.9.5/images/open.gif
143
205
  - tcl/bwidget-1.9.5/images/question.gif
144
- - tcl/bwidget-1.9.5/images/error.gif
145
- - tcl/bwidget-1.9.5/images/dragfile.gif
146
206
  - tcl/bwidget-1.9.5/images/hourglass.gif
147
207
  - tcl/bwidget-1.9.5/images/openfold.gif
148
- - tcl/bwidget-1.9.5/images/oplink.xbm
149
- - tcl/bwidget-1.9.5/images/plus.xbm
150
- - tcl/bwidget-1.9.5/images/warning.gif
151
- - tcl/bwidget-1.9.5/images/target.xbm
152
- - tcl/bwidget-1.9.5/images/undo.gif
153
208
  - tcl/bwidget-1.9.5/images/info.gif
209
+ - tcl/bwidget-1.9.5/images/bold.gif
210
+ - tcl/bwidget-1.9.5/images/opcopy.xbm
154
211
  - tcl/bwidget-1.9.5/images/passwd.gif
155
- - tcl/bwidget-1.9.5/images/file.gif
156
- - tcl/bwidget-1.9.5/images/paste.gif
157
- - tcl/bwidget-1.9.5/images/open.gif
212
+ - tcl/bwidget-1.9.5/images/opmove.xbm
213
+ - tcl/bwidget-1.9.5/images/redo.gif
158
214
  - tcl/bwidget-1.9.5/images/italic.gif
159
- - tcl/bwidget-1.9.5/images/copy.gif
160
- - tcl/bwidget-1.9.5/images/overstrike.gif
161
- - tcl/bwidget-1.9.5/images/folder.gif
162
- - tcl/bwidget-1.9.5/images/dragicon.gif
163
- - tcl/bwidget-1.9.5/images/cut.gif
164
- - tcl/bwidget-1.9.5/separator.tcl
165
- - tcl/bwidget-1.9.5/utils.tcl
166
- - tcl/bwidget-1.9.5/progressdlg.tcl
167
- - tcl/bwidget-1.9.5/pkgIndex.tcl
168
- - tcl/bwidget-1.9.5/dropsite.tcl
169
- - tcl/bwidget-1.9.5/widget.tcl
170
- - tcl/bwidget-1.9.5/arrow.tcl
171
- - tcl/bwidget-1.9.5/button.tcl
172
- - tcl/bwidget-1.9.5/color.tcl
173
- - tcl/bwidget-1.9.5/scrollw.tcl
215
+ - tcl/bwidget-1.9.5/images/error.gif
216
+ - tcl/bwidget-1.9.5/images/print.gif
174
217
  - tcl/bwidget-1.9.5/passwddlg.tcl
175
218
  - tcl/bwidget-1.9.5/combobox.tcl
176
- - tcl/bwidget-1.9.5/mainframe.tcl
219
+ - tcl/bwidget-1.9.5/LICENSE.txt
220
+ - tcl/bwidget-1.9.5/scrollw.tcl
221
+ - tcl/bwidget-1.9.5/panedw.tcl
177
222
  - tcl/bwidget-1.9.5/README.txt
223
+ - tcl/bwidget-1.9.5/dynhelp.tcl
224
+ - tcl/bwidget-1.9.5/mainframe.tcl
225
+ - tcl/bwidget-1.9.5/spinbox.tcl
226
+ - tcl/bwidget-1.9.5/arrow.tcl
227
+ - tcl/bwidget-1.9.5/wizard.tcl
178
228
  - tcl/bwidget-1.9.5/CHANGES.txt
179
- - tcl/bwidget-1.9.5/panelframe.tcl
229
+ - tcl/bwidget-1.9.5/separator.tcl
180
230
  - tcl/bwidget-1.9.5/xpm2image.tcl
181
- - tcl/bwidget-1.9.5/demo/basic.tcl
182
- - tcl/bwidget-1.9.5/demo/tmpldlg.tcl
183
- - tcl/bwidget-1.9.5/demo/demo.tcl
184
- - tcl/bwidget-1.9.5/demo/x1.xbm
185
- - tcl/bwidget-1.9.5/demo/manager.tcl
186
- - tcl/bwidget-1.9.5/demo/dnd.tcl
187
- - tcl/bwidget-1.9.5/demo/select.tcl
188
- - tcl/bwidget-1.9.5/demo/bwidget.xbm
189
- - tcl/bwidget-1.9.5/demo/tree.tcl
190
231
  - tcl/bwidget-1.9.5/entry.tcl
191
- - tcl/bwidget-1.9.5/BWman/PanedWindow.html
192
- - tcl/bwidget-1.9.5/BWman/PagesManager.html
193
- - tcl/bwidget-1.9.5/BWman/PanelFrame.html
194
- - tcl/bwidget-1.9.5/BWman/ListBox.html
195
- - tcl/bwidget-1.9.5/BWman/navtree.html
196
- - tcl/bwidget-1.9.5/BWman/LabelEntry.html
197
- - tcl/bwidget-1.9.5/BWman/BWidget.html
198
- - tcl/bwidget-1.9.5/BWman/DynamicHelp.html
199
- - tcl/bwidget-1.9.5/BWman/DragSite.html
200
- - tcl/bwidget-1.9.5/BWman/contents.html
201
- - tcl/bwidget-1.9.5/BWman/Dialog.html
202
- - tcl/bwidget-1.9.5/BWman/ProgressDlg.html
203
- - tcl/bwidget-1.9.5/BWman/NoteBook.html
204
- - tcl/bwidget-1.9.5/BWman/ScrollView.html
205
- - tcl/bwidget-1.9.5/BWman/Widget.html
206
- - tcl/bwidget-1.9.5/BWman/ProgressBar.html
207
- - tcl/bwidget-1.9.5/BWman/Separator.html
208
- - tcl/bwidget-1.9.5/BWman/StatusBar.html
209
- - tcl/bwidget-1.9.5/BWman/MainFrame.html
210
- - tcl/bwidget-1.9.5/BWman/SelectColor.html
211
- - tcl/bwidget-1.9.5/BWman/ScrollableFrame.html
212
- - tcl/bwidget-1.9.5/BWman/Button.html
213
- - tcl/bwidget-1.9.5/BWman/index.html
214
- - tcl/bwidget-1.9.5/BWman/options.htm
215
- - tcl/bwidget-1.9.5/BWman/ComboBox.html
216
- - tcl/bwidget-1.9.5/BWman/PasswdDlg.html
217
- - tcl/bwidget-1.9.5/BWman/ButtonBox.html
218
- - tcl/bwidget-1.9.5/BWman/Tree.html
219
- - tcl/bwidget-1.9.5/BWman/TitleFrame.html
220
- - tcl/bwidget-1.9.5/BWman/DropSite.html
221
- - tcl/bwidget-1.9.5/BWman/ArrowButton.html
222
- - tcl/bwidget-1.9.5/BWman/SpinBox.html
223
- - tcl/bwidget-1.9.5/BWman/SelectFont.html
224
- - tcl/bwidget-1.9.5/BWman/LabelFrame.html
225
- - tcl/bwidget-1.9.5/BWman/MessageDlg.html
226
- - tcl/bwidget-1.9.5/BWman/Entry.html
227
- - tcl/bwidget-1.9.5/BWman/Label.html
228
- - tcl/bwidget-1.9.5/BWman/ScrolledWindow.html
229
- - tcl/bwidget-1.9.5/dragsite.tcl
230
- - tcl/bwidget-1.9.5/labelentry.tcl
231
- - tcl/bwidget-1.9.5/listbox.tcl
232
+ - tcl/bwidget-1.9.5/titleframe.tcl
233
+ - tcl/bwidget-1.9.5/dropsite.tcl
234
+ - tcl/bwidget-1.9.5/init.tcl
235
+ - tcl/bwidget-1.9.5/ChangeLog
232
236
  - tcl/bwidget-1.9.5/messagedlg.tcl
233
- - tcl/bwidget-1.9.5/spinbox.tcl
234
- - tcl/bwidget-1.9.5/dynhelp.tcl
235
- - tcl/bwidget-1.9.5/progressbar.tcl
236
- - tcl/bwidget-1.9.5/tests/entry.test
237
- - tcl/bwidget-1.9.5/wizard.tcl
238
- - tcl/bwidget-1.9.5/pagesmgr.tcl
237
+ - tcl/bwidget-1.9.5/progressdlg.tcl
239
238
  - tcl/bwidget-1.9.5/scrollframe.tcl
240
- - tcl/bwidget-1.9.5/tree.tcl
239
+ - tcl/bwidget-1.9.5/buttonbox.tcl
240
+ - tcl/bwidget-1.9.5/utils.tcl
241
241
  - README
242
242
  - bin/arcadia
243
243
  - bin/arcadia.bat