Skip to content

Commit

Permalink
Prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikVerheul committed Oct 13, 2020
1 parent bdb122f commit 014d706
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ To sent e-mails when users subscribe to receive change notices on bacloklog item
The application `node.js/app.js` is intended to run in node.js and placed on the home directory of the account named `pm2`. The installOneBacklog.sh script does that by default.</br>
See the [pm2 docs](https://pm2.io/docs/runtime/reference/ecosystem-file/) to enable the service to restart automatically on (re)boor and error conditions.</br>
The application uses an subscription on [mailgun](https://www.mailgun.com/).
The .env file for the application looks like this:</br>
The .env file for the application looks like this:
```
COUCH_USER= < _admin user name >
COUCH_PW= < _admin password >
Expand Down Expand Up @@ -279,7 +279,7 @@ npm install
```

### create two files with environment settings for development and production
// Note: these files are not under version control
Note: these files are not under version control</br>
cd to the root directory of this app and use your favorate editor to create a file named `.env.development.local` and enter:
```
VUE_APP_IS_DEMO=false // set to true only when you have created a demoUser with limited authorization
Expand Down
4 changes: 2 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": "onebl",
"version": "1.2.1",
"name": "onebacklog",
"version": "1.2.2",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
Expand Down
2 changes: 1 addition & 1 deletion src/components/header/header.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function created () {

function data () {
return {
appVersion: 'OneBackLog v.1.2.1',
appVersion: 'OneBackLog v.1.2.2',
changeTeamCalendarModel: false,
disableOkButton: false,
oldPassword: '',
Expand Down
12 changes: 11 additions & 1 deletion src/components/rel-notes/rel-notes.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,17 @@
<b-col cols="12" class="left-column">
<h1>RELEASE NOTES</h1>
<p v-if="this.$store.state.demo">Note: This is a demo version of the application.</p>
<h3>v.1.2.1 - 5 Oktober 2020 Feature update, security fix and doc updates</h3>
<h3>v.1.2.2 - 13 Oktober 2020 Security fix and doc updates</h3>
<p>Security fixes:</p>
<ul>
<li>Dependency security fix</li>
</ul>
<p>Documentation<p>
<ul>
<li>Updated the installation instructions</li>
</ul>
<hr />
<h3>v.1.2.1 - 5 Oktober 2020 Feature update, security fix and doc updates</h3>
<p>New features:</p>
<ul>
<li>Scripts added to update the app version in production</li>
Expand Down

0 comments on commit 014d706

Please sign in to comment.