appydave-tools 0.32.3 → 0.32.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c7ed0260cd5c4a5728bd6337b51397e1f23c7b13743f9dd4502b50acc3c1574a
4
- data.tar.gz: 257973640a01cf4858e7e14d2c394d4514f07703daa4734643dbeeb0a2748135
3
+ metadata.gz: 7383b04769a66ee3d2ee80142e2ecfa869cf967bf50b85d5d29125d35162c820
4
+ data.tar.gz: a1d096b58aa583ef4d769b49765173eb289daf8270b0a1d574e0a31d8d738333
5
5
  SHA512:
6
- metadata.gz: f46f82711d33bade0f4522a675ed3ba6f6c1fb7f5944da0e93dcae56b43eced47e09073550463ed0a42f73feca7b0d5b59e356cbcb2dfa11786eedd8a7522405
7
- data.tar.gz: cf56022d6e532d535e6d700db801f30ef68ab93d0e0681ad9998831ba13301b2b6e57acfb92cbfd28b4b49343380bb9ed577a0c25290fc4c6b639efcd73778a3
6
+ metadata.gz: d0055e27b4ac88074155d013f841b3295a86fab1e86484a176d59518e1e9e947e5e5ac17f5804ea38b51351d2a21ed3a725f1998202b86af0ed0172b617fcabd
7
+ data.tar.gz: 16978f858fb349eaca6c9cfd4291b5c3e6ad48fe035beaa38bea03cc429f43295611e6eb302a76ae03f1d98c14f4938285c8c7aa732082aab1a13b6ae5e7d3c9
data/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [0.32.3](https://github.com/appydave/appydave-tools/compare/v0.32.2...v0.32.3) (2025-11-21)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * add debug logging to projects_directory and re-add 'projects' to organizational folder exclusions to diagnose configuration issue ([0dc34d7](https://github.com/appydave/appydave-tools/commit/0dc34d765d3ec89400304eebf4a0718a4485580d))
7
+
1
8
  ## [0.32.2](https://github.com/appydave/appydave-tools/compare/v0.32.1...v0.32.2) (2025-11-21)
2
9
 
3
10
 
@@ -55,8 +55,11 @@ module Appydave
55
55
 
56
56
  # List all projects for a specific brand (Mode 3)
57
57
  def self.list_brand_projects(brand_arg)
58
+ # ProjectResolver expects the original brand key/shortcut, not the expanded v-* version
59
+ projects = ProjectResolver.list_projects(brand_arg)
60
+
61
+ # Only expand brand for display purposes
58
62
  brand = Config.expand_brand(brand_arg)
59
- projects = ProjectResolver.list_projects(brand)
60
63
 
61
64
  if projects.empty?
62
65
  puts "⚠️ No projects found for brand: #{brand}"
@@ -96,9 +99,11 @@ module Appydave
96
99
 
97
100
  # List with pattern matching (Mode 3b)
98
101
  def self.list_with_pattern(brand_arg, pattern)
102
+ # ProjectResolver expects the original brand key/shortcut, not the expanded v-* version
103
+ matches = ProjectResolver.resolve_pattern(brand_arg, pattern)
104
+
105
+ # Only expand brand for display purposes
99
106
  brand = Config.expand_brand(brand_arg)
100
- brand_path = Config.brand_path(brand)
101
- matches = ProjectResolver.resolve_pattern(brand_path, pattern)
102
107
 
103
108
  if matches.empty?
104
109
  puts "⚠️ No projects found matching pattern: #{pattern}"
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Appydave
4
4
  module Tools
5
- VERSION = '0.32.3'
5
+ VERSION = '0.32.4'
6
6
  end
7
7
  end
data/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "appydave-tools",
3
- "version": "0.32.3",
3
+ "version": "0.32.4",
4
4
  "description": "AppyDave YouTube Automation Tools",
5
5
  "scripts": {
6
6
  "release": "semantic-release"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appydave-tools
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.32.3
4
+ version: 0.32.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Cruwys