1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-08-04 21:15:22 +02:00

chore: update references to GitHub repository (#5861)

This commit is contained in:
Felix Schneider 2025-08-01 10:43:57 +02:00 committed by GitHub
parent b157c7034f
commit 591c96e52b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 14 additions and 17 deletions

View file

@ -35,7 +35,7 @@ conventional_commits = true
filter_unconventional = true filter_unconventional = true
# regex for preprocessing the commit messages # regex for preprocessing the commit messages
commit_preprocessors = [ commit_preprocessors = [
{ pattern = '\((\w+\s)?#([0-9]+)\)', replace = "([#${2}](https://github.com/hay-kot/mealie/issues/${2}))"}, { pattern = '\((\w+\s)?#([0-9]+)\)', replace = "([#${2}](https://github.com/mealie-recipes/mealie/issues/${2}))"},
] ]
# regex for parsing and grouping commits # regex for parsing and grouping commits
commit_parsers = [ commit_parsers = [

View file

@ -13,7 +13,7 @@ Steps:
#### 1. Get your API Token #### 1. Get your API Token
Create an API token from Mealie's User Settings page (https://hay-kot.github.io/mealie/documentation/users-groups/user-settings/#api-key-generation) Create an API token from Mealie's User Settings page (https://docs.mealie.io/documentation/getting-started/api-usage/#getting-a-token)
#### 2. Create Home Assistant Sensors #### 2. Create Home Assistant Sensors

View file

@ -2,6 +2,3 @@
## Feature Requests ## Feature Requests
[Please request new features on Github](https://github.com/mealie-recipes/mealie/discussions/new?category=feature-request) [Please request new features on Github](https://github.com/mealie-recipes/mealie/discussions/new?category=feature-request)
## Progress
See the [Github Projects page](https://github.com/users/hay-kot/projects/2) to see what is currently being worked on

View file

@ -351,7 +351,7 @@
<!-- Custom narrow footer --> <!-- Custom narrow footer -->
<div class="md-footer-meta__inner md-grid"> <div class="md-footer-meta__inner md-grid">
<div class="md-footer-social"> <div class="md-footer-social">
<a class="md-footer-social__link" href="https://github.com/hay-kot/mealie" rel="noopener" target="_blank" <a class="md-footer-social__link" href="https://github.com/mealie-recipes/mealie" rel="noopener" target="_blank"
title="github.com"> title="github.com">
<svg style="width: 32px; height: 32px" viewBox="0 0 480 512" xmlns="http://www.w3.org/2000/svg"> <svg style="width: 32px; height: 32px" viewBox="0 0 480 512" xmlns="http://www.w3.org/2000/svg">
<path <path

View file

@ -17,7 +17,7 @@
<v-btn <v-btn
color="white" color="white"
icon icon
href="https://github.com/hay-kot/mealie" href="https://github.com/mealie-recipes/mealie"
target="_blank" target="_blank"
> >
<v-icon> <v-icon>

View file

@ -43,7 +43,7 @@
color="gray" color="gray"
secondary secondary
target="_blank" target="_blank"
href="https://github.com/hay-kot/mealie/issues/new/choose" href="https://github.com/mealie-recipes/mealie/issues/new/choose"
> >
<template #icon> <template #icon>
{{ $globals.icons.github }} {{ $globals.icons.github }}

View file

@ -88,7 +88,7 @@
{{ $t("new-recipe.google-ld-json-info") }} {{ $t("new-recipe.google-ld-json-info") }}
</a> </a>
<a <a
href="https://github.com/hay-kot/mealie/issues" href="https://github.com/mealie-recipes/mealie/issues"
target="_blank" target="_blank"
rel="noreferrer nofollow" rel="noreferrer nofollow"
> >

View file

@ -191,7 +191,7 @@
{ {
text: $t('about.github'), text: $t('about.github'),
icon: $globals.icons.github, icon: $globals.icons.github,
href: 'https://github.com/hay-kot/mealie', href: 'https://github.com/mealie-recipes/mealie',
}, },
{ {
text: $t('about.docs'), text: $t('about.docs'),

View file

@ -15,7 +15,7 @@ def get_latest_github_release() -> str:
str: The latest release from GitHub. str: The latest release from GitHub.
""" """
url = "https://api.github.com/repos/hay-kot/mealie/releases/latest" url = "https://api.github.com/repos/mealie-recipes/mealie/releases/latest"
response = requests.get(url) response = requests.get(url)
response.raise_for_status() response.raise_for_status()
return response.json()["tag_name"] return response.json()["tag_name"]

View file

@ -461,7 +461,7 @@
<a <a
class="mj-link" class="mj-link"
href="https://github.com/hay-kot/mealie" href="https://github.com/mealie-recipes/mealie"
target="_blank" target="_blank"
style=" style="
display: inline-block; display: inline-block;
@ -505,7 +505,7 @@
<a <a
class="mj-link" class="mj-link"
href="https://hay-kot.github.io/mealie/" href="https://docs.mealie.io/"
target="_blank" target="_blank"
style=" style="
display: inline-block; display: inline-block;

View file

@ -45,10 +45,10 @@ def test_recipe_assets_create(api_client: TestClient, unique_user: TestUser, rec
def test_recipe_asset_exploit(api_client: TestClient, unique_user: TestUser, recipe_ingredient_only: Recipe): def test_recipe_asset_exploit(api_client: TestClient, unique_user: TestUser, recipe_ingredient_only: Recipe):
""" """
Test to ensure that users are unable to circumvent the destination directory when uploading a file Test to ensure that users are unable to circumvent the destination directory when uploading a file
as an asset to the recipe. This was reported via huntr and was confirmed to be a sevre security issue. as an asset to the recipe. This was reported via huntr and was confirmed to be a severe security issue.
mitigration is implemented by ensuring that the destination file is checked to ensure that the parent directory A mitigation is implemented by ensuring that the destination file is checked to ensure that the parent directory
is the recipe's asset directory. otherwise an exception is raised and a 400 error is returned. is the recipe's asset directory. Otherwise, an exception is raised and a 400 error is returned.
Report Details: Report Details:
------------------- -------------------