Change repo url (#722)

This commit is contained in:
Jonas Plum
2026-01-13 20:23:42 +01:00
committed by GitHub
parent b65fbdd128
commit c2b86f5521
13 changed files with 34 additions and 34 deletions

View File

@@ -1,8 +1,8 @@
blank_issues_enabled: false blank_issues_enabled: false
contact_links: contact_links:
- name: "💡 Feature request" - name: "💡 Feature request"
url: https://github.com/Flomp/wanderer/discussions/new?category=ideas url: https://github.com/open-wanderer/wanderer/discussions/new?category=ideas
about: Suggest an idea for this project. about: Suggest an idea for this project.
- name: "❓ Ask a question" - name: "❓ Ask a question"
url: https://github.com/Flomp/wanderer/discussions/new?category=q-a url: https://github.com/open-wanderer/wanderer/discussions/new?category=q-a
about: Please ask and answer questions here. about: Please ask and answer questions here.

View File

@@ -114,7 +114,7 @@ This release contains breaking changes. They are marked with a ⚠️.
**Please update to version v0.16.5 first before updating to v0.17.0.** **Please update to version v0.16.5 first before updating to v0.17.0.**
## Configuration ## Configuration
Check the reopsitory's [`docker-compose.yml`](https://github.com/Flomp/wanderer/blob/main/docker-compose.yml) for a valid configuration. Check the reopsitory's [`docker-compose.yml`](https://github.com/open-wanderer/wanderer/blob/main/docker-compose.yml) for a valid configuration.
- ⚠️ The PocketBase environment variable `POCKETBASE_ENCRYPTION_KEY` is now required. It requires a valid 32 character AES key as its value. To generate a key, run `openssl rand -hex 16`. - ⚠️ The PocketBase environment variable `POCKETBASE_ENCRYPTION_KEY` is now required. It requires a valid 32 character AES key as its value. To generate a key, run `openssl rand -hex 16`.
- ⚠️ The PocketBase environment variable `ORIGIN`is now required. It must be set to the public IP or hostname (including the port) of your wanderer frontend and must equal the value set for the frontend's `ORIGIN` environment variable. - ⚠️ The PocketBase environment variable `ORIGIN`is now required. It must be set to the public IP or hostname (including the port) of your wanderer frontend and must equal the value set for the frontend's `ORIGIN` environment variable.
@@ -363,7 +363,7 @@ This release contains breaking changes. Most migrations will happen automaticall
## Maintenance ## Maintenance
- Updates to meilisearch version 0.11.3. - 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). - meilisearch indices are not compatible across minor versions. This means you will need to rename or delete your [`data.ms`](https://github.com/open-wanderer/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 ## Features
- Adds password reset email function for users (see [docs](https://wanderer.to/guides/authentication/#forgot-your-password) for more info) - Adds password reset email function for users (see [docs](https://wanderer.to/guides/authentication/#forgot-your-password) for more info)
@@ -534,7 +534,7 @@ As the number of contributors to this project continues to grow (which Im ver
## Features ## Features
- Trails can now be filtered by date - Trails can now be filtered by date
- Elevation, slope and speed graphs are now also visible when creating a new trail - Elevation, slope and speed graphs are now also visible when creating a new trail
- When creating a new trail you now have the option to create a new route from scratch without uploading a GPX file. Press the "Draw a route" button and plan your new route directly in wanderer. We use [valhalla](https://github.com/valhalla/valhalla) and their associated free [hosted service](https://gis-ops.com/global-open-valhalla-server-online/) to calculate the routes. To activate the feature make sure to set the PUBLIC_VALHALLA_URL environment variable on you wanderer-web service. See the current [docker-compose.yml](https://github.com/Flomp/wanderer/blob/main/docker-compose.yml) for a working configuration. - When creating a new trail you now have the option to create a new route from scratch without uploading a GPX file. Press the "Draw a route" button and plan your new route directly in wanderer. We use [valhalla](https://github.com/valhalla/valhalla) and their associated free [hosted service](https://gis-ops.com/global-open-valhalla-server-online/) to calculate the routes. To activate the feature make sure to set the PUBLIC_VALHALLA_URL environment variable on you wanderer-web service. See the current [docker-compose.yml](https://github.com/open-wanderer/wanderer/blob/main/docker-compose.yml) for a working configuration.
## Bug fixes ## Bug fixes
- Uploaded trails will now have a date if it can be parsed from the file - Uploaded trails will now have a date if it can be parsed from the file
@@ -583,9 +583,9 @@ As the number of contributors to this project continues to grow (which Im ver
## Features ## Features
- Trails can now be added to a list while editing or creating a trail. The trail must be saved at least once to add it to a list. - Trails can now be added to a list while editing or creating a trail. The trail must be saved at least once to add it to a list.
- wanderer now has an auto-upload folder. GPX files in this folder will be autmatically uploaded and converted to a trail. Read the [docs](https://github.com/Flomp/wanderer/wiki/API#auto-upload-folder) for more information. - wanderer now has an auto-upload folder. GPX files in this folder will be autmatically uploaded and converted to a trail. Read the [docs](https://github.com/open-wanderer/wanderer/wiki/API#auto-upload-folder) for more information.
- addded support for TCX and KML files. Note that this feature is still experimental. Please report any issues you encounter. - addded support for TCX and KML files. Note that this feature is still experimental. Please report any issues you encounter.
- added OAuth support. Read [here](https://github.com/Flomp/wanderer/wiki/OAuth) how to enable providers. - added OAuth support. Read [here](https://github.com/open-wanderer/wanderer/wiki/OAuth) how to enable providers.
## Bug fixes ## Bug fixes
@@ -618,7 +618,7 @@ As the number of contributors to this project continues to grow (which Im ver
- waypoint markers can now be moved with drag & drop - waypoint markers can now be moved with drag & drop
- lists can now be displayed as a map showing all trails contained in the list - lists can now be displayed as a map showing all trails contained in the list
- you can now prevent users from signing up by setting the `DISABLE_SIGNUP` environment variable to `true` - you can now prevent users from signing up by setting the `DISABLE_SIGNUP` environment variable to `true`
- you can now upload GPX files via the API to create trails. Check the [documentation](https://github.com/Flomp/wanderer/wiki/API#upload-trails) for more info. - you can now upload GPX files via the API to create trails. Check the [documentation](https://github.com/open-wanderer/wanderer/wiki/API#upload-trails) for more info.
- the city index now includes states - the city index now includes states
> Note: for city states to show up in your search you have to delete your data.ms folder if you already have a previous installation of wanderer. The indices will then be rebuilt on startup. > Note: for city states to show up in your search you have to delete your data.ms folder if you already have a previous installation of wanderer. The indices will then be rebuilt on startup.

View File

@@ -4,8 +4,8 @@
<h4>The trail catalogue that makes your GPS data searchable</h4> <h4>The trail catalogue that makes your GPS data searchable</h4>
[![Docker Image Version (tag latest semver)](https://img.shields.io/docker/v/flomp/wanderer-web/latest)](https://github.com/Flomp/wanderer/) [![Docker Image Version (tag latest semver)](https://img.shields.io/docker/v/open-wanderer/wanderer-web/latest)](https://github.com/open-wanderer/wanderer/)
[![GitHub Repo stars](https://img.shields.io/github/stars/flomp/wanderer?style=social)](https://github.com/Flomp/wanderer/) [![GitHub Repo stars](https://img.shields.io/github/stars/open-wanderer/wanderer?style=social)](https://github.com/open-wanderer/wanderer/)
[![Buy Me A Coffee](https://img.shields.io/badge/Support-wanderer-yellow?logo=buy-me-a-coffee)](https://www.buymeacoffee.com/wanderertrails) [![Buy Me A Coffee](https://img.shields.io/badge/Support-wanderer-yellow?logo=buy-me-a-coffee)](https://www.buymeacoffee.com/wanderertrails)
[![Discord](https://img.shields.io/discord/1249895457396621332?style=social&logo=discord&label=Developer%20Discord)](https://discord.gg/USSEBY98CP) [![Discord](https://img.shields.io/discord/1249895457396621332?style=social&logo=discord&label=Developer%20Discord)](https://discord.gg/USSEBY98CP)
@@ -32,7 +32,7 @@ The recommended and quickest way to install wanderer is using docker compose:
``` bash ``` bash
# download the docker compose file # download the docker compose file
wget https://raw.githubusercontent.com/Flomp/wanderer/main/docker-compose.yml wget https://raw.githubusercontent.com/open-wanderer/wanderer/main/docker-compose.yml
# build and launch via docker compose # build and launch via docker compose
docker compose up -d docker compose up -d

View File

@@ -18,7 +18,7 @@ export default defineConfig({
replacesTitle: true replacesTitle: true
}, },
social: [ social: [
{ icon: 'github', label: 'GitHub', href: 'https://github.com/flomp/wanderer' }, { icon: 'github', label: 'GitHub', href: 'https://github.com/open-wanderer/wanderer' },
], ],
components: { components: {
Footer: './src/components/footer.astro' Footer: './src/components/footer.astro'

View File

@@ -31,9 +31,9 @@ pocket_key=$(openssl rand -hex 16)
# Download docker-compose.yml using curl or wget # Download docker-compose.yml using curl or wget
if command -v wget >/dev/null 2>&1; then if command -v wget >/dev/null 2>&1; then
wget -O docker-compose.yml https://raw.githubusercontent.com/Flomp/wanderer/refs/heads/main/docker-compose.yml wget -O docker-compose.yml https://raw.githubusercontent.com/open-wanderer/wanderer/refs/heads/main/docker-compose.yml
elif command -v curl >/dev/null 2>&1; then elif command -v curl >/dev/null 2>&1; then
curl -fsSL -o docker-compose.yml https://raw.githubusercontent.com/Flomp/wanderer/refs/heads/main/docker-compose.yml curl -fsSL -o docker-compose.yml https://raw.githubusercontent.com/open-wanderer/wanderer/refs/heads/main/docker-compose.yml
else else
echo "Error: neither wget nor curl is installed." >&2 echo "Error: neither wget nor curl is installed." >&2
exit 1 exit 1

View File

@@ -147,7 +147,7 @@ const isNotHomepage = Astro.locals.starlightRoute.id !== "";
<a href="/changelog/">Changelog</a> <a href="/changelog/">Changelog</a>
</li> </li>
<li> <li>
<a href="https://github.com/Flomp/wanderer/blob/main/LICENSE"> <a href="https://github.com/open-wanderer/wanderer/blob/main/LICENSE">
License License
</a> </a>
</li> </li>
@@ -157,15 +157,15 @@ const isNotHomepage = Astro.locals.starlightRoute.id !== "";
<h5 class="font-semibold">Community</h5> <h5 class="font-semibold">Community</h5>
<ul class="mt-4 text-sm"> <ul class="mt-4 text-sm">
<li> <li>
<a href="https://github.com/Flomp/wanderer">GitHub</a> <a href="https://github.com/open-wanderer/wanderer">GitHub</a>
</li> </li>
<li> <li>
<a href="https://github.com/Flomp/wanderer/issues"> <a href="https://github.com/open-wanderer/wanderer/issues">
Issues Issues
</a> </a>
</li> </li>
<li> <li>
<a href="https://github.com/Flomp/wanderer/pulls"> <a href="https://github.com/open-wanderer/wanderer/pulls">
Contribute Contribute
</a> </a>
</li> </li>

View File

@@ -64,7 +64,7 @@
</p> </p>
<p class="mb-12"> <p class="mb-12">
Learn how to add your server to the list <a Learn how to add your server to the list <a
href="https://github.com/Flomp/wanderer/discussions/361">here</a href="https://github.com/open-wanderer/wanderer/discussions/361">here</a
>. >.
</p> </p>
<div <div

View File

@@ -117,7 +117,7 @@ This release contains breaking changes. They are marked with a ⚠️.
::: :::
### Configuration ### Configuration
Check the reopsitory's [`docker-compose.yml`](https://github.com/Flomp/wanderer/blob/main/docker-compose.yml) for a valid configuration. Check the reopsitory's [`docker-compose.yml`](https://github.com/open-wanderer/wanderer/blob/main/docker-compose.yml) for a valid configuration.
- ⚠️ The PocketBase environment variable `POCKETBASE_ENCRYPTION_KEY` is now required. It requires a valid 32 character AES key as its value. To generate a key, run `openssl rand -hex 16`. - ⚠️ The PocketBase environment variable `POCKETBASE_ENCRYPTION_KEY` is now required. It requires a valid 32 character AES key as its value. To generate a key, run `openssl rand -hex 16`.
- ⚠️ The PocketBase environment variable `ORIGIN`is now required. It must be set to the public IP or hostname (including the port) of your wanderer frontend and must equal the value set for the frontend's `ORIGIN` environment variable. - ⚠️ The PocketBase environment variable `ORIGIN`is now required. It must be set to the public IP or hostname (including the port) of your wanderer frontend and must equal the value set for the frontend's `ORIGIN` environment variable.
@@ -368,7 +368,7 @@ This release contains breaking changes. Most migrations will happen automaticall
::: :::
### Maintenance ### Maintenance
- Updates to meilisearch version 0.11.3. - 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). - meilisearch indices are not compatible across minor versions. This means you will need to rename or delete your [`data.ms`](https://github.com/open-wanderer/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 ### Features
- Adds password reset email function for users (see [docs](https://wanderer.to/guides/authentication/#forgot-your-password) for more info) - Adds password reset email function for users (see [docs](https://wanderer.to/guides/authentication/#forgot-your-password) for more info)
@@ -534,7 +534,7 @@ This version updates the index pattern of the meilisearch index. Please delete o
### Features ### Features
- Trails can now be filtered by date - Trails can now be filtered by date
- Elevation, slope and speed graphs are now also visible when creating a new trail - Elevation, slope and speed graphs are now also visible when creating a new trail
- When creating a new trail you now have the option to create a new route from scratch without uploading a GPX file. Press the "Draw a route" button and plan your new route directly in wanderer. We use [valhalla](https://github.com/valhalla/valhalla) and their associated free [hosted service](https://gis-ops.com/global-open-valhalla-server-online/) to calculate the routes. To activate the feature make sure to set the PUBLIC_VALHALLA_URL environment variable on you wanderer-web service. See the current [docker-compose.yml](https://github.com/Flomp/wanderer/blob/main/docker-compose.yml) for a working configuration. - When creating a new trail you now have the option to create a new route from scratch without uploading a GPX file. Press the "Draw a route" button and plan your new route directly in wanderer. We use [valhalla](https://github.com/valhalla/valhalla) and their associated free [hosted service](https://gis-ops.com/global-open-valhalla-server-online/) to calculate the routes. To activate the feature make sure to set the PUBLIC_VALHALLA_URL environment variable on you wanderer-web service. See the current [docker-compose.yml](https://github.com/open-wanderer/wanderer/blob/main/docker-compose.yml) for a working configuration.
### Bug fixes ### Bug fixes
- Uploaded trails will now have a date if it can be parsed from the file - Uploaded trails will now have a date if it can be parsed from the file
@@ -583,9 +583,9 @@ This version updates the index pattern of the meilisearch index. Please delete o
### Features ### Features
- Trails can now be added to a list while editing or creating a trail. The trail must be saved at least once to add it to a list. - Trails can now be added to a list while editing or creating a trail. The trail must be saved at least once to add it to a list.
- wanderer now has an auto-upload folder. GPX files in this folder will be autmatically uploaded and converted to a trail. Read the [docs](https://github.com/Flomp/wanderer/wiki/API#auto-upload-folder) for more information. - wanderer now has an auto-upload folder. GPX files in this folder will be autmatically uploaded and converted to a trail. Read the [docs](https://github.com/open-wanderer/wanderer/wiki/API#auto-upload-folder) for more information.
- addded support for TCX and KML files. Note that this feature is still experimental. Please report any issues you encounter. - addded support for TCX and KML files. Note that this feature is still experimental. Please report any issues you encounter.
- added OAuth support. Read [here](https://github.com/Flomp/wanderer/wiki/OAuth) how to enable providers. - added OAuth support. Read [here](https://github.com/open-wanderer/wanderer/wiki/OAuth) how to enable providers.
### Bug fixes ### Bug fixes
@@ -618,7 +618,7 @@ This version updates the index pattern of the meilisearch index. Please delete o
- waypoint markers can now be moved with drag & drop - waypoint markers can now be moved with drag & drop
- lists can now be displayed as a map showing all trails contained in the list - lists can now be displayed as a map showing all trails contained in the list
- you can now prevent users from signing up by setting the `DISABLE_SIGNUP` environment variable to `true` - you can now prevent users from signing up by setting the `DISABLE_SIGNUP` environment variable to `true`
- you can now upload GPX files via the API to create trails. Check the [documentation](https://github.com/Flomp/wanderer/wiki/API#upload-trails) for more info. - you can now upload GPX files via the API to create trails. Check the [documentation](https://github.com/open-wanderer/wanderer/wiki/API#upload-trails) for more info.
- the city index now includes states - the city index now includes states
> Note: for city states to show up in your search you have to delete your data.ms folder if you already have a previous installation of wanderer. The indices will then be rebuilt on startup. > Note: for city states to show up in your search you have to delete your data.ms folder if you already have a previous installation of wanderer. The indices will then be rebuilt on startup.

View File

@@ -88,4 +88,4 @@ import { Card, CardGrid } from '@astrojs/starlight/components';
</div> </div>
# Contributing # Contributing
Help is welcome at any time. Check out the [GitHub repository](https://github.com/Flomp/wanderer). to get started. If you are not sure where you can help, check the [roadmap](https://github.com/users/Flomp/projects/2) for features in the backlog. If you would like to contribute a translation, you can do so [here](https://crowdin.com/project/wanderer). Help is welcome at any time. Check out the [GitHub repository](https://github.com/open-wanderer/wanderer). to get started. If you are not sure where you can help, check the [roadmap](https://github.com/users/Flomp/projects/2) for features in the backlog. If you would like to contribute a translation, you can do so [here](https://crowdin.com/project/wanderer).

View File

@@ -22,7 +22,7 @@ Once you have set the encryption key, you can proceed to install <span class="-t
## Start ## Start
After cloning the repository, you will find a [`docker-compose.yml`](https://github.com/Flomp/wanderer/blob/main/docker-compose.yml) file in the root directory. This file sets up all necessary components. Start everything by running: After cloning the repository, you will find a [`docker-compose.yml`](https://github.com/open-wanderer/wanderer/blob/main/docker-compose.yml) file in the root directory. This file sets up all necessary components. Start everything by running:
```bash ```bash
docker compose up -d docker compose up -d

View File

@@ -10,7 +10,7 @@ You can install <span class="-tracking-[0.075em]">wanderer</span> components eit
1. Clone the repository: 1. Clone the repository:
```bash ```bash
git clone https://github.com/Flomp/wanderer.git --branch v{version} --single-branch git clone https://github.com/open-wanderer/wanderer.git --branch v{version} --single-branch
``` ```
2. Install dependencies: 2. Install dependencies:
- **Go** ≥ 1.23.0 - **Go** ≥ 1.23.0

View File

@@ -54,8 +54,8 @@ Because it follows a common standard, <span class="-tracking-[0.075em]">wanderer
<span class="-tracking-[0.075em]">wanderer</span> is open-source and developed in the open. You can help shape its future or get involved in many ways: <span class="-tracking-[0.075em]">wanderer</span> is open-source and developed in the open. You can help shape its future or get involved in many ways:
- [GitHub repository](https://github.com/Flomp/wanderer) - [GitHub repository](https://github.com/open-wanderer/wanderer)
- [Issue tracker](https://github.com/Flomp/wanderer/issues) - [Issue tracker](https://github.com/open-wanderer/wanderer/issues)
- [Translation project on Crowdin](https://crowdin.com/project/wanderer) - [Translation project on Crowdin](https://crowdin.com/project/wanderer)
- [Discord server](https://discord.gg/USSEBY98CP) - [Discord server](https://discord.gg/USSEBY98CP)

View File

@@ -41,7 +41,7 @@
> >
</li> </li>
<li> <li>
<a href="https://github.com/Flomp/wanderer/blob/main/LICENSE" <a href="https://github.com/open-wanderer/wanderer/blob/main/LICENSE"
>{$_("license")}</a >{$_("license")}</a
> >
</li> </li>
@@ -50,12 +50,12 @@
<div> <div>
<h5 class="font-semibold">Community</h5> <h5 class="font-semibold">Community</h5>
<ul class="mt-4 text-sm"> <ul class="mt-4 text-sm">
<li><a href="https://github.com/Flomp/wanderer">GitHub</a></li> <li><a href="https://github.com/open-wanderer/wanderer">GitHub</a></li>
<li> <li>
<a href="https://github.com/Flomp/wanderer/issues">Issues</a> <a href="https://github.com/open-wanderer/wanderer/issues">Issues</a>
</li> </li>
<li> <li>
<a href="https://github.com/Flomp/wanderer/pulls" <a href="https://github.com/open-wanderer/wanderer/pulls"
>{$_("contribute")}</a >{$_("contribute")}</a
> >
</li> </li>