mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-06-30 19:36:25 +08:00
Add emoji support to list of features
This commit is contained in:
@ -200,3 +200,6 @@ feature:
|
|||||||
yamlTagsKey: Customize the YAML tags key
|
yamlTagsKey: Customize the YAML tags key
|
||||||
disableYamlHeader: Disable YAML Metadata Header
|
disableYamlHeader: Disable YAML Metadata Header
|
||||||
customizeHomeScreen: Customize Home Screen
|
customizeHomeScreen: Customize Home Screen
|
||||||
|
emojiSupport:
|
||||||
|
title: Emoji Support
|
||||||
|
subtitle: "Convert :heart: to ❤️"
|
||||||
|
@ -13,6 +13,7 @@ class Features {
|
|||||||
Feature.yamlModifiedKey,
|
Feature.yamlModifiedKey,
|
||||||
Feature.noteSorting,
|
Feature.noteSorting,
|
||||||
Feature.gitPushFreq,
|
Feature.gitPushFreq,
|
||||||
|
Feature.emojiSupport,
|
||||||
Feature.checkListEditor,
|
Feature.checkListEditor,
|
||||||
Feature.disableYamlHeader,
|
Feature.disableYamlHeader,
|
||||||
Feature.journalEditor,
|
Feature.journalEditor,
|
||||||
@ -114,6 +115,14 @@ class Feature {
|
|||||||
false,
|
false,
|
||||||
);
|
);
|
||||||
|
|
||||||
|
static final emojiSupport = Feature(
|
||||||
|
"EmojiSupport",
|
||||||
|
DateTime(2020, 02, 14),
|
||||||
|
tr("feature.emojiSupport.title"),
|
||||||
|
tr("feature.emojiSupport.subtitle"),
|
||||||
|
false,
|
||||||
|
);
|
||||||
|
|
||||||
static final checkListEditor = Feature(
|
static final checkListEditor = Feature(
|
||||||
"CheckListEditor",
|
"CheckListEditor",
|
||||||
DateTime(2020, 02, 15),
|
DateTime(2020, 02, 15),
|
||||||
@ -250,3 +259,8 @@ class Feature {
|
|||||||
true,
|
true,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Feature Adding checklist
|
||||||
|
// 1. Add to this Feature class
|
||||||
|
// 2. Add to all features
|
||||||
|
// 3. Make sure strings are translatable
|
||||||
|
Reference in New Issue
Block a user