arcadia 0.11.1 → 0.11.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README +4 -7
- data/ext/ae-dir-projects/ae-dir-projects.rb +1 -1
- data/lib/a-commons.rb +9 -0
- data/lib/a-core.rb +2 -2
- metadata +3 -2
data/README
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
= Arcadia Ide
|
|
2
|
-
version 0.11.1
|
|
2
|
+
version 0.11.1.1
|
|
3
3
|
|
|
4
4
|
by Antonio Galeone
|
|
5
|
-
on
|
|
5
|
+
on Mar 7, 2012
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
== About
|
|
@@ -16,11 +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
|
|
20
|
-
|
|
21
|
-
[Improvements]
|
|
22
|
-
- Bugs fixed
|
|
23
|
-
- Some aesthetic enhancement
|
|
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)
|
|
24
21
|
|
|
25
22
|
== Dependencies
|
|
26
23
|
- rubygems
|
|
@@ -233,7 +233,7 @@ class DirProjects < ArcadiaExtPlus
|
|
|
233
233
|
end
|
|
234
234
|
if @num_childrens_of[_node] == 1
|
|
235
235
|
child = @htree.nodes(_node)[0]
|
|
236
|
-
if File.ftype(node2file(child)) == 'directory'
|
|
236
|
+
if child && File.ftype(node2file(child)) == 'directory'
|
|
237
237
|
@htree.open_tree(child,false)
|
|
238
238
|
@opened_folder << child if !@opened_folder.include?(child)
|
|
239
239
|
end
|
data/lib/a-commons.rb
CHANGED
|
@@ -820,6 +820,14 @@ module Configurable
|
|
|
820
820
|
Hash.new.update(@@conf_groups[group_key])
|
|
821
821
|
end
|
|
822
822
|
|
|
823
|
+
def Configurable.clear_properties_group_cache(_group, _suff='conf')
|
|
824
|
+
group_key="#{_suff}.#{_group}"
|
|
825
|
+
if !@@conf_groups[group_key].nil?
|
|
826
|
+
@@conf_groups[group_key].clear
|
|
827
|
+
@@conf_groups[group_key] = nil
|
|
828
|
+
end
|
|
829
|
+
end
|
|
830
|
+
|
|
823
831
|
def resolve_value(_value, _hash_source)
|
|
824
832
|
if _value.length > 0
|
|
825
833
|
_v, _vadd = _value.split(ADD_SYMBOL)
|
|
@@ -871,6 +879,7 @@ module Configurable
|
|
|
871
879
|
_hash_target["#{k[0..-2]}.#{key}"]=value if !_hash_target["#{k[0..-2]}.#{key}"]
|
|
872
880
|
end
|
|
873
881
|
_hash_target.delete(k)
|
|
882
|
+
Configurable.clear_properties_group_cache(k[0..-2])
|
|
874
883
|
end
|
|
875
884
|
end
|
|
876
885
|
|
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',
|
|
26
|
+
'0.11.1.1',
|
|
27
27
|
'conf/arcadia.conf',
|
|
28
28
|
'conf/arcadia.pers'
|
|
29
29
|
)
|
|
@@ -1777,7 +1777,7 @@ class ArcadiaAboutSplash < TkToplevel
|
|
|
1777
1777
|
place('x' => 100,'y' => 65,'height' => 19)
|
|
1778
1778
|
}
|
|
1779
1779
|
@tkLabel21 = TkLabel.new(self){
|
|
1780
|
-
text 'by Antonio Galeone - 2004/
|
|
1780
|
+
text 'by Antonio Galeone - 2004/2012'
|
|
1781
1781
|
background _bgcolor
|
|
1782
1782
|
foreground '#ffffff'
|
|
1783
1783
|
font Arcadia.instance['conf']['splash.credits.font']
|
metadata
CHANGED
|
@@ -6,7 +6,8 @@ version: !ruby/object:Gem::Version
|
|
|
6
6
|
- 0
|
|
7
7
|
- 11
|
|
8
8
|
- 1
|
|
9
|
-
|
|
9
|
+
- 1
|
|
10
|
+
version: 0.11.1.1
|
|
10
11
|
platform: ruby
|
|
11
12
|
authors:
|
|
12
13
|
- Antonio Galeone
|
|
@@ -14,7 +15,7 @@ autorequire:
|
|
|
14
15
|
bindir: bin
|
|
15
16
|
cert_chain: []
|
|
16
17
|
|
|
17
|
-
date:
|
|
18
|
+
date: 2012-03-07 00:00:00 +01:00
|
|
18
19
|
default_executable: arcadia
|
|
19
20
|
dependencies:
|
|
20
21
|
- !ruby/object:Gem::Dependency
|