sproutcore 1.6.0.beta.2-java → 1.6.0.beta.3-java

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1,3 +1,8 @@
1
+ *SproutCore 1.6.0.beta.3 (May 10, 2011)*
2
+
3
+ * Fixed framework issues that cause sc-build to fail
4
+
5
+
1
6
  *SproutCore 1.6.0.beta.2 (May 10, 2011)*
2
7
 
3
8
  * Framework updates
data/VERSION.yml CHANGED
@@ -1,4 +1,4 @@
1
1
  ---
2
2
  :major: 1
3
3
  :minor: 6
4
- :patch: 0.beta.2
4
+ :patch: 0.beta.3
@@ -2,6 +2,11 @@
2
2
  CHANGE LOG FOR 1.6
3
3
  ==================
4
4
 
5
+ 1.6.0.beta.3
6
+ ------------
7
+ * Removed stray debugger statement that broke sc-build
8
+
9
+
5
10
  1.6.0.beta.2
6
11
  ------------
7
12
  * Allow native touch scrolling inside an SC.TemplatePane.
@@ -64,10 +64,8 @@ SC.TextField = SC.TemplateView.extend(
64
64
  this._value = value;
65
65
  input.val(value);
66
66
  } else if (input.length) {
67
- if(window.billy) { debugger; }
68
67
  this._value = value = input.val();
69
68
  } else {
70
- if(window.billy) { debugger; }
71
69
  value = this._value;
72
70
  }
73
71
 
@@ -36,7 +36,7 @@ if (typeof console === 'undefined') {
36
36
  // rest of the methods go into the mixin defined below.
37
37
 
38
38
  /**
39
- @version 1.6.0.beta.2
39
+ @version 1.6.0.beta.3
40
40
  @namespace
41
41
 
42
42
  All SproutCore methods and functions are defined
@@ -57,7 +57,7 @@ if (typeof console === 'undefined') {
57
57
  window.SC = window.SC || {} ;
58
58
  window.SproutCore = window.SproutCore || SC ;
59
59
 
60
- SC.VERSION = '1.6.0.beta.2';
60
+ SC.VERSION = '1.6.0.beta.3';
61
61
 
62
62
  /**
63
63
  @private
metadata CHANGED
@@ -7,8 +7,8 @@ version: !ruby/object:Gem::Version
7
7
  - 6
8
8
  - 0
9
9
  - beta
10
- - 2
11
- version: 1.6.0.beta.2
10
+ - 3
11
+ version: 1.6.0.beta.3
12
12
  platform: java
13
13
  authors:
14
14
  - Strobe, Inc., Apple Inc. and contributors