diff --git a/dist/bundle.es.js b/dist/bundle.es.js index ecb9221..c7e96e3 100644 --- a/dist/bundle.es.js +++ b/dist/bundle.es.js @@ -576,6 +576,7 @@ const AUTOMATIC_DARK_MODE_ENABLED = 'automaticDarkModeEnabled'; const BACKGROUND_PLAY_ENABLED = 'backgroundPlayEnabled'; const FOREGROUND_NOTIFICATION_ENABLED = 'foregroundNotificationEnabled'; const KEEP_DAEMON_RUNNING = 'keepDaemonRunning'; +const SHOW_URI_BAR_SUGGESTIONS = 'showUriBarSuggestions'; var settings = /*#__PURE__*/Object.freeze({ CREDIT_REQUIRED_ACKNOWLEDGED: CREDIT_REQUIRED_ACKNOWLEDGED, @@ -591,7 +592,8 @@ var settings = /*#__PURE__*/Object.freeze({ AUTOMATIC_DARK_MODE_ENABLED: AUTOMATIC_DARK_MODE_ENABLED, BACKGROUND_PLAY_ENABLED: BACKGROUND_PLAY_ENABLED, FOREGROUND_NOTIFICATION_ENABLED: FOREGROUND_NOTIFICATION_ENABLED, - KEEP_DAEMON_RUNNING: KEEP_DAEMON_RUNNING + KEEP_DAEMON_RUNNING: KEEP_DAEMON_RUNNING, + SHOW_URI_BAR_SUGGESTIONS: SHOW_URI_BAR_SUGGESTIONS }); const DATE_NEW = 'dateNew'; diff --git a/src/constants/settings.js b/src/constants/settings.js index 0c5f88b..767791c 100644 --- a/src/constants/settings.js +++ b/src/constants/settings.js @@ -17,3 +17,4 @@ export const AUTOMATIC_DARK_MODE_ENABLED = 'automaticDarkModeEnabled'; export const BACKGROUND_PLAY_ENABLED = 'backgroundPlayEnabled'; export const FOREGROUND_NOTIFICATION_ENABLED = 'foregroundNotificationEnabled'; export const KEEP_DAEMON_RUNNING = 'keepDaemonRunning'; +export const SHOW_URI_BAR_SUGGESTIONS = 'showUriBarSuggestions';