appydave-tools 0.25.0 → 0.27.0

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: 90aed9fb023924833992369ad5a930ab843479d562ad9fc7fc199136ef16bad6
4
- data.tar.gz: 86d4f79fc5431c81a341ccd943a2c7d6a17494e3679588e96c9aa7cf83148af4
3
+ metadata.gz: 98ad1a8b7a772bba1b2ad08693eb15fb76d6e10529a2bbbb374b75305139d34a
4
+ data.tar.gz: 1fb1f348214919a632bc529a6cb6dfdac36a19c40f8dc759709c0d3f77ba98c3
5
5
  SHA512:
6
- metadata.gz: dc29a7916c07fcfff0927ee35313f5adc6e0de3eaf978fc2779ee07ddde4bd5063825caaaa7658d1bf3f0ebf50c5f6bd6a34812adc429a6b60929b26bc69cb2d
7
- data.tar.gz: 99231a0e658351817fe96d0b8500d0b7f02b699d7a62c7643af2495af8d56bdd7113f7fc6d89fe6b4eb35c02581664feb6b3a8999cafb85c0099f8ce514b5a82
6
+ metadata.gz: d722f6768edd7f46e570e5a4d3d819848a7951640fa4a4ea10ae2ff057d57beafda651e8003e46c370c30122152b13dded3c632ad981815eed41f0ca295307b5
7
+ data.tar.gz: 4dd29b411a49b5a9b220383c479b2046ff3cb75987af0b453f4395d5cbcd999cdfe80ffaab73d29a03925978b0a2b8a3f2e670096580653953961c8af14d9b4d
data/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ # [0.26.0](https://github.com/appydave/appydave-tools/compare/v0.25.0...v0.26.0) (2025-11-19)
2
+
3
+
4
+ ### Features
5
+
6
+ * exclude Windows Zone.Identifier files from upload and archive ([e018b6d](https://github.com/appydave/appydave-tools/commit/e018b6d9750394e38877421d49a9dd7d4319315c))
7
+
8
+ # [0.25.0](https://github.com/appydave/appydave-tools/compare/v0.24.0...v0.25.0) (2025-11-19)
9
+
10
+
11
+ ### Features
12
+
13
+ * add download timing using shared format_duration helper ([c729792](https://github.com/appydave/appydave-tools/commit/c729792c89507e16ce4c51de55c7a05173da97e7))
14
+
1
15
  # [0.24.0](https://github.com/appydave/appydave-tools/compare/v0.23.0...v0.24.0) (2025-11-19)
2
16
 
3
17
 
@@ -26,6 +26,7 @@ module Appydave
26
26
  **/.vercel/**
27
27
  **/tmp/**
28
28
  **/.DS_Store
29
+ **/*:Zone.Identifier
29
30
  ].freeze
30
31
 
31
32
  def initialize(brand, project_id, brand_info: nil, brand_path: nil, s3_client: nil)
@@ -132,6 +133,13 @@ module Appydave
132
133
 
133
134
  files.each do |file|
134
135
  relative_path = file.sub("#{staging_dir}/", '')
136
+
137
+ # Skip excluded files (e.g., Windows Zone.Identifier, .DS_Store)
138
+ if excluded_path?(relative_path)
139
+ skipped += 1
140
+ next
141
+ end
142
+
135
143
  s3_path = build_s3_key(relative_path)
136
144
 
137
145
  # Check if file already exists with same MD5
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Appydave
4
4
  module Tools
5
- VERSION = '0.25.0'
5
+ VERSION = '0.27.0'
6
6
  end
7
7
  end
data/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "appydave-tools",
3
- "version": "0.25.0",
3
+ "version": "0.27.0",
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.25.0
4
+ version: 0.27.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Cruwys