Skip to content

Commit f56981a

Browse files
author
Matt Karl
committed
Fixed bugs, bumped version
1 parent 677f07f commit f56981a

File tree

8 files changed

+25
-21
lines changed

8 files changed

+25
-21
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "SpringRollStudio",
3-
"version": "0.2.7",
3+
"version": "0.2.8",
44
"private": true,
55
"dependencies": {
66
"jqueryui": "*",

deploy/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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"

installer/win32.nsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
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"

installer/win64.nsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
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"

package.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
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+
}

project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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",

src/js/captions/Captions.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -551,9 +551,9 @@
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
}

src/js/new/TemplateManager.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -270,6 +270,10 @@
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

0 commit comments

Comments
 (0)