Compare commits

..

8 Commits

Author SHA1 Message Date
Corentin Thomasset
635552fbce 1.5.2 2020-07-08 13:37:39 +02:00
Corentin Thomasset
7f8404645d chore: version
Signed-off-by: Corentin Thomasset <corentin.thomasset74@gmail.com>
2020-07-08 13:37:35 +02:00
Corentin Thomasset
66c569f886 chore: pwa auto update
Signed-off-by: Corentin Thomasset <corentin.thomasset74@gmail.com>
2020-07-08 13:35:24 +02:00
Corentin Thomasset
f02a816eaa docs: updated README.md 2020-06-23 13:19:44 +02:00
Corentin Thomasset
f0d8a3ad26 feat: humans.txt
Signed-off-by: Corentin Thomasset <corentin.thomasset74@gmail.com>
2020-06-23 10:30:57 +02:00
Corentin Thomasset
f91a2a1343 Merge branch 'master' of github.com:CorentinTh/it-tools 2020-06-23 10:18:31 +02:00
Corentin Thomasset
ed176c7b8c 1.5.0 2020-06-23 09:40:58 +02:00
Corentin Thomasset
e152651a4b chore: updated version
Signed-off-by: Corentin Thomasset <corentin.thomasset74@gmail.com>
2020-06-23 09:40:50 +02:00
8 changed files with 22 additions and 4 deletions

View File

@@ -3,6 +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).
## 1.5.2
- [feat] [humans.txt](/humans.txt)
- [feat] pwa auto update on new changes
## 1.5.1
- [feat] switched back to history mode (no more '#' in url)

View File

@@ -21,6 +21,7 @@ Here is an unordered list of the current functionalities, and some that may come
- [x] QR code generator
- [ ] CSS memo (cheat sheet)
- [ ] REGEX memo (cheat sheet) + tester?
- [ ] Minify/un-minify
- [ ] Image exif editor/remover
- [ ] Bip39 pass-phrase generator
- [ ] Crontab friendly generator
@@ -81,4 +82,4 @@ Coded with ❤️ by [Corentin Thomasset](//corentin-thomasset.fr).
This project is continuously deployed using [vercel.com](https://vercel.com).
## License
This project is under the [MIT license](LICENSE).
This project is under the [MIT license](LICENSE).

2
package-lock.json generated
View File

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

View File

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

5
public/humans.txt Normal file
View File

@@ -0,0 +1,5 @@
/* TEAM */
Developer: Corentin Thomasset
Site: https://github.com/CorentinTh
Twitter: @cthmsst

View File

@@ -17,6 +17,7 @@
<meta itemprop="image" content="/img/banner.png">
<meta property="og:image" content="/img/banner.png">
<meta name="twitter:image" content="/img/banner.png">
<link rel="author" href="humans.txt" />
</head>
<body>
<noscript>

View File

@@ -20,7 +20,8 @@ if (process.env.NODE_ENV === 'production') {
console.log('New content is downloading.')
},
updated () {
console.log('New content is available; please refresh.')
console.log('New content is available; hard refresh.');
window.location.reload(true);
},
offline () {
console.log('No internet connection found. App is running in offline mode.')

View File

@@ -19,5 +19,11 @@ module.exports = {
})
]
}
},
pwa: {
workboxOptions: {
skipWaiting: true,
clientsClaim: true,
}
}
}