This commit is contained in:
Christian Beutel
2024-11-16 16:21:31 +01:00
parent 54835b10d1
commit ffb47cf5ba
9 changed files with 37 additions and 10 deletions

View File

@@ -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 # v0.10.1
## Features ## 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. - 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.

View File

@@ -1,12 +1,12 @@
{ {
"name": "docs", "name": "docs",
"version": "0.10.1", "version": "0.11.0",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "docs", "name": "docs",
"version": "0.10.1", "version": "0.11.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.10.1", "version": "0.11.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.10.1 v0.11.0
</text> </text>
</svg> </svg>
</div> </div>

View File

@@ -3,6 +3,20 @@ title: Changelog
description: What changed in the last patch? 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 ## v0.10.1
### Features ### 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. - 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.

View File

@@ -1,6 +1,6 @@
{ {
"name": "wanderer", "name": "wanderer",
"version": "0.10.1", "version": "0.11.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.10.1</text> <text x="170" y="64" fill="white" font-size="0.75rem">v0.11.0</text>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 10 KiB

View File

@@ -42,10 +42,10 @@ Command: npx @threlte/gltf@2.0.1 static/models/mountain.glb
}); });
$: cabinLightIntensity.set($theme == "dark" ? 4 : 0); $: cabinLightIntensity.set($theme == "dark" ? 4 : 0);
const sunLightIntensity = tweened($theme == "light" ? 4 : 0, { const sunLightIntensity = tweened($theme == "light" ? 5 : 0, {
duration: 500, duration: 500,
}); });
$: sunLightIntensity.set($theme == "light" ? 4 : 0); $: sunLightIntensity.set($theme == "light" ? 5 : 0);
const moonLightIntensity = tweened($theme == "dark" ? 0.8 : 0, { const moonLightIntensity = tweened($theme == "dark" ? 0.8 : 0, {
duration: 500, duration: 500,

View File

@@ -1,5 +1,4 @@
<script lang="ts"> <script lang="ts">
import { browser } from "$app/environment";
import { beforeNavigate, goto } from "$app/navigation"; import { beforeNavigate, goto } from "$app/navigation";
import { page } from "$app/stores"; import { page } from "$app/stores";
import { env } from "$env/dynamic/public"; import { env } from "$env/dynamic/public";
@@ -9,11 +8,11 @@
import { currentUser } from "$lib/stores/user_store"; import { currentUser } from "$lib/stores/user_store";
import { isRouteProtected } from "$lib/util/authorization_util"; import { isRouteProtected } from "$lib/util/authorization_util";
import "@fortawesome/fontawesome-free/css/all.min.css"; import "@fortawesome/fontawesome-free/css/all.min.css";
import { onMount } from "svelte";
import { slide } from "svelte/transition"; import { slide } from "svelte/transition";
import "../css/app.css"; import "../css/app.css";
import "../css/components.css"; import "../css/components.css";
import "../css/theme.css"; import "../css/theme.css";
import { onMount } from "svelte";
beforeNavigate((n) => { beforeNavigate((n) => {
if (!$currentUser && isRouteProtected(n.to?.url?.pathname ?? "")) { if (!$currentUser && isRouteProtected(n.to?.url?.pathname ?? "")) {