allow numbers in chat topics

Signed-off-by: yenda <eric@status.im>
This commit is contained in:
Andrey Shovkoplyas 2018-09-17 11:12:06 +03:00 committed by yenda
parent d5fcc0b003
commit 5d912caf4a
No known key found for this signature in database
GPG Key ID: 0095623C0069DCE6
3 changed files with 3 additions and 2 deletions

View File

@ -6,6 +6,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## [0.9.28 - Unreleased] ## [0.9.28 - Unreleased]
### Added ### Added
- Allow numbers in chat topics
### Fixed ### Fixed
Fix app freeze on recover with wrong password Fix app freeze on recover with wrong password
### Changed ### Changed

View File

@ -16,4 +16,4 @@
(spec/def ::topic (spec/and :global/not-empty-string (spec/def ::topic (spec/and :global/not-empty-string
::legal-name ::legal-name
(partial re-matches #"[a-z\-]+"))) (partial re-matches #"[a-z0-9\-]+")))

View File

@ -307,7 +307,7 @@
"chat": "Chat", "chat": "Chat",
"start-conversation": "Start conversation", "start-conversation": "Start conversation",
"you-are-all-set-description": "Now if you lose your phone you can restore your account and wallet using the recovery phrase.", "you-are-all-set-description": "Now if you lose your phone you can restore your account and wallet using the recovery phrase.",
"topic-format": "Topic names use only lowercase letters (a to z) & dashes (-)", "topic-format": "Topic name can use only lowercase letters, numbers and dash (-)",
"specify-name": "Specify a name", "specify-name": "Specify a name",
"add-new-network": "Add new network", "add-new-network": "Add new network",
"save": "Save", "save": "Save",