Commit Graph

152 Commits

Author SHA1 Message Date
Ryderjj89
163532158f Update to latest NKJV logo version
- New improved NKJV logo for better branding
- Fix circular dependency in version state management
- Version selection now loads books properly without race conditions
2025-09-28 14:46:19 -04:00
Ryderjj89
a9f6843ddd Fix remaining issues: page title and browser navigation
- Page title now dynamically updates: 'NKJV Bible', 'ESV Bible', or 'The Bible'
- Browser back button detection improved - URL parameters are read on navigation changes
- Clearing version selection when returning to home without version parameter
- Complete NKJV logo update committed to repository

UI now properly reflects selected version in both title and navigation behaviors
2025-09-28 14:32:43 -04:00
Ryderjj89
f6e8648376 Update NKJV logo to improved version 2025-09-28 14:32:03 -04:00
Ryderjj89
78e4f7b3ae Fix logo loading and URL parameter persistence
Backend:
- Added static file serving for /logos directory
- Logos now accessible at /logos/path for Docker builds

Frontend:
- Updated all navigation to include version parameters (?version=esv|?version=nkjv)
- Book selection includes version in URL
- Breadcrumb navigation preserves version context
- URLs now work for bookmarking and sharing with version information

Complete fix for both logo display and navigation URL persistence.
2025-09-28 14:22:34 -04:00
Ryderjj89
8a8d40373f Add logos folder to Docker build
- Copy frontend/logos folder to production container
- Logos now accessible at /logos/ path for version branding
- ESV and NKJV logos included in Docker builds
2025-09-28 14:16:24 -04:00
Ryderjj89
743c1f1f63 Add ESV and NKJV logo images to repository
- frontend/logos/esv-logo.png: ESV translation logo
- frontend/logos/nkjv-logo.png: NKJV translation logo
- Logos are served from /logos/ directory for app header and version selector cards
- Logos are used when ESV/NKJV versions are selected in the app
2025-09-28 14:12:28 -04:00
Ryderjj89
ac45350ff5 Add version-specific logos to app header and version selector cards
- Header shows ESV/NKJV logo when version is selected, generic book icon on homepage
- Version selector cards now display actual ESV and NKJV logos instead of generic icons
- Logos sourced from frontend/logos/ directory (esv-logo.png, nkjv-logo.png)
- Proper sizing and accessibility with alt text
- Maintains responsive design across all screen sizes
2025-09-28 14:11:30 -04:00
Ryderjj89
a94736b9e5 Fix navigation - The Bible button now clears version selection and returns to version selector 2025-09-28 14:05:59 -04:00
Ryderjj89
253c6da8b1 Add new VersionSelector component for homepage redesign
Beautiful card-based version selection:
- ESV and NKJV option cards with distinct colors and icons
- Responsive design (side-by-side on desktop, stacked on mobile)
- Hover effects and smooth transitions
- Proper TypeScript typing and clean component architecture
- Accessible design with proper contrast ratios
2025-09-28 14:01:26 -04:00
Ryderjj89
b4952a4013 Complete homepage redesign - no longer defaults to ESV version
- Page title updated to 'The Bible' instead of 'ESV Bible'
- Homepage now shows version selection cards (ESV/NKJV) instead of book list
- Version dropdown shows 'Choose version' on homepage
- Users must select version before seeing books
- Maintains URL parameter support and all existing functionality
- Clean separation between version selection and Bible browsing

Now users start with version selection, preventing defaulting to one translation.
2025-09-28 13:58:25 -04:00
Ryderjj89
213c8394c3 Make favorites version-aware - verses only appear favorited in the version they were saved in
- Updated loadFavorites to filter favorites by version: only show favorites for current version
- Modified removeFavorite to match version when deleting specific favorites
- Added version to useEffect dependencies so favorites refresh when version changes
- Backend already supports version-specific favorites via database schema

Now users can favorite Genesis 1:1 in both ESV and NKJV independently - switching versions shows correct favorited states.
2025-09-28 13:50:57 -04:00
Ryderjj89
e21bc59463 Add version switching for favorites - clicking NKJV favorites now switches to NKJV version and URL parameters update automatically
- Added setSelectedVersion prop to FavoritesMenu component
- Updated navigateToFavorite to switch app version before navigation
- Favorites now switch to the stored version automatically
- URL parameters update correctly for ESV/NKJV selection
2025-09-28 13:45:31 -04:00
Ryderjj89
54edb264fe Add URL parameter support for Bible version
- Read version parameter from URL on page load (?version=esv|?version=nkjv)
- Update URL with version when selection changes
- Enable shareable version-specific URLs like /book/Genesis/chapter/1?version=nkjv
2025-09-28 13:39:42 -04:00
Ryderjj89
1b1cadf260 Simplified BibleReader parsing - NKJV files now use standard mdbible format with numbered verses 2025-09-28 13:30:01 -04:00
Ryderjj89
eaba20c208 Clean up encoding fixes - removed complex encoding conversion since NKJV files have been manually fixed to match mdbible formatting
- Removed fix-nkjv-encoding.js utility script (no longer needed)
- Simplified readMarkdownFile back to basic BOM removal
- NKJV files now use same format as ESV: numbered paragraphs (1. verses...)
- Maintains React parsing for both ESV and NKJV formats
2025-09-28 13:29:02 -04:00
Ryderjj89
58a85088f1 Add NKJV encoding fix utility script
Provides a comprehensive tool to clean up text encoding issues in NKJV files:
- Converts corrupted UTF-8 to Latin-1 and back to clean UTF-8
- Removes BOM markers and Windows line endings
- Strips replacement characters
- Can be run locally: node fix-nkjv-encoding.js
2025-09-28 13:17:48 -04:00
Ryderjj89
2b3d753275 Add comprehensive encoding fixes for NKJV text corruption
- Detect UTF-8 replacement characters and fall back to Latin-1 encoding
- Add NKJV-specific cleanup to remove replacement chars and normalize line endings
- Strip UTF-8 BOM and handle Windows line endings properly
2025-09-28 13:14:43 -04:00
Ryderjj89
1f526df0bc Fix final TypeScript error in favorite button - add null assertions and conditional checks for verseNumber 2025-09-28 13:08:24 -04:00
Ryderjj89
061f11e686 Fix TypeScript compilation error in BibleReader
- Added null check for verseNumber before rendering favorite button
- Prevents 'string | null is not assignable to string' error
2025-09-28 13:05:29 -04:00
Ryderjj89
4510e6e333 Fix NKJV verse parsing to handle header-style verses
- Updated parseBibleText to detect NKJV verses with ###### 1 Verse format
- Added version-specific parsing for ESV (1. format) vs NKJV (###### format)
- Ensures proper verse number extraction and text display for both versions
- Removes diamond question marks and square artifacts in NKJV text
2025-09-28 13:02:51 -04:00
Ryderjj89
4be87972e7 Add NKJV Bible data with numbered book names (01_Genesis, 02_Exodus, etc.)
Complete NKJV translation with:
- 66 books in numbered directory format
- All verses in markdown format
- Consistent naming scheme matching ESV structure
- Encoding normalized for proper text display

This completes the multi-version Bible support with both ESV and NKJV translations.
2025-09-28 12:55:24 -04:00
Ryderjj89
4721e8b5a5 Fix text encoding issues in NKJV files by removing UTF-8 BOM in readMarkdownFile 2025-09-28 12:53:28 -04:00
Ryderjj89
9e16b10222 Add NKJV data to Dockerfile - container now includes NKJV Bible data from repository 2025-09-28 12:36:33 -04:00
Ryderjj89
e432b21d67 Add detailed debugging logs to getBooks function to diagnose NKJV directory reading issue 2025-09-28 12:35:29 -04:00
Ryderjj89
35e5a260da Make search engine initialization more robust - handle missing ESV data directory gracefully and provide better error logging for NKJV 2025-09-28 12:35:00 -04:00
Ryderjj89
e7b98e0107 Fix NKJV directory path in backend - was looking in ../ instead of ../../ 2025-09-28 12:31:30 -04:00
Ryderjj89
ceeb465c8d Add multi-version Bible support with ESV and NKJV translations
- Rename project from 'ESV Bible' to 'The Bible'
- Implement version selection dropdown in homepage header
- Add support for multiple Bible versions:
  * ESV (English Standard Version) - from mdbible
  * NKJV (New King James Version) - from local NKJV/ directory
- Update all API endpoints to accept version parameter (?version=esv|?version=nkjv)
- Add version-aware favorites system that stores and displays Bible version (e.g., 'Genesis 1:1 (ESV)')
- Update database schema to include version column in favorites table
- Maintain backward compatibility with existing data
- Update Docker configuration and documentation
2025-09-28 12:13:37 -04:00
Joshua Ryder
5f832aecd4 Update README.md 2025-09-17 08:50:11 -04:00
Joshua Ryder
399878b442 Update README.md 2025-09-17 08:49:38 -04:00
Joshua Ryder
8bd394a4cf Update README.md 2025-09-17 08:28:49 -04:00
Ryderjj89
245090452e Update README with comprehensive search feature documentation
- Add detailed Bible Search Feature section with capabilities and API endpoints
- Document search interface options (header button, modal, dedicated page)
- Include search parameters and functionality details
- Add acknowledgment for mdbible repository as Bible data source
- Highlight contextual search results and direct verse navigation features
2025-09-15 17:58:52 -04:00
Ryderjj89
6894f1c871 Add direct verse navigation from search results
- Search results now navigate directly to specific verses using URL hash
- Clicking a search result takes you to the chapter and scrolls to the exact verse
- Matches the behavior of favorites navigation for consistent user experience
- URL format: /book/BookName/chapter/1#verse-5 for precise verse targeting
2025-09-15 17:55:08 -04:00
Ryderjj89
b2096c67ae Fix chapter loading issue caused by double padding
- Backend now properly handles chapter names that already include 'Chapter_' prefix
- Prevents double padding that was causing file not found errors
- Maintains backward compatibility for legacy chapter number requests
- Chapter loading should now work correctly alongside search functionality
2025-09-15 17:48:10 -04:00
Ryderjj89
5f22fb5bdc Fix search functionality for markdown bible data
- Update search engine to parse numbered list format (1. verse text)
- Fix chapter file path construction to use Chapter_XX.md format
- Add zero-padding for chapter numbers in API routes
- Skip empty lines and headers in markdown parsing
- Ensure compatibility with external bible data source structure
2025-09-15 17:40:37 -04:00
Ryderjj89
f5639af27f Add comprehensive Bible search feature
- Implement backend search engine with indexing and relevance scoring
- Add search API endpoints (/api/search and /api/search/suggestions)
- Create SearchComponent with modal and page views
- Add search button to header navigation
- Support real-time search with debouncing
- Include context verses and search term highlighting
- Add book filtering and mobile-responsive design
- Integrate with existing routing and navigation system
2025-09-15 17:30:00 -04:00
Joshua Ryder
ebca91591c Update README.md 2025-09-15 17:18:34 -04:00
Ryderjj89
05c9a678af Final UX improvements - show full 'Favorites' text on mobile and add refresh callback when deleting favorites from menu 2025-09-14 13:04:32 -04:00
Ryderjj89
df65718afd Fix mobile delete button - make X button always visible and larger for touch-friendly interaction on mobile devices 2025-09-14 12:56:45 -04:00
Ryderjj89
57e3f4e26c Add scroll-to-verse functionality - verses now have IDs and clicking verse favorites automatically scrolls to the specific verse 2025-09-14 12:52:03 -04:00
Ryderjj89
f46db34329 Fix volume consistency - use esv-bible_data volume name and correct /app/backend/data path in both Docker run commands and docker-compose.yml 2025-09-14 12:48:53 -04:00
Ryderjj89
d430de915a Final README improvements - add Docker Hub image option and detailed OpenID Connect examples for Authentik, Keycloak, and Auth0 2025-09-14 12:44:12 -04:00
Ryderjj89
2f4ee82a5b Comprehensive README update - add all features, fix Docker commands with persistent volumes, improve Docker Compose instructions, and add Cline AI attribution 2025-09-14 12:39:39 -04:00
Ryderjj89
bda3608ff0 Move favorites menu below header to fix mobile cutoff - positioned in layout flow instead of absolute positioning for better mobile experience 2025-09-14 12:33:34 -04:00
Ryderjj89
54646f54d2 Fix mobile favorites menu positioning - prevent cutoff on mobile screens with responsive width and positioning adjustments 2025-09-14 12:26:45 -04:00
Ryderjj89
6bc24c25c9 Fix logout icon and add real-time favorites refresh for books and chapters - LogOut icon replaces square, all favoriting now triggers instant menu refresh 2025-09-14 12:04:54 -04:00
Ryderjj89
d99bc4571c Fix TypeScript compilation error - add explicit type annotation for prev parameter 2025-09-14 11:56:42 -04:00
Ryderjj89
94d17b1d16 Add real-time favorites refresh and improve mobile layout - favorites menu updates instantly when favorites change 2025-09-14 11:53:35 -04:00
Ryderjj89
681a724e8e Fix verse parsing regex to match actual markdown format (1. instead of 1 ) - this will make verse stars appear 2025-09-14 11:45:25 -04:00
Ryderjj89
1fe9dc9c9c Fix critical UX issues: make verse stars always visible and clickable, fix mobile login button visibility 2025-09-14 11:39:43 -04:00
Ryderjj89
2c78f7c437 Fix database schema: allow NULL chapters for book-only favorites 2025-09-13 19:17:51 -04:00