appydave-tools 0.32.1 → 0.32.2
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 +4 -4
- data/CHANGELOG.md +7 -0
- data/lib/appydave/tools/dam/project_resolver.rb +4 -1
- data/lib/appydave/tools/version.rb +1 -1
- data/package.json +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: df68f68c75b1c1cca5a817390b9a8b927fa0e3067e3b33993f990c1b78076c93
|
|
4
|
+
data.tar.gz: 7728ddc4d623f6681f3d408e44c88f8fea982da033b2e6dc19e9fef2b870fe1d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d45e9dc70ae24e1dc8e252506ce4a56ec630296f69c838749ba66092dde7bf50b62db691a7e15ac8822afe03bdb6bdcd09a882d18c21b34ab04e5a3ebb8f5785
|
|
7
|
+
data.tar.gz: f1469f8d33c358ec45f6085292618e6de807b3f148066f6d54d962329108dfc1029fa72e8fc93d9980b9de116a5b44938ac63bee15ed26eb7e6a6eef56726b5a
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [0.32.1](https://github.com/appydave/appydave-tools/compare/v0.32.0...v0.32.1) (2025-11-21)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* exclude organizational folders (brand, personas, projects, video-scripts) from ProjectResolver.valid_project? to prevent them appearing in project lists ([c573edf](https://github.com/appydave/appydave-tools/commit/c573edf138daebcdbb2ece102e6f36db92453a70))
|
|
7
|
+
|
|
1
8
|
# [0.32.0](https://github.com/appydave/appydave-tools/compare/v0.31.2...v0.32.0) (2025-11-21)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -96,7 +96,10 @@ module Appydave
|
|
|
96
96
|
return false if excluded.include?(basename)
|
|
97
97
|
|
|
98
98
|
# Exclude organizational folders (for brands using projects_subfolder)
|
|
99
|
-
|
|
99
|
+
# Note: 'projects' is NOT excluded here because when projects_subfolder is configured,
|
|
100
|
+
# we scan INSIDE the projects folder, so 'projects' never appears as a basename.
|
|
101
|
+
# If projects_subfolder is NOT configured, users may legitimately have a project named 'projects'.
|
|
102
|
+
organizational = %w[brand personas video-scripts]
|
|
100
103
|
return false if organizational.include?(basename)
|
|
101
104
|
|
|
102
105
|
# Exclude hidden and underscore-prefixed
|
data/package.json
CHANGED