Skip to content

Commit bcd12c8

Browse files
0.4.10
1 parent 77771ee commit bcd12c8

File tree

12 files changed

+47
-44
lines changed

12 files changed

+47
-44
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[package]
22
name = "digstore_min"
3-
version = "0.4.9"
3+
version = "0.4.10"
44
edition = "2021"
55
rust-version = "1.70"
66
authors = ["DIG Network"]
7-
description = "A simplified content-addressable storage system with Git-like semantics"
7+
description = "A content-addressable storage system with Git-like semantics and zero-knowledge properties"
88
repository = "https://github.com/DIG-Network/digstore"
99
license = "MIT OR Apache-2.0"
1010
build = "build.rs"

INSTALL.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Digstore Installation
1+
# DigStore Installation
22

33
## Quick Install (Recommended)
44

@@ -16,7 +16,7 @@ curl -fsSL https://raw.githubusercontent.com/DIG-Network/digstore/main/install.s
1616

1717
## What the Bootstrap Installer Does
1818

19-
1. **Downloads** the latest digstore binary for your platform
19+
1. **Downloads** the latest DigStore binary for your platform
2020
2. **Installs** to versioned directory structure:
2121
- Windows: `C:\Program Files (x86)\dig-network\v0.4.7\digstore.exe`
2222
- macOS: `/usr/local/lib/digstore/v0.4.7/digstore`

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Digstore CLI Commands
1+
# DigStore CLI Commands
22

3-
Complete command reference for Digstore - a content-addressable storage system with Git-like semantics.
3+
Complete command reference for DigStore - a content-addressable storage system with Git-like semantics.
44

55
## Installation
66

install.ps1

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Digstore Bootstrap Installer
2-
# This script downloads and installs the latest version of Digstore with version management
1+
# DigStore Bootstrap Installer
2+
# This script downloads and installs the latest version of DigStore with version management
33

44
param(
55
[string]$Version = "latest",
@@ -8,8 +8,8 @@ param(
88

99
$ErrorActionPreference = "Stop"
1010

11-
Write-Host "🚀 Digstore Bootstrap Installer" -ForegroundColor Cyan
12-
Write-Host "=================================" -ForegroundColor Cyan
11+
Write-Host "🚀 DigStore Bootstrap Installer" -ForegroundColor Cyan
12+
Write-Host "==================================" -ForegroundColor Cyan
1313
Write-Host ""
1414

1515
# Determine installation directory
@@ -129,7 +129,7 @@ Set-Content -Path $ActiveFile -Value $Version -Force
129129
Remove-Item $TempMsi -ErrorAction SilentlyContinue
130130

131131
Write-Host ""
132-
Write-Host "🎉 Digstore $Version installed successfully!" -ForegroundColor Green
132+
Write-Host "🎉 DigStore $Version installed successfully!" -ForegroundColor Green
133133
Write-Host "Location: $VersionDir" -ForegroundColor Cyan
134134
Write-Host ""
135135
Write-Host "Usage:" -ForegroundColor Yellow

install.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
#!/bin/bash
2-
# Digstore Bootstrap Installer for Linux/macOS
3-
# This script downloads and installs the latest version of Digstore with version management
2+
# DigStore Bootstrap Installer for Linux/macOS
3+
# This script downloads and installs the latest version of DigStore with version management
44

55
set -e
66

77
VERSION="${1:-latest}"
88
FORCE="${2:-false}"
99

10-
echo "🚀 Digstore Bootstrap Installer"
11-
echo "================================="
10+
echo "🚀 DigStore Bootstrap Installer"
11+
echo "=================================="
1212
echo ""
1313

1414
# Determine platform and installation directory
@@ -55,9 +55,9 @@ TEMP_INSTALLER="/tmp/digstore-installer.$PLATFORM"
5555

5656
echo "Downloading from: $DOWNLOAD_URL"
5757
if command -v curl >/dev/null 2>&1; then
58-
curl -L -o "$TEMP_INSTALLER" "$DOWNLOAD_URL" --user-agent "Digstore-Bootstrap"
58+
curl -L -o "$TEMP_INSTALLER" "$DOWNLOAD_URL" --user-agent "DigStore-Bootstrap"
5959
elif command -v wget >/dev/null 2>&1; then
60-
wget -O "$TEMP_INSTALLER" "$DOWNLOAD_URL" --user-agent="Digstore-Bootstrap"
60+
wget -O "$TEMP_INSTALLER" "$DOWNLOAD_URL" --user-agent="DigStore-Bootstrap"
6161
else
6262
echo "❌ Neither curl nor wget found. Please install one of them."
6363
exit 1

src/cli/commands/version_cmd.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ pub fn execute(subcommand: Option<String>, version: Option<String>) -> Result<()
5353
fn show_version_info() -> Result<()> {
5454
let current_version = env!("CARGO_PKG_VERSION");
5555

56-
println!("{}", "Digstore Version Information".bright_blue().bold());
56+
println!("{}", "DigStore Version Information".bright_blue().bold());
5757
println!();
5858
println!(" {} {}", "Current Version:".bright_white(), current_version.bright_cyan());
5959

@@ -232,7 +232,7 @@ fn install_from_msi(msi_path: &str) -> Result<()> {
232232
fn install_specific_version(version: &str) -> Result<()> {
233233
println!(
234234
"{}",
235-
format!("Installing digstore version {} from GitHub...", version).bright_blue()
235+
format!("Installing DigStore version {} from GitHub...", version).bright_blue()
236236
);
237237

238238
// Construct GitHub release URL for the version

src/cli/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ pub mod commands;
77
pub mod context;
88
pub mod interactive;
99

10-
/// Digstore Min - Content-addressable storage system
10+
/// DigStore - Content-addressable storage system
1111
#[derive(Parser)]
1212
#[command(
1313
name = "digstore",
1414
version,
15-
about = "A simplified content-addressable storage system with Git-like semantics",
16-
long_about = "Digstore Min provides Git-like repository functionality with enhanced merkle proof capabilities and URN-based retrieval."
15+
about = "A content-addressable storage system with Git-like semantics",
16+
long_about = "DigStore provides Git-like repository functionality with enhanced merkle proof capabilities and URN-based retrieval."
1717
)]
1818
pub struct Cli {
1919
/// Enable verbose output

src/lib.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
//! Digstore Min - A simplified content-addressable storage system
1+
//! DigStore - A content-addressable storage system
22
//!
3-
//! Digstore Min provides Git-like repository functionality with enhanced merkle proof
4-
//! capabilities and URN-based retrieval. It focuses on core content-addressable storage
5-
//! without encryption, privacy features, or blockchain integration.
3+
//! DigStore provides Git-like repository functionality with enhanced merkle proof
4+
//! capabilities and URN-based retrieval, featuring zero-knowledge storage with
5+
//! cryptographic integrity and URN-based access control.
66
//!
77
//! # Core Features
88
//!
@@ -71,7 +71,7 @@ pub use proofs::{
7171
proof::{Proof, ProofTarget},
7272
};
7373

74-
/// Current version of Digstore Min
74+
/// Current version of DigStore
7575
pub const VERSION: &str = env!("CARGO_PKG_VERSION");
7676

7777
/// Format version for compatibility

src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
//! Digstore Min CLI
1+
//! DigStore CLI
22
//!
3-
//! Command-line interface for the Digstore Min content-addressable storage system.
3+
//! Command-line interface for the DigStore content-addressable storage system.
44
55
#![allow(dead_code)]
66
#![allow(unused_variables)]

0 commit comments

Comments
 (0)