hide name for now

This commit is contained in:
Jamie 2021-09-29 06:36:34 -07:00
parent 0ec1bfc0c7
commit 6470067c08
7 changed files with 24 additions and 25 deletions

View file

@ -1,7 +1,6 @@
{
"cSpell.words": [
"ipfs",
"spacedriveapp",
"tailwindcss"
]
}

View file

@ -1,5 +1,5 @@
{
"name": "spacedrive-client",
"name": "sd-client",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",

32
src-tauri/Cargo.lock generated
View file

@ -2551,6 +2551,22 @@ version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
[[package]]
name = "sd"
version = "0.1.0"
dependencies = [
"chrono",
"crossbeam",
"data-encoding",
"rebind",
"ring",
"rusqlite",
"serde",
"serde_json",
"tauri",
"tauri-build",
]
[[package]]
name = "security-framework"
version = "2.3.1"
@ -2765,22 +2781,6 @@ dependencies = [
"pango",
]
[[package]]
name = "spacedrive"
version = "0.1.0"
dependencies = [
"chrono",
"crossbeam",
"data-encoding",
"rebind",
"ring",
"rusqlite",
"serde",
"serde_json",
"tauri",
"tauri-build",
]
[[package]]
name = "spin"
version = "0.5.2"

View file

@ -1,11 +1,11 @@
[package]
name = "spacedrive"
name = "sd"
version = "0.1.0"
description = "The next gen private virtual filesystem."
authors = ["you"]
license = ""
repository = ""
default-run = "spacedrive"
default-run = "sd"
edition = "2018"
build = "src/build.rs"

View file

@ -8,7 +8,7 @@ pub struct AppConfig {
// returns the app config struct with complete values
pub fn get_config() -> AppConfig {
let app_name = "spacedrive";
let app_name = "sd";
let data_dir = path::data_dir()
.unwrap_or(std::path::PathBuf::from("./"))
.join(app_name);

View file

@ -1,6 +1,6 @@
{
"package": {
"productName": "spacedrive",
"productName": "sd",
"version": "0.1.0"
},
"build": {
@ -13,7 +13,7 @@
"bundle": {
"active": true,
"targets": "all",
"identifier": "co.spacedrive.client",
"identifier": "co.sd.client",
"icon": ["icons/icon.icns"],
"resources": [],
"externalBin": [],
@ -52,7 +52,7 @@
},
"windows": [
{
"title": "spacedrive",
"title": "sd",
"width": 1200,
"height": 700,
"resizable": true,

View file

@ -4,7 +4,7 @@
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/src/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>spacedrive</title>
<title>sd</title>
</head>
<body style="overflow: hidden">
<div id="root"></div>