From 210131ca184c3aa043371857c022aa1aa149efbf Mon Sep 17 00:00:00 2001 From: Aditya Mangalampalli Date: Fri, 15 Apr 2022 02:00:25 -0700 Subject: Matched casing for almost all replacements --- src/features/todos/preload.ts | 8 ++++---- src/features/todos/store.js | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'src/features/todos') diff --git a/src/features/todos/preload.ts b/src/features/todos/preload.ts index 31d473051..896d82bdf 100644 --- a/src/features/todos/preload.ts +++ b/src/features/todos/preload.ts @@ -1,7 +1,7 @@ import { ipcRenderer } from 'electron'; import { IPC } from './constants'; -const debug = require('debug')('Ferdi:feature:todos:preload'); +const debug = require('debug')('Ferdium:feature:todos:preload'); debug('Preloading Todos Webview'); @@ -14,7 +14,7 @@ let hostMessageListener = ({ action }) => { } }; -window['ferdi'] = { +window['ferdium'] = { onInitialize(ipcHostMessageListener) { hostMessageListener = ipcHostMessageListener; ipcRenderer.sendToHost(IPC.TODOS_CLIENT_CHANNEL, { @@ -35,8 +35,8 @@ if (window.location.href === 'https://app.franztodos.com/login/') { // Insert info element informing about Franz accounts const infoElement = document.createElement('p'); infoElement.textContent = `You are using Franz's official Todo Service. -This service will only work with accounts registered with Franz - no Ferdi accounts will work here! -If you do not have a Franz account you can change the Todo service by going into Ferdi's settings and changing the "Todo server". +This service will only work with accounts registered with Franz - no Ferdium accounts will work here! +If you do not have a Franz account you can change the Todo service by going into Ferdium's settings and changing the "Todo server". You can choose any service as this Todo server, e.g. Todoist or Apple Notes.`; // Franz Todos uses React. Because of this we can't directly insert the element into the page diff --git a/src/features/todos/store.js b/src/features/todos/store.js index 2bf4e8fab..90ea47c71 100644 --- a/src/features/todos/store.js +++ b/src/features/todos/store.js @@ -18,7 +18,7 @@ import { createActionBindings } from '../utils/ActionBinding'; import { IPC, TODOS_ROUTES } from './constants'; import UserAgent from '../../models/UserAgent'; -const debug = require('debug')('Ferdi:feature:todos:store'); +const debug = require('debug')('Ferdium:feature:todos:store'); export default class TodoStore extends FeatureStore { @observable stores = null; -- cgit v1.2.3-54-g00ecf