appydave-tools 0.31.0 → 0.31.1

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: 59166b27664a8c4643a3d5e523f54d30a58b041014dd9e22bf7e8fe5bc120991
4
- data.tar.gz: 0a7ad00b2efd8076a16b61583ec09865013df2ed220da575a33593da571c6c81
3
+ metadata.gz: e24c8dfde585d812b3badde9e488d54107700eadacf3932332556951f6433e90
4
+ data.tar.gz: 25381e724a850a2ba20250855edf192127589009ccba9ec3862152e924e7e0d7
5
5
  SHA512:
6
- metadata.gz: c7b247b7916f728f0903cdc563da3dce0b2f0f1378dc6afe860d2d22de8c3dddbe5489ed09af1857c518686553f64bbc1cc9202e085ff4770bdfd4becaacd863
7
- data.tar.gz: d088f0367d0b3105cd9e69a0c02fa9b58163920c75cabb25bae56be18a01294900c7c5522bcff2bfb2ac2cb1600e7903fa9d7a732946f053d175392f130ab63a
6
+ metadata.gz: 353655eae4d37c1f58ae7c9c89466d836019a9eaca560352055f0cf61bea191bc9a83aa8cbfd9dff36e5919237feb75f76cbbf1014b62d1782610b8cbaad9334
7
+ data.tar.gz: 98818a2a5ccf86d7b114939f702c01797969f5f7a77eea37edd551b070f40334139a1002ac6fc333b89a21f56d6a96c508201947148c52d2733bab4c3537e5b0
data/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ # [0.31.0](https://github.com/appydave/appydave-tools/compare/v0.30.0...v0.31.0) (2025-11-21)
2
+
3
+
4
+ ### Features
5
+
6
+ * fix ManifestGenerator to scan only projects subfolder when configured - prevents scanning brand root organizational folders (brand/, personas/, video-scripts/) as projects ([2c8d84c](https://github.com/appydave/appydave-tools/commit/2c8d84c70f783a0f87ff36cc1e79c00df668def5))
7
+
1
8
  # [0.30.0](https://github.com/appydave/appydave-tools/compare/v0.29.0...v0.30.0) (2025-11-21)
2
9
 
3
10
 
@@ -62,6 +62,9 @@ module Appydave
62
62
  end
63
63
 
64
64
  def show_git_info(indent: '')
65
+ # Fetch latest from remote to ensure accurate status
66
+ fetch_from_remote
67
+
65
68
  status = git_status_info
66
69
 
67
70
  puts "#{indent}🌿 Branch: #{status[:branch]}"
@@ -156,6 +159,13 @@ module Appydave
156
159
  rescue StandardError
157
160
  # Silently fail if git status fails
158
161
  end
162
+
163
+ # Fetch latest changes from remote to ensure accurate sync status
164
+ def fetch_from_remote
165
+ `git -C "#{brand_path}" fetch origin 2>/dev/null`
166
+ rescue StandardError
167
+ # Silently fail if fetch fails (e.g., no network, no remote)
168
+ end
159
169
  end
160
170
  end
161
171
  end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Appydave
4
4
  module Tools
5
- VERSION = '0.31.0'
5
+ VERSION = '0.31.1'
6
6
  end
7
7
  end
data/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "appydave-tools",
3
- "version": "0.31.0",
3
+ "version": "0.31.1",
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.31.0
4
+ version: 0.31.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Cruwys