summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-10-31 20:39:16 +0200
committerPaul Buetow <paul@buetow.org>2025-10-31 20:39:16 +0200
commitc04911dfa213b7d3009436e0365d17ed49001759 (patch)
tree5f1234a48d1646923041cea94bed6e5ae4d1589a
parent188cfb52bb682c7382e30ea55230dfb567ae7552 (diff)
feat: improve vibe-coded detection to include 'vibe-coded' variant, bump version to 0.10.1v0.10.1
Amp-Thread-ID: https://ampcode.com/threads/T-efdb3f47-3436-4ab4-9f00-6ad3d8b16af2 Co-authored-by: Amp <amp@ampcode.com>
-rw-r--r--internal/showcase/showcase.go4
-rw-r--r--internal/version/version.go2
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"