File tree Expand file tree Collapse file tree 8 files changed +30
-31
lines changed Expand file tree Collapse file tree 8 files changed +30
-31
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " SpringRollStudio" ,
3
- "version" : " 0.1.1 " ,
3
+ "version" : " 0.1.2 " ,
4
4
"private" : true ,
5
5
"dependencies" : {
6
6
"jqueryui" : " *" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " SpringRollStudio" ,
3
- "version" : " 0.1.1 " ,
3
+ "version" : " 0.1.2 " ,
4
4
"main" : [
5
5
" components/node-webkit-app/src/utils/UpdateChecker.js" ,
6
6
" components/node-webkit-app/src/NodeWebkitApp.js" ,
Original file line number Diff line number Diff line change 3
3
< head >
4
4
< meta charset ="utf-8 ">
5
5
< title > SpringRoll Studio</ title >
6
- < link href ="assets/css/libraries.css?v=0.1.1 " rel ="stylesheet ">
7
- < link href ="assets/css/main.css?v=0.1.1 " rel ="stylesheet ">
8
- < script src ="assets/js/libraries.js?v=0.1.1 "> </ script >
9
- < script src ="assets/js/main.js?v=0.1.1 "> </ script >
6
+ < link href ="assets/css/libraries.css?v=0.1.2 " rel ="stylesheet ">
7
+ < link href ="assets/css/main.css?v=0.1.2 " rel ="stylesheet ">
8
+ < script src ="assets/js/libraries.js?v=0.1.2 "> </ script >
9
+ < script src ="assets/js/main.js?v=0.1.2 "> </ script >
10
10
</ head >
11
11
< body >
12
12
< div class ="modules btn-group-vertical ">
Original file line number Diff line number Diff line change @@ -139,9 +139,9 @@ <h1>Create New Project</h1>
139
139
</ div >
140
140
</ div >
141
141
< div class ="col-sm-5 col-xs-4 ">
142
- < div class ="checkbox optional no-native ">
142
+ <!-- < div class="checkbox optional no-native">
143
143
<label><input type="checkbox" class="module" value="components/springroll/dist/modules/states" checked="checked"> States Module</label>
144
- </ div >
144
+ </div> -->
145
145
< div class ="checkbox optional ">
146
146
< label > < input type ="checkbox " class ="module " value ="components/springroll/dist/modules/tasks " checked ="checked "> Tasks Module</ label >
147
147
</ div >
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " SpringRollStudio" ,
3
3
"description" : " Application for SpringRoll projects" ,
4
- "version" : " 0.1.1 " ,
4
+ "version" : " 0.1.2 " ,
5
5
"repository" : {
6
6
"type" : " git" ,
7
7
"url" : " https://github.com/SpringRoll/SpringRollStudio"
Original file line number Diff line number Diff line change 4
4
# These three must be integers
5
5
!define VERSIONMAJOR 0
6
6
!define VERSIONMINOR 1
7
- !define VERSIONBUILD 1
7
+ !define VERSIONBUILD 2
8
8
# These will be displayed by the "Click here for support information" link in "Add/Remove Programs"
9
9
# It is possible to use "mailto:" links in here to open the email client
10
10
!define HELPURL " https://github.com/SpringRoll/SpringRollStudio/issues"
Original file line number Diff line number Diff line change 1
1
{
2
- "name" : " SpringRollStudio" ,
3
- "private" : true ,
4
- "dependencies" : {
5
- "grunt" : " ~0.4.5" ,
6
- "grunt-exec" : " ~0.4.6" ,
7
- "project-grunt" : " ~0.5.0" ,
8
- "grunt-node-webkit-builder" : " ~0.2.2" ,
9
- "lodash" : " ~2.4.1"
10
- }
11
- }
2
+ "name" : " SpringRollStudio" ,
3
+ "private" : true ,
4
+ "version" : " 0.1.2" ,
5
+ "dependencies" : {
6
+ "grunt" : " ~0.4.5" ,
7
+ "grunt-exec" : " ~0.4.6" ,
8
+ "project-grunt" : " ~0.5.0" ,
9
+ "grunt-node-webkit-builder" : " ~0.2.2" ,
10
+ "lodash" : " ~2.4.1"
11
+ }
12
+ }
Original file line number Diff line number Diff line change 1
1
module . exports = {
2
2
options : {
3
- files : {
4
- 'deploy/package.json' : 'version' ,
5
- 'installer/win.nsi' : function ( contents , version ) {
3
+ 'deploy/package.json' : 'version' ,
4
+ 'installer/win.nsi' : function ( contents , version ) {
6
5
7
- // Strip off any "-alpha" "-beta" "-rc" etc
8
- var extra = version . lastIndexOf ( '-' ) ;
9
- var parts = ( extra > - 1 ? version . substr ( 0 , extra ) : version ) . split ( '.' ) ;
6
+ // Strip off any "-alpha" "-beta" "-rc" etc
7
+ var extra = version . lastIndexOf ( '-' ) ;
8
+ var parts = ( extra > - 1 ? version . substr ( 0 , extra ) : version ) . split ( '.' ) ;
10
9
11
- // Replace in the file contents and return
12
- return contents . replace ( / ( \! d e f i n e V E R S I O N M A J O R ) [ 0 - 9 ] + / , "$1 " + parts [ 0 ] )
13
- . replace ( / ( \! d e f i n e V E R S I O N M I N O R ) [ 0 - 9 ] + / , "$1 " + parts [ 1 ] )
14
- . replace ( / ( \! d e f i n e V E R S I O N B U I L D ) [ 0 - 9 ] + / , "$1 " + parts [ 2 ] ) ;
15
- }
10
+ // Replace in the file contents and return
11
+ return contents . replace ( / ( \! d e f i n e V E R S I O N M A J O R ) [ 0 - 9 ] + / , "$1 " + parts [ 0 ] )
12
+ . replace ( / ( \! d e f i n e V E R S I O N M I N O R ) [ 0 - 9 ] + / , "$1 " + parts [ 1 ] )
13
+ . replace ( / ( \! d e f i n e V E R S I O N B U I L D ) [ 0 - 9 ] + / , "$1 " + parts [ 2 ] ) ;
16
14
}
17
15
}
18
16
} ;
You can’t perform that action at this time.
0 commit comments