appydave-tools 0.59.0 → 0.60.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: f495360102f6be7cde4ad124c01182779b69279b3865acf93f4b0ba784f5dd66
4
- data.tar.gz: 8954dd4f6e830c94dc51dc3f4de6ebcf6a1c917a480c38f0172ab3d81930a793
3
+ metadata.gz: 17aeed0febc1cb3b7a03c4296598d1d565afcaf0291eab4cee517b10423022f6
4
+ data.tar.gz: c12a755661cfd98cb229dfeb37e7b06f1e74aca5b9b994dd1eec74a2537c1204
5
5
  SHA512:
6
- metadata.gz: c18165d91e7d7998759f2638e93a2c44ce1a7e1a601100993893b6ca1f76349201bcb6de6fee96d546c384ac2ae12094442dee103da4c23036a2d96d4d98fdc4
7
- data.tar.gz: ae3e8319caa1cad8de689c1cbd8e2ccb8bd22cfe1984e4405ac2e4f64346a37362e56f50f216063b3127701bb2b39428ae072095df25643992331a3dda55c5a0
6
+ metadata.gz: dfd436195b2e4e959b351b2f89294608ed621f402ea6d75db1df782362a7a29b5f9d2ede6f8988b0333f09c67bbdba635ace5cf6d206aa11f5e36938ce0293a3
7
+ data.tar.gz: c8f217cc38051e9a1adf1c2f05c40809cce39609275810d68136741de7588b90c6c2f6a937c3ad34f76f1d669daf124e16e04645b8f35c3c9fa455e9ee7e5535
data/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ # [0.59.0](https://github.com/appydave/appydave-tools/compare/v0.58.0...v0.59.0) (2025-11-22)
2
+
3
+
4
+ ### Features
5
+
6
+ * add KEY column to brand list table showing brand identifier between name and project count ([ed3c2f7](https://github.com/appydave/appydave-tools/commit/ed3c2f74fbf47050ac33f051bc96afe5d467bcdb))
7
+
1
8
  # [0.58.0](https://github.com/appydave/appydave-tools/compare/v0.57.0...v0.58.0) (2025-11-22)
2
9
 
3
10
 
@@ -46,8 +46,8 @@ module Appydave
46
46
  end
47
47
 
48
48
  # Print table header
49
- puts 'BRAND KEY PROJECTS SIZE LAST MODIFIED PATH'
50
- puts '-' * 130
49
+ puts 'BRAND KEY PROJECTS SIZE LAST MODIFIED'
50
+ puts '-' * 100
51
51
 
52
52
  # Print table rows
53
53
  brand_data.each do |data|
@@ -55,13 +55,12 @@ module Appydave
55
55
  brand_display = "#{data[:shortcut]} - #{data[:name]}"
56
56
 
57
57
  puts format(
58
- '%-30s %-12s %10d %12s %20s %s',
58
+ '%-30s %-12s %10d %12s %20s',
59
59
  brand_display,
60
60
  data[:key],
61
61
  data[:count],
62
62
  format_size(data[:size]),
63
- format_date(data[:modified]),
64
- shorten_path(data[:path])
63
+ format_date(data[:modified])
65
64
  )
66
65
  end
67
66
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Appydave
4
4
  module Tools
5
- VERSION = '0.59.0'
5
+ VERSION = '0.60.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.59.0",
3
+ "version": "0.60.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.59.0
4
+ version: 0.60.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Cruwys