Skip to content

Commit

Permalink
update make scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
danelkhen committed May 8, 2015
1 parent f630174 commit 30078b7
Show file tree
Hide file tree
Showing 27 changed files with 2,756 additions and 112 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# VS2015 hidden folder
.vs

bin
obj
*.suo
Expand Down
4 changes: 2 additions & 2 deletions Defs/Html/NuGet.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
<title></title>
<description>API library for Html5</description>
<summary></summary>
<version>5.4.7</version>
<version>5.4.8</version>
<authors>Sharpkit Ltd</authors>
<owners>Dan-el</owners>
<projectUrl>http://sharpkit.net/</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<dependencies>
<dependency id="SharpKit" version="5.4.7" />
<dependency id="SharpKit" version="5.4.8" />
</dependencies>
</metadata>
<files>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ namespace SharpKit.Html.vibration
public partial class Navigator
{
public void vibrate(int pattern) {}
public void vibrate(int time) {}
//public void vibrate(int time) {}
}

}
4 changes: 2 additions & 2 deletions Defs/jQuery/NuGet.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
<title></title>
<description>API library for jQuery</description>
<summary></summary>
<version>5.4.7</version>
<version>5.4.8</version>
<authors>Sharpkit Ltd</authors>
<owners>Dan-el</owners>
<projectUrl>http://sharpkit.net/</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<dependencies>
<dependency id="SharpKit.Html" version="5.4.7" />
<dependency id="SharpKit.Html" version="5.4.8" />
</dependencies>
</metadata>
<files>
Expand Down
4 changes: 2 additions & 2 deletions Defs/jQueryUI/NuGet.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
<title></title>
<description>API library for jQueryUI</description>
<summary></summary>
<version>5.4.7</version>
<version>5.4.8</version>
<authors>Sharpkit Ltd</authors>
<owners>Dan-el</owners>
<projectUrl>http://sharpkit.net/</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<dependencies>
<dependency id="SharpKit.jQuery" version="5.4.7" />
<dependency id="SharpKit.jQuery" version="5.4.8" />
</dependencies>
</metadata>
<files>
Expand Down
2 changes: 1 addition & 1 deletion Defs/make.cmd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@cd /D %~dp0
@call ../scripts/set-variables

%msbuild% Defs.sln
%msbuild% Defs.sln /verbosity:minimal
12 changes: 10 additions & 2 deletions Frameworks/Html.Linq/res/Html.Linq.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Generated by SharpKit 5 v5.4.7 */
/* Generated by SharpKit 5 v5.4.8 */

if (typeof(SharpKit) == "undefined")
var SharpKit = {};
Expand All @@ -25,6 +25,8 @@ SharpKit.Html.HtmlElementEnumerator = function (root, includeDescendents, includ
this.Stack = [];
this.Stack.push(this.Root);
}
else
null;
};
SharpKit.Html.HtmlElementEnumerator.prototype.get_Current = function (){
return this._Current;
Expand All @@ -50,9 +52,11 @@ SharpKit.Html.HtmlElementEnumerator.prototype.MoveNext = function (){
var node = this._Current;
if (node != null){
node = node.nextSibling;
while (node != null && this._Current.nodeType != 1)
while (node != null && node.nodeType != 1)
node = node.nextSibling;
}
else
null;
while (node == null && this.Stack.length > 0){
var parent = this.Stack.pop();
node = parent.firstChild;
Expand All @@ -62,6 +66,8 @@ SharpKit.Html.HtmlElementEnumerator.prototype.MoveNext = function (){
this._Current = node;
if (this._Current == null)
return false;
else
null;
this.Stack.push(this._Current);
return true;
}
Expand All @@ -71,6 +77,8 @@ SharpKit.Html.HtmlElementEnumerator.prototype.Reset = function (){
this.Stack = [];
this.Stack.push(this.Root);
}
else
null;
this._Current = null;
};
SharpKit.Html.HtmlElementEnumerator.prototype.GetEnumerator = function (){
Expand Down
2 changes: 1 addition & 1 deletion Frameworks/Html.Linq/res/SharpKit.Html.Linq.min.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Generated by SharpKit 5 v5.4.7 */
/* Generated by SharpKit 5 v5.4.8 */
/* Generated by SharpKit 5 v5.4.4 */

if (typeof(SharpKit) == "undefined")
Expand Down
6 changes: 5 additions & 1 deletion Frameworks/JavaScript.NoClr/res/noclr.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Generated by SharpKit 5 v5.4.7 */
/* Generated by SharpKit 5 v5.4.8 */

var ListHelper = function (){
};
Expand All @@ -10,6 +10,8 @@ ListHelper.IndexOf = function (list, item){
for (var i = 0; i < length; i++){
if (list[i] == item)
return i;
else
null;
}
return -1;
};
Expand All @@ -19,6 +21,8 @@ ListHelper.Remove = function (list, item){
list.splice(index, 1);
return true;
}
else
null;
return false;
};

3 changes: 2 additions & 1 deletion Frameworks/JsClr.Test/JsClr.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -142,5 +142,6 @@
<Name>JsClr</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v11.0\WebApplications\Microsoft.WebApplication.targets" />
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v14.0\WebApplications\Microsoft.WebApplication.targets" />
<!--<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v11.0\WebApplications\Microsoft.WebApplication.targets" />-->
</Project>
2 changes: 1 addition & 1 deletion Frameworks/JsClr.Test/res/QunitTests.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Generated by SharpKit 5 v5.4.7 */
/* Generated by SharpKit 5 v5.4.8 */

if (typeof(JsTypes) == "undefined")
var JsTypes = [];
Expand Down
Loading

0 comments on commit 30078b7

Please sign in to comment.