From c04911dfa213b7d3009436e0365d17ed49001759 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Fri, 31 Oct 2025 20:39:16 +0200 Subject: feat: improve vibe-coded detection to include 'vibe-coded' variant, bump version to 0.10.1 Amp-Thread-ID: https://ampcode.com/threads/T-efdb3f47-3436-4ab4-9f00-6ad3d8b16af2 Co-authored-by: Amp --- internal/showcase/showcase.go | 4 ++-- internal/version/version.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/internal/showcase/showcase.go b/internal/showcase/showcase.go index 1c057f3..4fffa63 100644 --- a/internal/showcase/showcase.go +++ b/internal/showcase/showcase.go @@ -917,9 +917,9 @@ func detectVibeCodedProject(repoPath string) bool { continue } - // Case-insensitive search for "vibe code" + // Case-insensitive search for "vibe code" or "vibe-coded" lowerContent := strings.ToLower(string(content)) - if strings.Contains(lowerContent, "vibe code") { + if strings.Contains(lowerContent, "vibe code") || strings.Contains(lowerContent, "vibe-coded") { return true } } diff --git a/internal/version/version.go b/internal/version/version.go index dda0d9a..39a4195 100644 --- a/internal/version/version.go +++ b/internal/version/version.go @@ -7,7 +7,7 @@ import ( var ( // Version is the current version of gitsyncer - Version = "0.10.0" +Version = "0.10.1" // GitCommit is the git commit hash at build time GitCommit = "unknown" -- cgit v1.2.3