summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar MCMXC <16797721+mcmxcdev@users.noreply.github.com>2023-12-21 17:56:59 -0700
committerLibravatar GitHub <noreply@github.com>2023-12-21 17:56:59 -0700
commitf57062fd35dfb069105134fb5de45dd4cd223b35 (patch)
tree86045808f7f286e8fa65c7c85ed1474f92e0c06b /src
parent6.6.1-nightly.23 [skip ci] (diff)
downloadferdium-app-f57062fd35dfb069105134fb5de45dd4cd223b35.tar.gz
ferdium-app-f57062fd35dfb069105134fb5de45dd4cd223b35.tar.zst
ferdium-app-f57062fd35dfb069105134fb5de45dd4cd223b35.zip
fix: custom services developer documentation link leads to franz pape (#1493)
- update link for developer documentation to point to own recipe documentation - rename `FRANZ_DEV_DOCS` to `FERDIUM_DEV_DOCS`
Diffstat (limited to 'src')
-rw-r--r--src/config.ts3
-rw-r--r--src/containers/settings/RecipesScreen.tsx4
2 files changed, 4 insertions, 3 deletions
diff --git a/src/config.ts b/src/config.ts
index d8b028104..922b01628 100644
--- a/src/config.ts
+++ b/src/config.ts
@@ -329,7 +329,8 @@ export const GITHUB_FRANZ_URL = 'https://github.com/meetfranz';
329export const GITHUB_FERDIUM_URL = 'https://github.com/ferdium'; 329export const GITHUB_FERDIUM_URL = 'https://github.com/ferdium';
330export const FERDIUM_SERVICE_REQUEST = `${GITHUB_FERDIUM_URL}/ferdium-app/issues`; 330export const FERDIUM_SERVICE_REQUEST = `${GITHUB_FERDIUM_URL}/ferdium-app/issues`;
331export const FERDIUM_TRANSLATION = 'https://crowdin.com/project/ferdium-app'; 331export const FERDIUM_TRANSLATION = 'https://crowdin.com/project/ferdium-app';
332export const FRANZ_DEV_DOCS = 'http://bit.ly/franz-dev-hub'; 332export const FERDIUM_DEV_DOCS =
333 'https://github.com/ferdium/ferdium-recipes/blob/main/docs/integration.md';
333 334
334export const FILE_SYSTEM_SETTINGS_TYPES = ['app', 'proxy']; 335export const FILE_SYSTEM_SETTINGS_TYPES = ['app', 'proxy'];
335 336
diff --git a/src/containers/settings/RecipesScreen.tsx b/src/containers/settings/RecipesScreen.tsx
index 1fb2673a8..a46510d54 100644
--- a/src/containers/settings/RecipesScreen.tsx
+++ b/src/containers/settings/RecipesScreen.tsx
@@ -8,7 +8,7 @@ import Recipe from '../../models/Recipe';
8import { StoresProps } from '../../@types/ferdium-components.types'; 8import { StoresProps } from '../../@types/ferdium-components.types';
9import RecipesDashboard from '../../components/settings/recipes/RecipesDashboard'; 9import RecipesDashboard from '../../components/settings/recipes/RecipesDashboard';
10import ErrorBoundary from '../../components/util/ErrorBoundary'; 10import ErrorBoundary from '../../components/util/ErrorBoundary';
11import { CUSTOM_WEBSITE_RECIPE_ID, FRANZ_DEV_DOCS } from '../../config'; 11import { CUSTOM_WEBSITE_RECIPE_ID, FERDIUM_DEV_DOCS } from '../../config';
12import { userDataRecipesPath } from '../../environment-remote'; 12import { userDataRecipesPath } from '../../environment-remote';
13import { asarRecipesPath } from '../../helpers/asar-helpers'; 13import { asarRecipesPath } from '../../helpers/asar-helpers';
14import { communityRecipesStore } from '../../features/communityRecipes'; 14import { communityRecipesStore } from '../../features/communityRecipes';
@@ -176,7 +176,7 @@ class RecipesScreen extends Component<IProps, IState> {
176 recipeDirectory={recipeDirectory} 176 recipeDirectory={recipeDirectory}
177 openRecipeDirectory={() => openPath(recipeDirectory)} 177 openRecipeDirectory={() => openPath(recipeDirectory)}
178 openDevDocs={() => 178 openDevDocs={() =>
179 appActions.openExternalUrl({ url: FRANZ_DEV_DOCS }) 179 appActions.openExternalUrl({ url: FERDIUM_DEV_DOCS })
180 } 180 }
181 /> 181 />
182 </ErrorBoundary> 182 </ErrorBoundary>