From b42f6db0248160c0f1498a3c41f8ab8cb39aed82 Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Mon, 7 Sep 2020 21:56:37 +0100 Subject: [PATCH] Release 2.5.0 --- CHANGELOG.md | 10 ++++++++++ docker/Dockerfile | 2 +- package.json | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 661d647..9756d59 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ Dates are in UTC. +## 2.5.0 (2020-09-07) + +- Add `filters.fitView` config option - this will prevent the map from re-fitting automatically by default when a live location changes ([#41](https://github.com/owntracks/frontend/issues/41)) +- Show regions for location on popup +- Fix vertical offset of non-pin popups +- Build Docker images for multiple architectures (linux/amd64, linux/arm/v7, linux/arm64) using GitHub Actions ([#38](https://github.com/owntracks/frontend/pull/38), [@wollew](https://github.com/wollew)) +- Replace Travis CI with GitHub Actions build/lint/test workflows ([#39](https://github.com/owntracks/frontend/pull/39)) +- Replace node-sass with sass (dart-sass) +- Upgrade dependencies + ## 2.4.0 (2020-06-01) - Add `filters.minAccuracy` config option - this allows ignoring location points which do diff --git a/docker/Dockerfile b/docker/Dockerfile index f604772..e1feb71 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -6,7 +6,7 @@ COPY . ./ RUN yarn build FROM nginx:1.17-alpine -LABEL version="2.4.0" +LABEL version="2.5.0" LABEL description="OwnTracks UI" LABEL maintainer="Linus Groh " ENV LISTEN_PORT=80 \ diff --git a/package.json b/package.json index 5cef63b..a32953b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "owntracks-ui", - "version": "2.4.0", + "version": "2.5.0", "author": { "name": "Linus Groh", "email": "mail@linusgroh.de"