Add emoji support to list of features

This commit is contained in:
Vishesh Handa
2020-08-11 14:05:11 +02:00
parent 01f1b8481f
commit 6cab0182b0
2 changed files with 17 additions and 0 deletions

View File

@ -200,3 +200,6 @@ feature:
yamlTagsKey: Customize the YAML tags key
disableYamlHeader: Disable YAML Metadata Header
customizeHomeScreen: Customize Home Screen
emojiSupport:
title: Emoji Support
subtitle: "Convert :heart: to ❤️"

View File

@ -13,6 +13,7 @@ class Features {
Feature.yamlModifiedKey,
Feature.noteSorting,
Feature.gitPushFreq,
Feature.emojiSupport,
Feature.checkListEditor,
Feature.disableYamlHeader,
Feature.journalEditor,
@ -114,6 +115,14 @@ class Feature {
false,
);
static final emojiSupport = Feature(
"EmojiSupport",
DateTime(2020, 02, 14),
tr("feature.emojiSupport.title"),
tr("feature.emojiSupport.subtitle"),
false,
);
static final checkListEditor = Feature(
"CheckListEditor",
DateTime(2020, 02, 15),
@ -250,3 +259,8 @@ class Feature {
true,
);
}
// Feature Adding checklist
// 1. Add to this Feature class
// 2. Add to all features
// 3. Make sure strings are translatable