v0.7.0
This commit is contained in:
12
CHANGELOG.md
12
CHANGELOG.md
@@ -1,3 +1,15 @@
|
|||||||
|
# v0.7.0
|
||||||
|
## Features
|
||||||
|
- Trail sort and sort direction are now remembered through a page reload
|
||||||
|
- You can now pick between OpenStreetMaps and OpenTopoMaps tiles
|
||||||
|
- The gradient track line can now display altitude, slope, and speed
|
||||||
|
- A waypoint's coordinates can now be inferred from a photo's EXIF data
|
||||||
|
|
||||||
|
## Docs
|
||||||
|
|
||||||
|
- Added a guide for custom categories
|
||||||
|
|
||||||
|
|
||||||
# v0.6.1
|
# v0.6.1
|
||||||
## Bug fixes
|
## Bug fixes
|
||||||
- Fixes a bug that would show wrong comments under a trail
|
- Fixes a bug that would show wrong comments under a trail
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
.DS_Store
|
.DS_Store
|
||||||
node_modules
|
node_modules
|
||||||
dist
|
|
||||||
.astro
|
.astro
|
||||||
.vscode
|
.vscode
|
||||||
@@ -1,10 +1,10 @@
|
|||||||
FROM node:slim AS runtime
|
FROM node:slim AS runtime
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
COPY . .
|
COPY ./dist dist/
|
||||||
|
COPY package*.json .
|
||||||
|
|
||||||
RUN npm install
|
RUN npm ci --omit=dev
|
||||||
RUN npm run build
|
|
||||||
|
|
||||||
ENV HOST=0.0.0.0
|
ENV HOST=0.0.0.0
|
||||||
ENV PORT=4321
|
ENV PORT=4321
|
||||||
|
|||||||
4
docs/package-lock.json
generated
4
docs/package-lock.json
generated
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "docs",
|
"name": "docs",
|
||||||
"version": "0.6.1",
|
"version": "0.7.0",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "docs",
|
"name": "docs",
|
||||||
"version": "0.6.1",
|
"version": "0.7.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@astrojs/check": "^0.7.0",
|
"@astrojs/check": "^0.7.0",
|
||||||
"@astrojs/node": "^8.2.6",
|
"@astrojs/node": "^8.2.6",
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "docs",
|
"name": "docs",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "0.6.1",
|
"version": "0.7.0",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "astro dev",
|
"dev": "astro dev",
|
||||||
"start": "astro dev",
|
"start": "astro dev",
|
||||||
|
|||||||
@@ -111,7 +111,7 @@ const isNotHomepage = Astro.props.slug !== "";
|
|||||||
class="fill-primary dark:fill-white"
|
class="fill-primary dark:fill-white"
|
||||||
font-size="0.75rem"
|
font-size="0.75rem"
|
||||||
>
|
>
|
||||||
v0.6.1
|
v0.7.0
|
||||||
</text>
|
</text>
|
||||||
</svg>
|
</svg>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -3,6 +3,17 @@ title: Changelog
|
|||||||
description: What changed in the last patch?
|
description: What changed in the last patch?
|
||||||
---
|
---
|
||||||
|
|
||||||
|
## v0.7.0
|
||||||
|
### Features
|
||||||
|
- Trail sort and sort direction are now remembered through a page reload
|
||||||
|
- You can now pick between OpenStreetMaps and OpenTopoMaps tiles
|
||||||
|
- The gradient track line can now display altitude, slope, and speed
|
||||||
|
- A waypoint's coordinates can now be inferred from a photo's EXIF data
|
||||||
|
|
||||||
|
### Docs
|
||||||
|
|
||||||
|
- Added a guide for custom categories
|
||||||
|
|
||||||
## v0.6.1
|
## v0.6.1
|
||||||
### Bug fixes
|
### Bug fixes
|
||||||
- Fixes a bug that would show wrong comments under a trail
|
- Fixes a bug that would show wrong comments under a trail
|
||||||
|
|||||||
4
web/package-lock.json
generated
4
web/package-lock.json
generated
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "wanderer",
|
"name": "wanderer",
|
||||||
"version": "0.6.1",
|
"version": "0.7.0",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "wanderer",
|
"name": "wanderer",
|
||||||
"version": "0.6.1",
|
"version": "0.7.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@fortawesome/fontawesome-free": "^6.5.1",
|
"@fortawesome/fontawesome-free": "^6.5.1",
|
||||||
"@sveltejs/adapter-node": "^4.0.1",
|
"@sveltejs/adapter-node": "^4.0.1",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "wanderer",
|
"name": "wanderer",
|
||||||
"version": "0.6.1",
|
"version": "0.7.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite dev",
|
"dev": "vite dev",
|
||||||
|
|||||||
@@ -27,6 +27,9 @@
|
|||||||
|
|
||||||
$: gpxData = trail?.expand.gpx_data;
|
$: gpxData = trail?.expand.gpx_data;
|
||||||
$: if (gpxData && controlElevation) {
|
$: if (gpxData && controlElevation) {
|
||||||
|
controlElevation.updateOptions({
|
||||||
|
autofitBounds: true,
|
||||||
|
});
|
||||||
controlElevation.clear();
|
controlElevation.clear();
|
||||||
controlElevation.load(gpxData);
|
controlElevation.load(gpxData);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user