From ffb47cf5bad2d389f5466c53ad1208dabf3e6691 Mon Sep 17 00:00:00 2001
From: Christian Beutel <>
Date: Sat, 16 Nov 2024 16:21:31 +0100
Subject: [PATCH] v0.11.0
---
CHANGELOG.md | 14 ++++++++++++++
docs/package-lock.json | 4 ++--
docs/package.json | 2 +-
docs/src/components/footer.astro | 2 +-
docs/src/content/docs/getting-started/changelog.md | 14 ++++++++++++++
web/package.json | 2 +-
.../logo/logo_text_light_with_version.svelte | 2 +-
web/src/lib/components/mountain.svelte | 4 ++--
web/src/routes/+layout.svelte | 3 +--
9 files changed, 37 insertions(+), 10 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 65a8086c..6d5f7e46 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,17 @@
+# v0.11.0
+## Features
+- Other user's profiles can now be viewed
+- The summit log author is now listed in the summit log table
+- The trail author is now listed for every trail
+- Trails can now be filtered by author
+- Users will now receive an error message when they try to upload a photo that is too large
+- Updated 3D Model on front page
+
+## Bug fixes
+- Waypoints and summit logs of shared trails are now properly displayed
+- Fixes missing translation for trail categories
+- Fixes events in profile calendar
+
# v0.10.1
## Features
- Adds elevation loss to trails. Please note that trails created before this version will have a default elevation loss of 0. Edit & save to update.
diff --git a/docs/package-lock.json b/docs/package-lock.json
index 85fc73a5..71a01056 100644
--- a/docs/package-lock.json
+++ b/docs/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "docs",
- "version": "0.10.1",
+ "version": "0.11.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "docs",
- "version": "0.10.1",
+ "version": "0.11.0",
"dependencies": {
"@astrojs/check": "^0.7.0",
"@astrojs/node": "^8.2.6",
diff --git a/docs/package.json b/docs/package.json
index e1f1a9f2..f7db58d7 100644
--- a/docs/package.json
+++ b/docs/package.json
@@ -1,7 +1,7 @@
{
"name": "docs",
"type": "module",
- "version": "0.10.1",
+ "version": "0.11.0",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
diff --git a/docs/src/components/footer.astro b/docs/src/components/footer.astro
index 3d06eca3..9e848ad9 100644
--- a/docs/src/components/footer.astro
+++ b/docs/src/components/footer.astro
@@ -111,7 +111,7 @@ const isNotHomepage = Astro.props.slug !== "";
class="fill-primary dark:fill-white"
font-size="0.75rem"
>
- v0.10.1
+ v0.11.0
diff --git a/docs/src/content/docs/getting-started/changelog.md b/docs/src/content/docs/getting-started/changelog.md
index 9337c9ab..ac27e3eb 100644
--- a/docs/src/content/docs/getting-started/changelog.md
+++ b/docs/src/content/docs/getting-started/changelog.md
@@ -3,6 +3,20 @@ title: Changelog
description: What changed in the last patch?
---
+## v0.11.0
+### Features
+- Other user's profiles can now be viewed
+- The summit log author is now listed in the summit log table
+- The trail author is now listed for every trail
+- Trails can now be filtered by author
+- Users will now receive an error message when they try to upload a photo that is too large
+- Updated 3D Model on front page
+
+### Bug fixes
+- Waypoints and summit logs of shared trails are now properly displayed
+- Fixes missing translation for trail categories
+- Fixes events in profile calendar
+
## v0.10.1
### Features
- Adds elevation loss to trails. Please note that trails created before this version will have a default elevation loss of 0. Edit & save to update.
diff --git a/web/package.json b/web/package.json
index 7e85d5f3..b1188024 100644
--- a/web/package.json
+++ b/web/package.json
@@ -1,6 +1,6 @@
{
"name": "wanderer",
- "version": "0.10.1",
+ "version": "0.11.0",
"private": true,
"scripts": {
"dev": "vite dev",
diff --git a/web/src/lib/components/logo/logo_text_light_with_version.svelte b/web/src/lib/components/logo/logo_text_light_with_version.svelte
index 0f83678d..037ada09 100644
--- a/web/src/lib/components/logo/logo_text_light_with_version.svelte
+++ b/web/src/lib/components/logo/logo_text_light_with_version.svelte
@@ -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"
fill="#242734"
/>
- v0.10.1
+ v0.11.0
diff --git a/web/src/lib/components/mountain.svelte b/web/src/lib/components/mountain.svelte
index ca9aaaf2..537dfaf9 100644
--- a/web/src/lib/components/mountain.svelte
+++ b/web/src/lib/components/mountain.svelte
@@ -42,10 +42,10 @@ Command: npx @threlte/gltf@2.0.1 static/models/mountain.glb
});
$: cabinLightIntensity.set($theme == "dark" ? 4 : 0);
- const sunLightIntensity = tweened($theme == "light" ? 4 : 0, {
+ const sunLightIntensity = tweened($theme == "light" ? 5 : 0, {
duration: 500,
});
- $: sunLightIntensity.set($theme == "light" ? 4 : 0);
+ $: sunLightIntensity.set($theme == "light" ? 5 : 0);
const moonLightIntensity = tweened($theme == "dark" ? 0.8 : 0, {
duration: 500,
diff --git a/web/src/routes/+layout.svelte b/web/src/routes/+layout.svelte
index 563b07a3..071190d3 100644
--- a/web/src/routes/+layout.svelte
+++ b/web/src/routes/+layout.svelte
@@ -1,5 +1,4 @@