Compare commits

...

6 Commits

Author SHA1 Message Date
Corentin Thomasset
845d106927 1.5.1 2020-06-23 10:16:45 +02:00
Corentin Thomasset
25bbf9b5f3 chore: CHANGELOG.md version
Signed-off-by: Corentin Thomasset <corentin.thomasset74@gmail.com>
2020-06-23 10:16:35 +02:00
Corentin Thomasset
853e24ca75 chore: updated CHANGELOG.md
Signed-off-by: Corentin Thomasset <corentin.thomasset74@gmail.com>
2020-06-23 10:15:58 +02:00
Corentin Thomasset
41fadc7334 1.5.0 2020-06-23 10:15:58 +02:00
Corentin Thomasset
19ab6d06c3 chore: updated version
Signed-off-by: Corentin Thomasset <corentin.thomasset74@gmail.com>
2020-06-23 10:15:58 +02:00
Corentin Thomasset
d92c46c60b feat: history mode
Signed-off-by: Corentin Thomasset <corentin.thomasset74@gmail.com>
2020-06-23 10:10:58 +02:00
5 changed files with 14 additions and 3 deletions

View File

@@ -3,7 +3,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## Next
## 1.5.1
- [feat] switched back to history mode (no more '#' in url)
## 1.5.0
- [feat] added [qr-code generator](/#/qrcode-generator)
## 1.4.0

2
package-lock.json generated
View File

@@ -1,6 +1,6 @@
{
"name": "it-tools",
"version": "1.4.0",
"version": "1.5.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@@ -1,7 +1,7 @@
{
"name": "it-tools",
"description": "",
"version": "1.4.0",
"version": "1.5.1",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",

View File

@@ -158,6 +158,7 @@ const routes = [
const router = new VueRouter({
base: process.env.BASE_URL,
mode: 'history',
routes
});

7
vercel.json Normal file
View File

@@ -0,0 +1,7 @@
{
"version": 2,
"routes": [
{ "handle": "filesystem" },
{ "src": "/.*", "dest": "/index.html" }
]
}