
* Initial setup and migrated src/common * WIP * WIP * WIP * Main module basically finished * Renderer process migrated * Added CI step and some fixes * Fixed remainder of issues and added proper ESLint config * Fixed a couple issues * Progress! * Some more fixes * Fixed a test * Fix build step * PR feedback
33 lines
870 B
TypeScript
33 lines
870 B
TypeScript
// Copyright (c) 2015-2016 Yuya Ochiai
|
|
// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
import {ConfigV0, ConfigV1} from 'types/config';
|
|
|
|
import defaultPreferences from './defaultPreferences';
|
|
|
|
const pastDefaultPreferences = {
|
|
0: {
|
|
url: '',
|
|
} as ConfigV0,
|
|
1: {
|
|
version: 1,
|
|
teams: [],
|
|
showTrayIcon: false,
|
|
trayIconTheme: 'light',
|
|
minimizeToTray: false,
|
|
notifications: {
|
|
flashWindow: 0,
|
|
bounceIcon: false,
|
|
bounceIconType: 'informational',
|
|
},
|
|
showUnreadBadge: true,
|
|
useSpellChecker: true,
|
|
enableHardwareAcceleration: true,
|
|
autostart: true,
|
|
spellCheckerLocale: 'en-US',
|
|
} as ConfigV1,
|
|
2: defaultPreferences,
|
|
};
|
|
|
|
export default pastDefaultPreferences;
|