This commit is contained in:
Christian Beutel
2024-12-05 19:41:03 +01:00
parent 1fc8444d59
commit ed6968db53
8 changed files with 68 additions and 10 deletions

View File

@@ -1,3 +1,32 @@
# v0.12.0
> [!CAUTION]
This release contains breaking changes. Most migrations will happen automatically, but you will need to take action in two places that will be clearly marked ⚠️ further down.
## Maintenance
- Updates to meilisearch version 0.11.3.
- ⚠️ meilisearch indices are not compatible across minor versions. This means you will need to rename or delete your [`data.ms`](https://github.com/Flomp/wanderer/blob/8635de78b9f1510e2316b08e605b175a2615f4db/docker-compose.yml#L19) folder on your host system to force meilisearch to rebuild the index on the next start (note that this can take a little while).
## Features
- Adds password reset email function for users (see [docs](https://wanderer.to/guides/authentication/#forgot-your-password) for more info)
- You can now add photos to your summit logs
- Complete rewrite of the map logic switching from raster to vector tiles
⚠️ Custom raster tilesets added via `Settings -> Display -> Tilesets` will no longer work. You will have to delete them for the map to show correctly. Tileset URLs must now point to a valid `style.json` describing a vector tileset (see [docs](https://wanderer.to/guides/customize-map/#custom-map-styles) for more info).
- 3D Terrain and Hillshading are now available (see [docs](https://wanderer.to/guides/customize-map/#terrain--hillshading) fore more info)
- Adds two more default map styles: CARTO Light & Dark
- Adds loading animations for trail lists
## Bug fixes
- Fixes bug that caused a new trail to be created instead of updated when uploading a new GPS data source to an existing trail
- Fixes bug that caused trails to throw a 404 error when they had summit logs created before v0.11.0
- Waypoint markers can now also be dragged after a trail was saved
- Fixes issue with GPX export when using Google Chrome (thanks [@tofublock](https://github.com/tofublock))
## Miscellaneous
As the number of contributors to this project continues to grow (which Im very happy about), Ive set up a [Discord channel](https://discord.gg/MdpybUHc) for more direct communication. If youre interested in helping with Wanderer, feel free to join!
# v0.11.0 # v0.11.0
## Features ## Features
- Other user's profiles can now be viewed - Other user's profiles can now be viewed

View File

@@ -1,12 +1,12 @@
{ {
"name": "docs", "name": "docs",
"version": "0.11.0", "version": "0.12.0",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "docs", "name": "docs",
"version": "0.11.0", "version": "0.12.0",
"dependencies": { "dependencies": {
"@astrojs/check": "^0.7.0", "@astrojs/check": "^0.7.0",
"@astrojs/node": "^8.2.6", "@astrojs/node": "^8.2.6",

View File

@@ -1,7 +1,7 @@
{ {
"name": "docs", "name": "docs",
"type": "module", "type": "module",
"version": "0.11.0", "version": "0.12.0",
"scripts": { "scripts": {
"dev": "astro dev", "dev": "astro dev",
"start": "astro dev", "start": "astro dev",

View File

@@ -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.11.0 v0.12.0
</text> </text>
</svg> </svg>
</div> </div>

View File

@@ -3,6 +3,35 @@ title: Changelog
description: What changed in the last patch? description: What changed in the last patch?
--- ---
## v0.12.0
> [!CAUTION]
This release contains breaking changes. Most migrations will happen automatically, but you will need to take action in two places that will be clearly marked ⚠️ further down.
### Maintenance
- Updates to meilisearch version 0.11.3.
- ⚠️ meilisearch indices are not compatible across minor versions. This means you will need to rename or delete your [`data.ms`](https://github.com/Flomp/wanderer/blob/8635de78b9f1510e2316b08e605b175a2615f4db/docker-compose.yml#L19) folder on your host system to force meilisearch to rebuild the index on the next start (note that this can take a little while).
### Features
- Adds password reset email function for users (see [docs](https://wanderer.to/guides/authentication/#forgot-your-password) for more info)
- You can now add photos to your summit logs
- Complete rewrite of the map logic switching from raster to vector tiles
⚠️ Custom raster tilesets added via `Settings -> Display -> Tilesets` will no longer work. You will have to delete them for the map to show correctly. Tileset URLs must now point to a valid `style.json` describing a vector tileset (see [docs](https://wanderer.to/guides/customize-map/#custom-map-styles) for more info).
- 3D Terrain and Hillshading are now available (see [docs](https://wanderer.to/guides/customize-map/#terrain--hillshading) fore more info)
- Adds two more default map styles: CARTO Light & Dark
- Adds loading animations for trail lists
### Bug fixes
- Fixes bug that caused a new trail to be created instead of updated when uploading a new GPS data source to an existing trail
- Fixes bug that caused trails to throw a 404 error when they had summit logs created before v0.11.0
- Waypoint markers can now also be dragged after a trail was saved
- Fixes issue with GPX export when using Google Chrome (thanks [@tofublock](https://github.com/tofublock))
### Miscellaneous
As the number of contributors to this project continues to grow (which Im very happy about), Ive set up a [Discord channel](https://discord.gg/MdpybUHc) for more direct communication. If youre interested in helping with Wanderer, feel free to join!
## v0.11.0 ## v0.11.0
### Features ### Features
- Other user's profiles can now be viewed - Other user's profiles can now be viewed
@@ -141,8 +170,8 @@ description: What changed in the last patch?
## v0.5.0 ## v0.5.0
### ⚠️ Breaking changes ⚠️ > [!CAUTION]
- This version updates the index pattern of the meilisearch index. Please delete your `data.ms` folder before launching wanderer. The indices will be rebuilt on launch. Otherwise trail filtering will no longer work. This version updates the index pattern of the meilisearch index. Please delete or rename your `data.ms` folder before launching wanderer. The indices will be rebuilt on launch. Otherwise trail filtering will no longer work.
### Features ### Features
- Trails can now be filtered by date - Trails can now be filtered by date

4
web/package-lock.json generated
View File

@@ -1,12 +1,12 @@
{ {
"name": "wanderer", "name": "wanderer",
"version": "0.11.0", "version": "0.12.0",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "wanderer", "name": "wanderer",
"version": "0.11.0", "version": "0.12.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",

View File

@@ -1,6 +1,6 @@
{ {
"name": "wanderer", "name": "wanderer",
"version": "0.11.0", "version": "0.12.0",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "vite dev", "dev": "vite dev",

View File

@@ -95,5 +95,5 @@
d="M43.857 43.3045C44.0569 43.0652 44.4246 43.0652 44.6245 43.3045L46.6259 45.7008C46.8978 46.0263 46.6663 46.5213 46.2421 46.5213H42.2394C41.8152 46.5213 41.5837 46.0263 41.8556 45.7008L43.857 43.3045Z" d="M43.857 43.3045C44.0569 43.0652 44.4246 43.0652 44.6245 43.3045L46.6259 45.7008C46.8978 46.0263 46.6663 46.5213 46.2421 46.5213H42.2394C41.8152 46.5213 41.5837 46.0263 41.8556 45.7008L43.857 43.3045Z"
fill="#242734" fill="#242734"
/> />
<text x="170" y="64" fill="white" font-size="0.75rem">v0.11.0</text> <text x="170" y="64" fill="white" font-size="0.75rem">v0.12.0</text>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 10 KiB