Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bin/code-notify
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
set -e

# Version
VERSION="1.11.0"
VERSION="1.11.1"

# Determine the directory where the script is located (resolve symlinks)
SCRIPT_PATH="${BASH_SOURCE[0]}"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "code-notify",
"version": "1.11.0",
"version": "1.11.1",
"description": "Desktop notifications and usage reset alerts for Claude Code, Codex CLI, Gemini CLI, Oh My Pi, and AI coding agents",
"license": "MIT",
"homepage": "https://github.com/mylee04/code-notify#readme",
Expand Down
4 changes: 2 additions & 2 deletions scripts/install-windows.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ param(
$ErrorActionPreference = "Stop"

# Version
$VERSION = "1.11.0"
$VERSION = "1.11.1"

# Colors and formatting
function Write-Success { param([string]$Message) Write-Host "[OK] $Message" -ForegroundColor Green }
Expand Down Expand Up @@ -107,7 +107,7 @@ function Install-ClaudeNotify {
# Code-Notify PowerShell Module
# https://github.com/mylee04/code-notify

$script:VERSION = "1.11.0"
$script:VERSION = "1.11.1"
$script:ClaudeHome = if ($env:CLAUDE_HOME) { $env:CLAUDE_HOME } else { "$env:USERPROFILE\.claude" }
$script:DefaultSettingsFile = "$script:ClaudeHome\settings.json"
$script:AlternateSettingsFile = "$env:USERPROFILE\.config\.claude\settings.json"
Expand Down