Skip to content

Commit

Permalink
update version and align with stable develop
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasnteireho committed Jun 29, 2022
2 parents 237c780 + 95cc26d commit 30d9426
Show file tree
Hide file tree
Showing 35 changed files with 1,549 additions and 228 deletions.
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v12
93 changes: 91 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "a2jdat",
"version": "8.0.0",
"version": "9.0.0",
"description": "Authoring and viewer App GUI.",
"license": "GNU AGPL v3.0",
"author": {
Expand Down Expand Up @@ -191,6 +191,6 @@
]
},
"volta": {
"node": "16.14.2"
"node": "16.14.1"
}
}
2 changes: 1 addition & 1 deletion pdf/assets/checkmark-font-demo/index.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!doctype html>
<html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>IcoMoon Demo</title>
Expand Down
2 changes: 1 addition & 1 deletion server.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const AppViewModel = CanMap.extend('ServerAppViewModel', {

title: {
serialize: false,
value: 'A2J Test Assemble'
value: 'A2J document preview'
}
}
})
Expand Down
3 changes: 2 additions & 1 deletion server.stache
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>{{title}}</title>
Expand All @@ -11,6 +11,7 @@
<a2j-template-ssr
answers:from="request.body.answers"
guideId:from="request.body.guideId"
renderTemplateFootersAndHeaders:from="request.body.renderTemplateFootersAndHeaders"
templateId:from="request.body.templateId"
templateIds:from="request.body.templateIds"
fileDataUrl:from="request.body.fileDataUrl"
Expand Down
2 changes: 2 additions & 0 deletions src/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ const rest = require('feathers-rest')
const bodyParser = require('body-parser')
const cookieParser = require('cookie-parser')
const assemble = require('./routes/assemble')
const preview = require('./routes/preview')
const templates = require('./routes/templates')
const topicsResourcesResources = require('./routes/topics-resources-resources')
const topicsResourcesTopics = require('./routes/topics-resources-topics')
Expand All @@ -26,6 +27,7 @@ app.configure(rest())
.use(cookieParser())
.use('/', feathers.static(path.join(__dirname, '..')))
.use('/api/assemble', assemble)
.use('/api/preview', preview)
.use('/api/template', forwardCookies, template)
.use('/api/templates', forwardCookies, templates)
.use('/api/topics-resources/resources', topicsResourcesResources)
Expand Down
2 changes: 1 addition & 1 deletion src/pdf/not-found.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module.exports = `<!doctype html>
<html>
<html lang="en">
<head>
<style>
body {
Expand Down
Loading

0 comments on commit 30d9426

Please sign in to comment.