From aeb4a98bb36f129000b6782f22a1f19009729634 Mon Sep 17 00:00:00 2001 From: Matthias Andreas Benkard Date: Wed, 13 Aug 2025 19:24:42 +0200 Subject: Rename to "Dose." --- CLAUDE.md | 4 ++-- README-ZIG.md | 4 ++-- build.zig | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CLAUDE.md b/CLAUDE.md index 0dca1b7..e965b3e 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -4,7 +4,7 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co ## Project Overview -**dosage** is a DOS-style command shell implementation written in Rust. The project aims to recreate classic DOS commands and shell functionality in a modern Rust environment, providing a nostalgic DOS computing experience. +**Dose** is a DOS-style command shell implementation written in Rust. The project aims to recreate classic DOS commands and shell functionality in a modern Rust environment, providing a nostalgic DOS computing experience. ## Development Commands @@ -48,4 +48,4 @@ Uses modern Rust error handling with `eyre::Result` and `color-eyre` for enhance - **`thiserror`**: Error type derivation macros ## Release Optimization -The release profile is configured for maximum size optimization with LTO, `opt-level = "z"`, symbol stripping, and single codegen unit compilation. \ No newline at end of file +The release profile is configured for maximum size optimization with LTO, `opt-level = "z"`, symbol stripping, and single codegen unit compilation. diff --git a/README-ZIG.md b/README-ZIG.md index 9aa043d..d965cd6 100644 --- a/README-ZIG.md +++ b/README-ZIG.md @@ -1,4 +1,4 @@ -# Dosage - Zig Port +# Dose - Zig Port This is a Zig port of the original Rust-based DOS command shell implementation. @@ -54,4 +54,4 @@ Key DOS commands implemented: - `DATE` and `TIME` (system date/time) - `DIR` (directory listing) -The implementation uses Zig's standard library exclusively, avoiding external dependencies for better portability and simplicity. \ No newline at end of file +The implementation uses Zig's standard library exclusively, avoiding external dependencies for better portability and simplicity. diff --git a/build.zig b/build.zig index 0be09e9..f648d85 100644 --- a/build.zig +++ b/build.zig @@ -5,7 +5,7 @@ pub fn build(b: *std.Build) void { const optimize = b.standardOptimizeOption(.{}); const exe = b.addExecutable(.{ - .name = "dosage", + .name = "dose", .root_source_file = b.path("src/main.zig"), .target = target, .optimize = optimize, -- cgit v1.2.1