appydave-tools 0.25.0 → 0.26.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: 7bab210dc9c8c8c367a1a24c6b7c3d6b732e1c4e3085ee98b311c34c1d057aac
4
+ data.tar.gz: 03f95635fce24ae1b0fddcb948584eab86ceadbc6738f65a8c049de85d960cb5
5
5
  SHA512:
6
- metadata.gz: dc29a7916c07fcfff0927ee35313f5adc6e0de3eaf978fc2779ee07ddde4bd5063825caaaa7658d1bf3f0ebf50c5f6bd6a34812adc429a6b60929b26bc69cb2d
7
- data.tar.gz: 99231a0e658351817fe96d0b8500d0b7f02b699d7a62c7643af2495af8d56bdd7113f7fc6d89fe6b4eb35c02581664feb6b3a8999cafb85c0099f8ce514b5a82
6
+ metadata.gz: eb775da047c00b412065c4fa9bf6f17963cac598dab05e4e9f357e111580ea5aca38047ab9e390f7799f4c7d8a8f3b28facf8d30e05059696df83db9975c4c1f
7
+ data.tar.gz: a92bb5b8673726762216a9b03a2816cda499c8f00be0e896ed65fe85205fde1a13cc5dffd97ab52830a2c7692d01380eff724a1a4326db060765452dee437cd2
data/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ # [0.25.0](https://github.com/appydave/appydave-tools/compare/v0.24.0...v0.25.0) (2025-11-19)
2
+
3
+
4
+ ### Features
5
+
6
+ * add download timing using shared format_duration helper ([c729792](https://github.com/appydave/appydave-tools/commit/c729792c89507e16ce4c51de55c7a05173da97e7))
7
+
1
8
  # [0.24.0](https://github.com/appydave/appydave-tools/compare/v0.23.0...v0.24.0) (2025-11-19)
2
9
 
3
10
 
@@ -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.26.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.26.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.26.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Cruwys