meeting-noter 3.1.0__py3-none-any.whl → 3.1.1__py3-none-any.whl

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.

Potentially problematic release.


This version of meeting-noter might be problematic. Click here for more details.

meeting_noter/__init__.py CHANGED
@@ -1,3 +1,3 @@
1
1
  """Meeting Noter - Offline meeting transcription with virtual audio devices."""
2
2
 
3
- __version__ = "3.1.0"
3
+ __version__ = "3.1.1"
@@ -197,12 +197,20 @@ def rename_meeting(
197
197
  # Rename MP3 file
198
198
  old_path.rename(new_mp3_path)
199
199
 
200
- # Rename transcript if it exists
200
+ # Rename transcript if it exists (check both same dir and transcripts_dir)
201
201
  old_transcript = old_path.with_suffix(".txt")
202
202
  if old_transcript.exists():
203
203
  new_transcript = new_mp3_path.with_suffix(".txt")
204
204
  old_transcript.rename(new_transcript)
205
205
 
206
+ # Also check transcripts_dir if different from recordings dir
207
+ transcripts_dir = config.transcripts_dir
208
+ if transcripts_dir != old_path.parent:
209
+ old_transcript_in_dir = transcripts_dir / f"{old_stem}.txt"
210
+ if old_transcript_in_dir.exists():
211
+ new_transcript_in_dir = transcripts_dir / f"{new_stem}.txt"
212
+ old_transcript_in_dir.rename(new_transcript_in_dir)
213
+
206
214
  # Rename live transcript if it exists
207
215
  live_dir = old_path.parent / "live"
208
216
  old_live = live_dir / f"{old_stem}.live.txt"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: meeting-noter
3
- Version: 3.1.0
3
+ Version: 3.1.1
4
4
  Summary: Offline meeting transcription for macOS with automatic meeting detection
5
5
  Author: Victor
6
6
  License: MIT
@@ -1,4 +1,4 @@
1
- meeting_noter/__init__.py,sha256=JwF2WfRbBydFFpZTZSTTaw6yJQhBQbWizubMchK52r0,103
1
+ meeting_noter/__init__.py,sha256=7NjAkxDn5PvZ_baFmrb-ftDo9SBS16h25wdRYwBK970,103
2
2
  meeting_noter/__main__.py,sha256=6sSOqH1o3jvgvkVzsVKmF6-xVGcUAbNVQkRl2CrygdE,120
3
3
  meeting_noter/cli.py,sha256=x8Ut_H-4ZAqHFjpIv165ZmJenPUdWXs8L6t7O6sTXls,44791
4
4
  meeting_noter/config.py,sha256=byIveLb6bPzULuEFmu5e6KDVLJxHIPH64NmwlyXGy1A,9697
@@ -34,7 +34,7 @@ meeting_noter/install/macos.py,sha256=dO-86zbNKRtt0l4D8naVn7kFWjzI8TufWLWE3FRLHQ
34
34
  meeting_noter/output/__init__.py,sha256=F7xPlOrqweZcPbZtDrhved1stBI59vnWnLYfGwdu6oY,31
35
35
  meeting_noter/output/favorites.py,sha256=kYtEshq5E5xxaqjG36JMY5a-r6C2w98iqmKsGsxpgag,5764
36
36
  meeting_noter/output/searcher.py,sha256=ZGbEewodNuqq5mM4XvVtxELv_6UQByjs-LmEwodc-Ug,6448
37
- meeting_noter/output/writer.py,sha256=GbobTBKqsVJmdmUddCjAu-F4Anfoakk6NCH0ml4gw8Y,6884
37
+ meeting_noter/output/writer.py,sha256=WHBLtc1GUWpo-EFZTSmYD8aXHp_3iMrvLmdsMBkw9Q4,7328
38
38
  meeting_noter/resources/__init__.py,sha256=yzHNxgypkuVDFZWv6xZjUygOVB_Equ9NNX_HGRvN7VM,43
39
39
  meeting_noter/resources/icon.icns,sha256=zMWqXCq7pI5acS0tbekFgFDvLt66EKUBP5-5IgztwPM,35146
40
40
  meeting_noter/resources/icon.png,sha256=nK0hM6CPMor_xXRFYURpm0muA2O7yzotyydUQx-ukyg,2390
@@ -58,8 +58,8 @@ meeting_noter/ui/screens/settings.py,sha256=Zb9-1rkPap1oUNcu4SJcOIemI8DmVC_5uqMd
58
58
  meeting_noter/ui/screens/viewer.py,sha256=5LVhghDcpshlisCrygk9H3uwOh48vmonMd8d4NH77hU,3991
59
59
  meeting_noter/ui/styles/app.tcss,sha256=-uE-1mE3oqKBZW1-pySmOZhK9oxjEQqcG7LDprwxBg4,3396
60
60
  meeting_noter/ui/widgets/__init__.py,sha256=6aVXLDGFXL9PnX5bCnMAqRqOvsv4VuzK_T2UTySQlTg,36
61
- meeting_noter-3.1.0.dist-info/METADATA,sha256=9gdm0W6Ca9haY590COb0ZRQc7P1z4QQaJNRP_CTm9rc,7000
62
- meeting_noter-3.1.0.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
63
- meeting_noter-3.1.0.dist-info/entry_points.txt,sha256=osZoOmm-UBPCJ4b6DGH6JOAm7mofM2fK06eK6blplmg,83
64
- meeting_noter-3.1.0.dist-info/top_level.txt,sha256=9Tuq04_0SXM0OXOHVbOHkHkB5tG3fqkrMrfzCMpbLpY,14
65
- meeting_noter-3.1.0.dist-info/RECORD,,
61
+ meeting_noter-3.1.1.dist-info/METADATA,sha256=rcJA5fKb154FHFfJJJ8oJwvu_SwlCx44D1hE5JhYWw0,7000
62
+ meeting_noter-3.1.1.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
63
+ meeting_noter-3.1.1.dist-info/entry_points.txt,sha256=osZoOmm-UBPCJ4b6DGH6JOAm7mofM2fK06eK6blplmg,83
64
+ meeting_noter-3.1.1.dist-info/top_level.txt,sha256=9Tuq04_0SXM0OXOHVbOHkHkB5tG3fqkrMrfzCMpbLpY,14
65
+ meeting_noter-3.1.1.dist-info/RECORD,,