Skip to content

Commit

Permalink
fix: custom services developer documentation link leads to franz pape (
Browse files Browse the repository at this point in the history
…#1493)

- update link for developer documentation to point to own recipe documentation
- rename `FRANZ_DEV_DOCS` to `FERDIUM_DEV_DOCS`
  • Loading branch information
mcmxcdev authored Dec 22, 2023
1 parent b87e694 commit f57062f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,8 @@ export const GITHUB_FRANZ_URL = 'https://github.com/meetfranz';
export const GITHUB_FERDIUM_URL = 'https://github.com/ferdium';
export const FERDIUM_SERVICE_REQUEST = `${GITHUB_FERDIUM_URL}/ferdium-app/issues`;
export const FERDIUM_TRANSLATION = 'https://crowdin.com/project/ferdium-app';
export const FRANZ_DEV_DOCS = 'http://bit.ly/franz-dev-hub';
export const FERDIUM_DEV_DOCS =
'https://github.com/ferdium/ferdium-recipes/blob/main/docs/integration.md';

export const FILE_SYSTEM_SETTINGS_TYPES = ['app', 'proxy'];

Expand Down
4 changes: 2 additions & 2 deletions src/containers/settings/RecipesScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import Recipe from '../../models/Recipe';
import { StoresProps } from '../../@types/ferdium-components.types';
import RecipesDashboard from '../../components/settings/recipes/RecipesDashboard';
import ErrorBoundary from '../../components/util/ErrorBoundary';
import { CUSTOM_WEBSITE_RECIPE_ID, FRANZ_DEV_DOCS } from '../../config';
import { CUSTOM_WEBSITE_RECIPE_ID, FERDIUM_DEV_DOCS } from '../../config';
import { userDataRecipesPath } from '../../environment-remote';
import { asarRecipesPath } from '../../helpers/asar-helpers';
import { communityRecipesStore } from '../../features/communityRecipes';
Expand Down Expand Up @@ -176,7 +176,7 @@ class RecipesScreen extends Component<IProps, IState> {
recipeDirectory={recipeDirectory}
openRecipeDirectory={() => openPath(recipeDirectory)}
openDevDocs={() =>
appActions.openExternalUrl({ url: FRANZ_DEV_DOCS })
appActions.openExternalUrl({ url: FERDIUM_DEV_DOCS })
}
/>
</ErrorBoundary>
Expand Down

0 comments on commit f57062f

Please sign in to comment.