Skip to content
This repository was archived by the owner on Jan 13, 2026. It is now read-only.

Commit bbe8051

Browse files
author
icelayer
committed
Changed config to non-dev mode
1 parent e68a9ad commit bbe8051

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/base/config.rs

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,15 @@ use crate::base::filesystem;
22
use directories::ProjectDirs;
33
use std::path::PathBuf;
44

5-
pub const VERSION: &str = "0.3.0-dev-0";
6-
pub const DEV_MODE: bool = true;
5+
pub const VERSION: &str = "0.3.0";
6+
pub const DEV_MODE: bool = false;
7+
pub const SAFE_HISTORY: bool = true;
8+
79
pub const SYS_BITS: u32 = 2048;
810
pub const BASE_BITS: u32 = 4096;
9-
pub const BLOCK_BITS: u32 = 1048576;
11+
pub const BLOCK_BITS: u32 = 4096000;
1012

11-
pub const SUPPORTED_FORMATS: [&str; 2] = ["Text", "Image"];
13+
pub const SUPPORTED_FORMATS: [&str; 2] = ["text", "file"];
1214

1315
pub fn path() -> PathBuf {
1416
let result_path = ProjectDirs::from("su", "bald", "cwe-client")

0 commit comments

Comments
 (0)