From 013da3ac1e5968d711f2483e0c16063710fa8a6c Mon Sep 17 00:00:00 2001 From: derfarctor <97409490+derfarctor@users.noreply.github.com> Date: Wed, 2 Nov 2022 00:48:33 +0000 Subject: [PATCH] Change data directory and version for test build. * Changed data directory to reflect full release (pending). * Changed version to v1.0.0-test for testing pre-release. --- src/app/constants.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/constants.rs b/src/app/constants.rs index 2640f09..28ff0a9 100644 --- a/src/app/constants.rs +++ b/src/app/constants.rs @@ -1,4 +1,4 @@ -pub const VERSION: &str = "v1.0.0 pre-release"; +pub const VERSION: &str = "v1.0.0-test"; pub const SHOW_TO_DP: usize = 12; pub const AUTHOR: &str = "derfarctor (Author)"; pub const EMPTY_MSG: &str = "Nothing to receive..."; @@ -9,7 +9,7 @@ pub mod crypto { } pub mod paths { - pub const DATA_DIR: &str = "dagchat-beta"; + pub const DATA_DIR: &str = "dagchat"; pub const MESSAGES_DIR: &str = "messages"; pub const STORAGE: &str = "storage.dagchat"; }