File tree Expand file tree Collapse file tree 8 files changed +25
-21
lines changed Expand file tree Collapse file tree 8 files changed +25
-21
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " SpringRollStudio" ,
3- "version" : " 0.2.7 " ,
3+ "version" : " 0.2.8 " ,
44 "private" : true ,
55 "dependencies" : {
66 "jqueryui" : " *" ,
Original file line number Diff line number Diff line change 11{
22 "name" : " SpringRollStudio" ,
33 "description" : " Application for SpringRoll projects" ,
4- "version" : " 0.2.7 " ,
4+ "version" : " 0.2.8 " ,
55 "repository" : {
66 "type" : " git" ,
77 "url" : " https://github.com/SpringRoll/SpringRollStudio"
Original file line number Diff line number Diff line change 44# These three must be integers
55!define VERSIONMAJOR 0
66!define VERSIONMINOR 2
7- !define VERSIONBUILD 7
7+ !define VERSIONBUILD 8
88# These will be displayed by the "Click here for support information" link in "Add/Remove Programs"
99# It is possible to use "mailto:" links in here to open the email client
1010!define HELPURL " https://github.com/SpringRoll/SpringRollStudio/issues"
Original file line number Diff line number Diff line change 44# These three must be integers
55!define VERSIONMAJOR 0
66!define VERSIONMINOR 2
7- !define VERSIONBUILD 7
7+ !define VERSIONBUILD 8
88# These will be displayed by the "Click here for support information" link in "Add/Remove Programs"
99# It is possible to use "mailto:" links in here to open the email client
1010!define HELPURL " https://github.com/SpringRoll/SpringRollStudio/issues"
Original file line number Diff line number Diff line change 11{
2- "name" : " SpringRollStudio" ,
3- "private" : true ,
4- "version" : " 0.2.7 " ,
5- "dependencies" : {
6- "grunt" : " ^0.4.5" ,
7- "grunt-appdmg" : " ^0.3.1" ,
8- "grunt-contrib-copy" : " ^0.8.0" ,
9- "grunt-contrib-jade" : " ^0.14.1 " ,
10- "grunt-exec" : " ^0.4.6" ,
11- "grunt-node-webkit-builder" : " ^1.0.0" ,
12- "lodash" : " ^3.0.0" ,
13- "project-grunt" : " *"
14- }
15- }
2+ "name" : " SpringRollStudio" ,
3+ "private" : true ,
4+ "version" : " 0.2.8 " ,
5+ "dependencies" : {
6+ "grunt" : " ^0.4.5" ,
7+ "grunt-appdmg" : " ^0.3.1" ,
8+ "grunt-contrib-copy" : " ^0.8.0" ,
9+ "grunt-contrib-jade" : " ^0.15.0 " ,
10+ "grunt-exec" : " ^0.4.6" ,
11+ "grunt-node-webkit-builder" : " ^1.0.0" ,
12+ "lodash" : " ^3.0.0" ,
13+ "project-grunt" : " *"
14+ }
15+ }
Original file line number Diff line number Diff line change 11{
22 "name" : " SpringRollStudio" ,
3- "version" : " 0.2.7 " ,
3+ "version" : " 0.2.8 " ,
44 "main" : [
55 " components/node-webkit-app/src/utils/UpdateChecker.js" ,
66 " components/node-webkit-app/src/utils/Browser.js" ,
Original file line number Diff line number Diff line change 551551 * @param {function } next Method to do after
552552 * @param {String } result
553553 */
554- p . _saveClose = function ( )
554+ p . _saveClose = function ( e )
555555 {
556- if ( this . id = == "save" )
556+ if ( e . currentTarget . id == "save" )
557557 {
558558 this . project . save ( ) ;
559559 }
Original file line number Diff line number Diff line change 270270 // Copy the files from the source to the destination
271271 fs . copySync ( source , destination ) ;
272272
273+ // Remove stuff we don't want included in template
274+ fs . removeSync ( path . join ( destination , '.git' ) ) ;
275+ fs . removeSync ( path . join ( destination , '.DS_Store' ) ) ;
276+
273277 // Update the path destination
274278 template . path = destination ;
275279
You can’t perform that action at this time.
0 commit comments