From 62c9920e4e29adfa86ca2838f4c3cfb99eeb2371 Mon Sep 17 00:00:00 2001 From: Vishesh Handa Date: Wed, 12 Aug 2020 23:42:10 +0200 Subject: [PATCH] Add custom ssh keys to list of features --- assets/langs/en.yaml | 1 + lib/features.dart | 9 +++++++++ 2 files changed, 10 insertions(+) diff --git a/assets/langs/en.yaml b/assets/langs/en.yaml index cc52b519..5d55c9e2 100644 --- a/assets/langs/en.yaml +++ b/assets/langs/en.yaml @@ -209,6 +209,7 @@ feature: subtitle: "Convert :heart: to ❤️" allNotesView: Add a screen to show "All Notes" basicSearch: Basic Search + customSSHKeys: Provide your own SSH Keys feature_timeline: title: Feature Timeline diff --git a/lib/features.dart b/lib/features.dart index dd8d4f1d..53e96364 100644 --- a/lib/features.dart +++ b/lib/features.dart @@ -16,6 +16,7 @@ class Features { Feature.gitPushFreq, Feature.emojiSupport, Feature.checkListEditor, + Feature.customSSHKeys, Feature.disableYamlHeader, Feature.journalEditor, Feature.allNotesView, @@ -141,6 +142,14 @@ class Feature { false, ); + static final customSSHKeys = Feature( + "CustomSSHKeys", + DateTime(2020, 02, 17), + tr("feature.customSSHKeys"), + "", + false, + ); + static final disableYamlHeader = Feature( "DisableYamlHeader", DateTime(2020, 02, 18),