diff --git a/backend/server/adventures/serializers.py b/backend/server/adventures/serializers.py index 3497a5a..f15f1eb 100644 --- a/backend/server/adventures/serializers.py +++ b/backend/server/adventures/serializers.py @@ -463,7 +463,7 @@ class CollectionSerializer(CustomModelSerializer): class Meta: model = Collection fields = ['id', 'description', 'user', 'name', 'is_public', 'locations', 'created_at', 'start_date', 'end_date', 'transportations', 'notes', 'updated_at', 'checklists', 'is_archived', 'shared_with', 'link', 'lodging'] - read_only_fields = ['id', 'created_at', 'updated_at', 'user'] + read_only_fields = ['id', 'created_at', 'updated_at', 'user', 'shared_with'] def to_representation(self, instance): representation = super().to_representation(instance) diff --git a/frontend/src/lib/config.ts b/frontend/src/lib/config.ts index 7026a62..22423fa 100644 --- a/frontend/src/lib/config.ts +++ b/frontend/src/lib/config.ts @@ -1,4 +1,4 @@ -export let appVersion = 'v0.10.0-main-07142025'; +export let appVersion = 'v0.10.0-main-07312025'; export let versionChangelog = 'https://github.com/seanmorley15/AdventureLog/releases/tag/v0.10.0'; export let appTitle = 'AdventureLog'; export let copyrightYear = '2023-2025'; diff --git a/frontend/src/lib/json/backgrounds.json b/frontend/src/lib/json/backgrounds.json index 7b1b896..7e2acb8 100644 --- a/frontend/src/lib/json/backgrounds.json +++ b/frontend/src/lib/json/backgrounds.json @@ -29,6 +29,16 @@ "url": "backgrounds/adventurelog_showcase_6.webp", "author": "Sean Morley", "location": "Smugglers' Notch Resort, Vermont, USA" + }, + { + "url": "backgrounds/adventurelog_showcase_7.webp", + "author": "Sean Morley", + "location": "Davos, Switzerland" + }, + { + "url": "backgrounds/adventurelog_showcase_8.webp", + "author": "Sean Morley", + "location": "Saddleback Ski Area, Maine, USA" } ] } diff --git a/frontend/src/locales/en.json b/frontend/src/locales/en.json index 1ea82da..bacf7e2 100644 --- a/frontend/src/locales/en.json +++ b/frontend/src/locales/en.json @@ -670,7 +670,11 @@ "not_shared_with": "Not Shared With", "no_shared_found": "No collections found that are shared with you.", "set_public": "In order to allow users to share with you, you need your profile set to public.", - "go_to_settings": "Go to settings" + "go_to_settings": "Go to settings", + "revoke_invite": "Revoke Invite", + "send_invite": "Send Invite", + "available": "Available", + "pending": "Pending" }, "languages": {}, "profile": { diff --git a/frontend/static/backgrounds/adventurelog_showcase_7.webp b/frontend/static/backgrounds/adventurelog_showcase_7.webp new file mode 100644 index 0000000..a2a07d4 Binary files /dev/null and b/frontend/static/backgrounds/adventurelog_showcase_7.webp differ diff --git a/frontend/static/backgrounds/adventurelog_showcase_8.webp b/frontend/static/backgrounds/adventurelog_showcase_8.webp new file mode 100644 index 0000000..87fa2f4 Binary files /dev/null and b/frontend/static/backgrounds/adventurelog_showcase_8.webp differ