Skip to content

Commit 52ecc0d

Browse files
committed
Fixes #211
1 parent 92a413b commit 52ecc0d

File tree

6 files changed

+15
-6
lines changed

6 files changed

+15
-6
lines changed

AUTHORS

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,5 @@ David McFadzean (static assets management) https://github.com/macterra
1212
Bradly Sharpe https://github.com/brad7928
1313
Collin Reynolds https://github.com/creynold
1414
jon r https://github.com/almereyda
15-
everpcpc (LDAP support) https://github.com/everpcpc
15+
everpcpc (LDAP support) https://github.com/everpcpc
16+
Michael Standen https://github.com/ScreamingHawk

ChangeLog.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
Version 1.8.1, May 17th, 2017
2+
==================================
3+
4+
This is just a small fix release
5+
- Fix #211 (pug migration regression bug)
6+
- Merge #209 (pug migration regression bug)
7+
- Adds @ScreamingHawk to contributors
8+
19
Version 1.8.0, March 11th, 2017
210
==================================
311

jingo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Jingo, wiki engine
55
* http://github.com/claudioc/jingo
66
*
7-
* Copyright 2016 Claudio Cicali <[email protected]>
7+
* Copyright 2013-2017 Claudio Cicali <[email protected]>
88
* Released under the MIT license
99
*/
1010
var program = require('commander')

lib/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Jingo, wiki engine
55
* http://github.com/claudioc/jingo
66
*
7-
* Copyright 2014 Claudio Cicali <[email protected]>
7+
* Copyright 2013-2017 Claudio Cicali <[email protected]>
88
* Released under the MIT license
99
*/
1010

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jingo",
3-
"version": "1.8.0",
3+
"version": "1.8.1",
44
"description": "A nodejs based wiki engine",
55
"author": "Claudio Cicali <[email protected]>",
66
"keywords": [

views/welcome.pug

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ block content
55
#content
66
.jumbotron
77
h1 Welcome to the wiki
8-
p This page doesn't (yet) exist. You should first <a href=`${proxyPath}/login`>login</a> and then you'll be redirected to the editor so that you can create the front page.
9-
p <a class="btn btn-primary btn-large" href=`${proxyPath}/login`>Login</a> and start adding content!
8+
p This page doesn't (yet) exist. You should first <a href="#{proxyPath}/login">login</a> and then you'll be redirected to the editor so that you can create the front page.
9+
p <a class="btn btn-primary btn-large" href="#{proxyPath}/login">Login</a> and start adding content!

0 commit comments

Comments
 (0)