Skip to content

Commit

Permalink
Prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
wwebfor committed Apr 15, 2016
1 parent 009d432 commit 24f426a
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/scripts/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ define(['underscore'], function (_) {

var constants = {};

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

// List of hosts and urls where default dropbox API will work
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "laverna",
"version": "0.7.2-RC3",
"version": "0.7.2-RC4",
"license": "MPL-2.0",
"dependencies": {
"backbone": "~1.2.3",
Expand Down
7 changes: 7 additions & 0 deletions gulps/copy.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,13 @@ module.exports = function(gulp, plugins) {

// Copy
gulp.src([
'./app/scripts/modules/fs/**/*.*',
'./app/scripts/modules/electronSearch/**/*.*',
'./app/scripts/modules/fuzzySearch/**/*.*',
'./app/scripts/modules/mathjax/**/*.*',

'./app/scripts/modules/modules.json',

'./app/bower_components/prism/themes/prism.css',
'./app/images/**/*.+(png|jpg|gif|ico|icns)',
'./app/docs/**',
Expand Down
2 changes: 1 addition & 1 deletion gulps/electron.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ module.exports = function(gulp, plugins, pkg) {
packageJson : pkg,
release : './release',
cache : './.tmp',
version : 'v0.35.2',
version : 'v0.37.5',
packaging : true,
// rebuild : true,
platforms : platforms,
Expand Down
5 changes: 5 additions & 0 deletions gulps/require.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,11 @@ module.exports = function(gulp, plugins) {
'apps/settings/show/views/profiles',
'apps/settings/show/views/showView',
'apps/settings/show/views/sync',
'apps/settings/show/views/modules',

'apps/settings/module/app',
'apps/settings/module/controller',

'backbone.sync',
'backbone.noworker.sync',
'modules/remotestorage/module',
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "laverna",
"version": "0.7.2-RC3",
"version": "0.7.2-RC4",
"license": "MPL-2.0",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion server.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ var finalhandler = require('finalhandler'),
serve,
server;

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

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

0 comments on commit 24f426a

Please sign in to comment.