Skip to content

Commit 24f426a

Browse files
committed
Prepare for release
1 parent 009d432 commit 24f426a

7 files changed

Lines changed: 17 additions & 5 deletions

File tree

app/scripts/constants.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ define(['underscore'], function (_) {
1111

1212
var constants = {};
1313

14-
constants.VERSION = '0.7.2-RC3';
14+
constants.VERSION = '0.7.2-RC4';
1515
constants.URL = location.origin + location.pathname.replace('index.html', '');
1616

1717
// List of hosts and urls where default dropbox API will work

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "laverna",
3-
"version": "0.7.2-RC3",
3+
"version": "0.7.2-RC4",
44
"license": "MPL-2.0",
55
"dependencies": {
66
"backbone": "~1.2.3",

gulps/copy.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,13 @@ module.exports = function(gulp, plugins) {
1616

1717
// Copy
1818
gulp.src([
19+
'./app/scripts/modules/fs/**/*.*',
20+
'./app/scripts/modules/electronSearch/**/*.*',
21+
'./app/scripts/modules/fuzzySearch/**/*.*',
22+
'./app/scripts/modules/mathjax/**/*.*',
23+
24+
'./app/scripts/modules/modules.json',
25+
1926
'./app/bower_components/prism/themes/prism.css',
2027
'./app/images/**/*.+(png|jpg|gif|ico|icns)',
2128
'./app/docs/**',

gulps/electron.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ module.exports = function(gulp, plugins, pkg) {
2323
packageJson : pkg,
2424
release : './release',
2525
cache : './.tmp',
26-
version : 'v0.35.2',
26+
version : 'v0.37.5',
2727
packaging : true,
2828
// rebuild : true,
2929
platforms : platforms,

gulps/require.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,11 @@ module.exports = function(gulp, plugins) {
5555
'apps/settings/show/views/profiles',
5656
'apps/settings/show/views/showView',
5757
'apps/settings/show/views/sync',
58+
'apps/settings/show/views/modules',
59+
60+
'apps/settings/module/app',
61+
'apps/settings/module/controller',
62+
5863
'backbone.sync',
5964
'backbone.noworker.sync',
6065
'modules/remotestorage/module',

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "laverna",
3-
"version": "0.7.2-RC3",
3+
"version": "0.7.2-RC4",
44
"license": "MPL-2.0",
55
"repository": {
66
"type": "git",

server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ var finalhandler = require('finalhandler'),
66
serve,
77
server;
88

9-
serve = serveStatic(__dirname + '/app', {index: ['index.html']});
9+
serve = serveStatic(__dirname + '/dist', {index: ['index.html']});
1010

1111
server = http.createServer(function(req, res) {
1212
var done = finalhandler(req, res);

0 commit comments

Comments
 (0)