Skip to content

Commit 2b25f2d

Browse files
committed
Release 1.2.1
Fixed production resource references
1 parent 814a13b commit 2b25f2d

File tree

5 files changed

+6
-23
lines changed

5 files changed

+6
-23
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "electron-release-server",
33
"private": true,
4-
"version": "1.2.0",
4+
"version": "1.2.1",
55
"description": "A version server for hosting and serving the your electron desktop app releases.",
66
"dependencies": {
77
"bluebird": "^3.4.1",

views/403.pug

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ html
44
title Unexpected Error Occurred
55

66
// STYLES
7-
link(rel="stylesheet", href="/styles/importer.css")
7+
link(rel="stylesheet", href="/min/production.min.css")
88
// STYLES END
99
body
1010
.header

views/404.pug

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ html
44
title Unexpected Error Occurred
55

66
// STYLES
7-
link(rel="stylesheet", href="/styles/importer.css")
7+
link(rel="stylesheet", href="/min/production.min.css")
88
// STYLES END
99
body
1010
.header

views/500.pug

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ html
44
title Unexpected Error Occurred
55

66
// STYLES
7-
link(rel="stylesheet", href="/styles/importer.css")
7+
link(rel="stylesheet", href="/min/production.min.css")
88
// STYLES END
99
body
1010
.header

views/homepage.pug

Lines changed: 2 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ html
1414
// endbower
1515
1616
// STYLES
17-
link(rel="stylesheet", href="/styles/importer.css")
17+
link(rel="stylesheet", href="/min/production.min.css")
1818
// STYLES END
1919
body(ng-app='app', ng-controller='MainController as main')
2020
.header
@@ -68,22 +68,5 @@ html
6868
// endbower
6969
7070
// SCRIPTS
71-
script(src="/js/main.js")
72-
script(src="/js/admin/add-version-asset-modal/add-version-asset-modal-controller.js")
73-
script(src="/js/admin/add-version-modal/add-version-modal-controller.js")
74-
script(src="/js/admin/admin.js")
75-
script(src="/js/admin/edit-version-asset-modal/edit-version-asset-modal-controller.js")
76-
script(src="/js/admin/edit-version-modal/edit-version-modal-controller.js")
77-
script(src="/js/admin/version-table/version-table-controller.js")
78-
script(src="/js/core/auth/auth-service.js")
79-
script(src="/js/core/auth/auth.js")
80-
script(src="/js/core/auth/login/login-controller.js")
81-
script(src="/js/core/auth/logout/logout-controller.js")
82-
script(src="/js/core/core.js")
83-
script(src="/js/core/data/data-service.js")
84-
script(src="/js/core/data/data.js")
85-
script(src="/js/core/dependencies/dependencies.js")
86-
script(src="/js/core/nav-controller.js")
87-
script(src="/js/download/download-controller.js")
88-
script(src="/js/home/home-controller.js")
71+
script(src="/min/production.min.js")
8972
// SCRIPTS END

0 commit comments

Comments
 (0)