podcast-buddy 0.2.0 → 0.2.1

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: e31b071eb8f81295b7dea19da2f25273d7e2b7fc46452fb6f8aba2796fbe2cef
4
- data.tar.gz: eddb056050f53b6cacda0240f64aff01a211a1d84b8fbd13a19bc1d5c6c79421
3
+ metadata.gz: 6ebed9ffec7e1ce399ed7b64d332087e433b8348e84b1af2fc8a13a959163802
4
+ data.tar.gz: b3d9fe281bf8259bcc9b65ef466fe517885e3855fd95da0672ab93f7a08f80f0
5
5
  SHA512:
6
- metadata.gz: af3c610c3bfa036bdb9d0a55898824a72d435552b76017713b76e93793d6806f9826be8f496d325f89f4dbb4687328de79cb48c8c0e2234935a16db5e22e812f
7
- data.tar.gz: 71a2cfef11c518009357f4b0e91d178118141b6f2ea371553428064bb583b675a499c36ee763f4c9c7f5c49fe7071c71dfc8c086e5b62f4384030c58b4abc985
6
+ metadata.gz: b53e802df3a99224404789e1c9acb061b2d4dcc2ef57927ba0b2a0cf3a0aaf62fa8e115d148c27a62407c44851853b39fc2955d2e4748a2ecf869fa4cb926c43
7
+ data.tar.gz: 230641523d5daf007ac70ea44d41d2dad49a12c28741c26b78e348b1e573e5ffe24c707fd76c505ba64dee25e783c9c51722cb8bf4272410aaab41cef4c54fae
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.2.1] - 2024-08-13
4
+
5
+ * Fixes typo in command-line help banner to reference proper podcast_buddy command
6
+ * Updates README with new options
7
+
3
8
  ## [0.2.0] - 2024-08-13
4
9
 
5
10
  * 9edc409 - Refactor to make use of Async
data/README.md CHANGED
@@ -44,9 +44,17 @@ Once you're done, simply `ctrl-c` to wrap things up.
44
44
 
45
45
  ### Helpful files logged during your session with Buddy
46
46
 
47
- 1. Your full transcript is stored in `tmp/transcript.log`
48
- 2. A summarization of the discussion and topics are stored in `tmp/discussion.log`
49
- 3. The raw whisper logs are stored in `tmp/whisper.log`
47
+ 1. Your full transcript is stored in `tmp/transcripti-%Y-%m-%d.log`.
48
+ 2. A summarization of the discussion is stored in `tmp/summary-%Y-%m-%d.log`.
49
+ 3. A list of topics extracted from the discussion is stored in `tmp/topics-%Y-%m-%d.log`.
50
+ 4. The Show Notes are stored in `tmp/show-notes-%Y-%m-%d.log`.
51
+ 5. The raw whisper logs are stored in `tmp/whisper.log`.
52
+
53
+ ### Options
54
+
55
+ **debug mode**: `podcast_buddy --debug` – shows verbose logging
56
+ **custom whisper model**: `podcast_buddy --whisper base.en` – use any of [these available models](https://github.com/ggerganov/whisper.cpp/blob/master/models/download-ggml-model.sh#L28-L49).
57
+ **custom session**: `podcast_buddy --name "Ruby Rogues 08-15-2024"` – saves files to a new `tmp/Ruby Rogues 08-15-2024/` directory.
50
58
 
51
59
  ## Development
52
60
 
data/exe/podcast_buddy CHANGED
@@ -8,7 +8,7 @@ require "fileutils"
8
8
 
9
9
  options = {}
10
10
  OptionParser.new do |opts|
11
- opts.banner = "Usage: podcast-buddy [options]"
11
+ opts.banner = "Usage: podcast_buddy [options]"
12
12
 
13
13
  opts.on("--debug", "Run in debug mode") do |v|
14
14
  options[:debug] = v
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PodcastBuddy
4
- VERSION = "0.2.0"
4
+ VERSION = "0.2.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: podcast-buddy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Valentino Stoll