This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| # 04/01/2026 Photo Selector Version 26 Rev 07 | |
| #Fix: Restored filenames below photos in Tab 2 preview | |
| #Fix: Full filenames in Tab 2 left panel | |
| #Fix: Tooltip on hover for Tab 1 thumbnails | |
| #Fix: Added "Add Page" button for additional pages | |
| #Author: RLS & Factory AI Droids | |
| import os, shutil, re, tkinter as tk | |
| from tkinter import filedialog, messagebox |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| # 04/01/2026 Photo Selector Version 26 Rev 04 | |
| #Fix: New template auto-selection based on filename patterns (FRONT/BACK, WV/CU) | |
| #Fix: Dynamic preview sizing - fills available space | |
| #Author: RLS & Factory AI Droids | |
| import os, shutil, re, tkinter as tk | |
| from tkinter import filedialog, messagebox | |
| from PIL import Image, ImageTk |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| # 04/01/2026 Photo Selector Version 26 Rev 01 | |
| #Fix: New template auto-selection based on filename patterns (FRONT/BACK, WV/CU) | |
| #Author: RLS & Factory AI Droids | |
| #Fix: Updated deprecated trace() to trace_add() for Tkinter compatibility | |
| #Fix: Widened preview panel to 40% using PanedWindow for resizable layout | |
| #Fix: Report Preview tab now uses PanedWindow with adjustable divider | |
| import os, shutil, re, tkinter as tk | |
| from tkinter import filedialog, messagebox |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| # 03/30/2026 Photo Selector Version 25 Rev 11 | |
| #Author: RLS & Factory AI Droids | |
| #Fix: Updated deprecated trace() to trace_add() for Tkinter compatibility | |
| #Fix: Widened preview panel to 40% using PanedWindow for resizable layout | |
| #Fix: Report Preview tab now uses PanedWindow with adjustable divider | |
| import os, shutil, re, tkinter as tk | |
| from tkinter import filedialog, messagebox | |
| from PIL import Image, ImageTk |