appydave-tools 0.58.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: 1f5b4b713f5cf5c0895e255d25cfc3019187592f551fb0845604c85a7a4d3f45
4
- data.tar.gz: add70858eea26dd40bce3ee5855cbd9584fe790a8350067f1b36ad2ba85216fc
3
+ metadata.gz: 17aeed0febc1cb3b7a03c4296598d1d565afcaf0291eab4cee517b10423022f6
4
+ data.tar.gz: c12a755661cfd98cb229dfeb37e7b06f1e74aca5b9b994dd1eec74a2537c1204
5
5
  SHA512:
6
- metadata.gz: ba5dcf4b13bbdc0664f3f833d4dc3b271329342240516fcc079fe8a0f29346b0037881a3fc2ab64b5214cf7aea52316844df8d521fc923e57e8c2df45637a78a
7
- data.tar.gz: 40425a7f12e81f247993753791a4c27b6723e284dc162e882455af6b58bfb53b407152ebd6d0dcc38709a50fcc9c1e8fac6d1a9ad8b48eac282f478500bd5d2f
6
+ metadata.gz: dfd436195b2e4e959b351b2f89294608ed621f402ea6d75db1df782362a7a29b5f9d2ede6f8988b0333f09c67bbdba635ace5cf6d206aa11f5e36938ce0293a3
7
+ data.tar.gz: c8f217cc38051e9a1adf1c2f05c40809cce39609275810d68136741de7588b90c6c2f6a937c3ad34f76f1d669daf124e16e04645b8f35c3c9fa455e9ee7e5535
data/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
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
+
8
+ # [0.58.0](https://github.com/appydave/appydave-tools/compare/v0.57.0...v0.58.0) (2025-11-22)
9
+
10
+
11
+ ### Features
12
+
13
+ * implement compact brand list format showing 'shortcut (key) - Name' ([8e38a77](https://github.com/appydave/appydave-tools/commit/8e38a775a60e3e06b14c793293f4046552a5eaf4)), closes [#34](https://github.com/appydave/appydave-tools/issues/34)
14
+
1
15
  # [0.57.0](https://github.com/appydave/appydave-tools/compare/v0.56.0...v0.57.0) (2025-11-22)
2
16
 
3
17
 
@@ -46,26 +46,21 @@ module Appydave
46
46
  end
47
47
 
48
48
  # Print table header
49
- puts 'BRAND PROJECTS SIZE LAST MODIFIED PATH'
50
- puts '-' * 120
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|
54
- # Format: "shortcut (key) - Name"
55
- # If shortcut == key, just show "key - Name" to avoid redundancy
56
- brand_display = if data[:shortcut] == data[:key]
57
- "#{data[:key]} - #{data[:name]}"
58
- else
59
- "#{data[:shortcut]} (#{data[:key]}) - #{data[:name]}"
60
- end
54
+ # Format: "shortcut - Name" (simplified display)
55
+ brand_display = "#{data[:shortcut]} - #{data[:name]}"
61
56
 
62
57
  puts format(
63
- '%-40s %10d %12s %20s %s',
58
+ '%-30s %-12s %10d %12s %20s',
64
59
  brand_display,
60
+ data[:key],
65
61
  data[:count],
66
62
  format_size(data[:size]),
67
- format_date(data[:modified]),
68
- shorten_path(data[:path])
63
+ format_date(data[:modified])
69
64
  )
70
65
  end
71
66
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Appydave
4
4
  module Tools
5
- VERSION = '0.58.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.58.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.58.0
4
+ version: 0.60.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Cruwys