krz/octosentry

macOS menu bar app to monitor GitHub security alerts

clone: git clone https://gitbay.org/krz/octosentry.git

2c8daebc337517ac5a7267dd027050de958f2512

verified · cmc

author: Christian Cleberg <hello@cleberg.net> · 2026-08-02T06:51:21Z

update org name
 Casks/octosentry.rb               | 8 ++++----
 DISTRIBUTION.md                   | 6 +++---
 octosentry/SecurityEventRow.swift | 2 +-
 octosentry/UpdateChecker.swift    | 2 +-
 4 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/Casks/octosentry.rb b/Casks/octosentry.rb
index 298a456..f29bec0 100644
--- a/Casks/octosentry.rb
+++ b/Casks/octosentry.rb
@@ -1,17 +1,17 @@
 # Homebrew Cask for octosentry (spec §9: DMG/Homebrew distribution channel).
 #
-# Canonical copy lives in zerolabsco/homebrew-tap — this one is kept in sync
+# Canonical copy lives in krazywarez/homebrew-tap — this one is kept in sync
 # here for reference. Users install via:
-#   brew tap zerolabsco/tap && brew install --cask octosentry
+#   brew tap krazywarez/tap && brew install --cask octosentry
 
 cask "octosentry" do
   version "1.0.0"
   sha256 "33c5b89ce817d5be7bacc8d6fe5e2ff5678b071e50eba0270ef31de32fc4566a"
 
-  url "https://github.com/zerolabsco/octosentry/releases/download/#{version}/octosentry-#{version}.dmg"
+  url "https://github.com/krazywarez/octosentry/releases/download/#{version}/octosentry-#{version}.dmg"
   name "octosentry"
   desc "Menu bar app aggregating GitHub security alerts into one feed"
-  homepage "https://github.com/zerolabsco/octosentry"
+  homepage "https://github.com/krazywarez/octosentry"
 
   depends_on macos: :sonoma
 
diff --git a/DISTRIBUTION.md b/DISTRIBUTION.md
index e442704..9757665 100644
--- a/DISTRIBUTION.md
+++ b/DISTRIBUTION.md
@@ -36,11 +36,11 @@ The update checker (`UpdateStore`) links there.
 
 ## Homebrew
 
-Published at [zerolabsco/homebrew-tap](https://github.com/zerolabsco/homebrew-tap).
+Published at [krazywarez/homebrew-tap](https://github.com/krazywarez/homebrew-tap).
 Users install via:
 
 ```bash
-brew tap zerolabsco/tap
+brew tap krazywarez/tap
 brew install --cask octosentry
 ```
 
@@ -49,7 +49,7 @@ Per release, after uploading the new DMG to its GitHub Release:
 1. `shasum -a 256 build/octosentry-<version>.dmg`
 2. Update `version` and `sha256` in [Casks/octosentry.rb](Casks/octosentry.rb)
    (kept here for reference — the canonical copy lives in the tap repo).
-3. Copy the updated file into a local clone of `zerolabsco/homebrew-tap`,
+3. Copy the updated file into a local clone of `krazywarez/homebrew-tap`,
    commit, and push.
 
 ## Version bumps
diff --git a/octosentry/SecurityEventRow.swift b/octosentry/SecurityEventRow.swift
index 85dbfa2..13a9ba1 100644
--- a/octosentry/SecurityEventRow.swift
+++ b/octosentry/SecurityEventRow.swift
@@ -74,7 +74,7 @@ struct SecurityEventRow: View {
         event: SecurityEvent(
             id: "preview-1",
             source: .dependabot,
-            repoFullName: "zerolabsco/octosentry",
+            repoFullName: "krazywarez/octosentry",
             severity: .critical,
             nativeSeverityLabel: "Critical",
             summary: "Denial of service in some-package",
diff --git a/octosentry/UpdateChecker.swift b/octosentry/UpdateChecker.swift
index e90cab1..fe456c7 100644
--- a/octosentry/UpdateChecker.swift
+++ b/octosentry/UpdateChecker.swift
@@ -14,7 +14,7 @@ import Foundation
 
 actor UpdateChecker {
     private let session: URLSession
-    private let repoOwner = "zerolabsco"
+    private let repoOwner = "krazywarez"
     private let repoName = "octosentry"
 
     init(session: URLSession = .shared) {