Skip to content

Commit 1079ef0

Browse files
committed
Rename repo -> dstimer; Preparing for winget release
1 parent 0f35831 commit 1079ef0

7 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ jobs:
140140
# cd pkg/scoop
141141
# jq --arg v "$VERSION" --arg h "$SHA256" \
142142
# '.version = $v |
143-
# .architecture."64bit".url = "https://github.com/madLinux7/dead-simple-cli-timer/releases/download/v\($v)/dstimer-windows-x86_64.exe#/dstimer.exe" |
143+
# .architecture."64bit".url = "https://github.com/madLinux7/dstimer/releases/download/v\($v)/dstimer-windows-x86_64.exe#/dstimer.exe" |
144144
# .architecture."64bit".hash = $h' \
145145
# dstimer.json > dstimer.json.tmp && mv dstimer.json.tmp dstimer.json
146146
#

.vs/tasks.vs.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
]
1313
},
1414
{
15-
"taskLabel": "task-dead-simple-cli-timer",
15+
"taskLabel": "task-dstimer",
1616
"appliesTo": "/",
1717
"type": "launch"
1818
}

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 = "dstimer"
3-
version = "1.0.2"
3+
version = "1.0.3"
44
edition = "2021"
55
description = "A dead-simple, cross-platform CLI countdown timer with color-changing progress bar and optional audio playback"
66
license = "MIT"
7-
repository = "https://github.com/madLinux7/dead-simple-cli-timer"
7+
repository = "https://github.com/madLinux7/dstimer"
88
homepage = "https://grolmes.de"
99
keywords = ["cli", "timer", "countdown", "tui", "terminal"]
1010
categories = ["command-line-utilities"]

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,13 +67,13 @@ Renders the timer on the **current terminal line** instead of taking over the fu
6767
**macOS / Linux:**
6868

6969
```bash
70-
curl -fsSL https://raw.githubusercontent.com/madLinux7/dead-simple-cli-timer/main/install.sh | sh
70+
curl -fsSL https://raw.githubusercontent.com/madLinux7/dstimer/main/install.sh | sh
7171
```
7272

7373
**Windows (PowerShell):**
7474

7575
```powershell
76-
irm https://raw.githubusercontent.com/madLinux7/dead-simple-cli-timer/main/install.ps1 | iex
76+
irm https://raw.githubusercontent.com/madLinux7/dstimer/main/install.ps1 | iex
7777
```
7878

7979
**Via Cargo (requires Rust):**
@@ -89,8 +89,8 @@ MP3, FLAC, WAV, OGG, and anything else supported by [Symphonia](https://github.c
8989
## Build from Source
9090

9191
```bash
92-
git clone https://github.com/madLinux7/dead-simple-cli-timer
93-
cd dead-simple-cli-timer
92+
git clone https://github.com/madLinux7/dstimer
93+
cd dstimer
9494
cargo build --release
9595
./target/release/dstimer
9696
```

install.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
$ErrorActionPreference = "Stop"
22

3-
$Repo = "madLinux7/dead-simple-cli-timer"
3+
$Repo = "madLinux7/dstimer"
44
$Bin = "dstimer"
55
$InstallDir = "$env:LOCALAPPDATA\Programs\$Bin"
66
$Asset = "$Bin-windows-x86_64.exe"

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22
set -e
33

4-
REPO="madLinux7/dead-simple-cli-timer"
4+
REPO="madLinux7/dstimer"
55
BIN="dstimer"
66
INSTALL_DIR="${INSTALL_DIR:-$HOME/.local/bin}"
77

0 commit comments

Comments
 (0)