Compare commits

...

3 Commits

Author SHA1 Message Date
kolaente 39a2774d57
Fix release buckets in drone config 2020-08-06 14:52:11 +02:00
kolaente efad37add9
Release preparations 2020-08-06 12:31:10 +02:00
kolaente eb1b021d72
Prevent rendering html in tooltips
(cherry picked from commit 5c9e8b8b0c)
2020-08-06 12:29:45 +02:00
4 changed files with 15 additions and 7 deletions

View File

@ -60,12 +60,13 @@ steps:
image: plugins/s3:1 image: plugins/s3:1
pull: true pull: true
settings: settings:
bucket: vikunja bucket: vikunja-releases
access_key: access_key:
from_secret: aws_access_key_id from_secret: aws_access_key_id
secret_key: secret_key:
from_secret: aws_secret_access_key from_secret: aws_secret_access_key
endpoint: https://storage.kolaente.de endpoint: https://s3.fr-par.scw.cloud
region: fr-par
path_style: true path_style: true
source: vikunja-frontend-master.zip source: vikunja-frontend-master.zip
target: /frontend/ target: /frontend/
@ -109,12 +110,13 @@ steps:
image: plugins/s3:1 image: plugins/s3:1
pull: true pull: true
settings: settings:
bucket: vikunja bucket: vikunja-releases
access_key: access_key:
from_secret: aws_access_key_id from_secret: aws_access_key_id
secret_key: secret_key:
from_secret: aws_secret_access_key from_secret: aws_secret_access_key
endpoint: https://storage.kolaente.de endpoint: https://s3.fr-par.scw.cloud
region: fr-par
path_style: true path_style: true
source: vikunja-frontend-${DRONE_TAG##v}.zip source: vikunja-frontend-${DRONE_TAG##v}.zip
target: /frontend/ target: /frontend/
@ -228,7 +230,7 @@ depends_on:
steps: steps:
- name: telegram - name: telegram
image: appleboy/drone-telegram image: appleboy/drone-telegram:1-linux-amd64
settings: settings:
token: token:
from_secret: TELEGRAM_TOKEN from_secret: TELEGRAM_TOKEN

View File

@ -9,6 +9,12 @@ All releases can be found on https://code.vikunja.io/frontend/releases.
The releases aim at the api versions which is why there are missing versions. The releases aim at the api versions which is why there are missing versions.
## [0.14.1 - 2020-08-06]
### Fixed
* Prevent html being rendered in tooltips
## [0.14.0 - 2020-07-01] ## [0.14.0 - 2020-07-01]
### Added ### Added

View File

@ -4,7 +4,7 @@
[![Build Status](https://drone.kolaente.de/api/badges/vikunja/frontend/status.svg)](https://drone.kolaente.de/vikunja/frontend) [![Build Status](https://drone.kolaente.de/api/badges/vikunja/frontend/status.svg)](https://drone.kolaente.de/vikunja/frontend)
[![License: LGPL v3](https://img.shields.io/badge/License-LGPL%20v3-blue.svg)](LICENSE) [![License: LGPL v3](https://img.shields.io/badge/License-LGPL%20v3-blue.svg)](LICENSE)
[![Download](https://img.shields.io/badge/download-v0.14.0-brightgreen.svg)](https://dl.vikunja.io) [![Download](https://img.shields.io/badge/download-v0.14.1-brightgreen.svg)](https://dl.vikunja.io)
This is the web frontend for Vikunja, written in Vue.js. This is the web frontend for Vikunja, written in Vue.js.

View File

@ -120,7 +120,7 @@ Vue.component('icon', FontAwesomeIcon)
// Tooltip // Tooltip
import VTooltip from 'v-tooltip' import VTooltip from 'v-tooltip'
Vue.use(VTooltip) Vue.use(VTooltip, {defaultHtml: false})
// PWA // PWA
import './registerServiceWorker' import './registerServiceWorker'