summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--package.json2
m---------recipes0
-rw-r--r--src/config.js3
-rw-r--r--src/containers/settings/RecipesScreen.js3
4 files changed, 4 insertions, 4 deletions
diff --git a/package.json b/package.json
index e86de3761..c33bf4f7a 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,7 @@
2 "name": "ferdi", 2 "name": "ferdi",
3 "productName": "Ferdi", 3 "productName": "Ferdi",
4 "appId": "com.kytwb.ferdi", 4 "appId": "com.kytwb.ferdi",
5 "version": "5.4.3", 5 "version": "5.4.4-beta.1",
6 "description": "Messaging app for WhatsApp, Slack, Telegram, HipChat, Hangouts and many many more.", 6 "description": "Messaging app for WhatsApp, Slack, Telegram, HipChat, Hangouts and many many more.",
7 "copyright": "kytwb", 7 "copyright": "kytwb",
8 "main": "index.js", 8 "main": "index.js",
diff --git a/recipes b/recipes
Subproject 6ff794422f296f5370299e497792ee91eccb8dc Subproject 1e6e6aff48be8fa2470c383d1c459c3bf852b83
diff --git a/src/config.js b/src/config.js
index a69c5e82f..b4705105d 100644
--- a/src/config.js
+++ b/src/config.js
@@ -64,8 +64,7 @@ export const DEFAULT_APP_SETTINGS = {
64 64
65 // Ferdi specific options 65 // Ferdi specific options
66 server: LIVE_API, 66 server: LIVE_API,
67 // todoServer: PRODUCTION_TODOS_FRONTEND_URL, 67 todoServer: PRODUCTION_TODOS_FRONTEND_URL,
68 todoServer: "https://todoist.com/app",
69 autohideMenuBar: false, 68 autohideMenuBar: false,
70 lockingFeatureEnabled: false, 69 lockingFeatureEnabled: false,
71 locked: false, 70 locked: false,
diff --git a/src/containers/settings/RecipesScreen.js b/src/containers/settings/RecipesScreen.js
index 70b599d9c..460b915bb 100644
--- a/src/containers/settings/RecipesScreen.js
+++ b/src/containers/settings/RecipesScreen.js
@@ -161,7 +161,8 @@ export default @inject('stores', 'actions') @observer class RecipesScreen extend
161 serviceStatus={services.actionStatus} 161 serviceStatus={services.actionStatus}
162 recipeFilter={filter} 162 recipeFilter={filter}
163 recipeDirectory={recipeDirectory} 163 recipeDirectory={recipeDirectory}
164 openRecipeDirectory={() => { 164 openRecipeDirectory={async () => {
165 await fs.ensureDir(recipeDirectory);
165 shell.openItem(recipeDirectory); 166 shell.openItem(recipeDirectory);
166 }} 167 }}
167 openDevDocs={() => { 168 openDevDocs={() => {