diff --git a/src/components/ui/Modals/NewSiteChangelogModal.svelte b/src/components/ui/Modals/NewSiteChangelogModal.svelte index 5f8896a0..a6656ead 100644 --- a/src/components/ui/Modals/NewSiteChangelogModal.svelte +++ b/src/components/ui/Modals/NewSiteChangelogModal.svelte @@ -3,16 +3,15 @@ import Modal from '$ui/FlowbiteSvelte/modal/Modal.svelte'; import { __newSiteChangelogModalVisible } from '$utils/stores'; import { linkClasses } from '$data/commonClasses'; - import { updateSettings } from '$utils/updateSettings'; const newFeatures = [ - 'Expanded Language Options: Word-by-word translations now available in Chinese, Divehi, French, German, Ingush, Malayalam, and Russian.', + 'Expanded Language Options: Word-by-word translations now available in Chinese, Divehi, French, German, Ingush, Malayalam, Persian and Russian.', 'King Fahad Quran Printing Complex Fonts: Includes Tajweed color-coded support based on Dar Al Marifa Easy Quran Mushaf.', 'New Themes and Styles: Fresh themes in Blue, Green, and Sepia, along with enhanced Light and Black themes.', 'Tooltip and Popup Features: Tooltips for word meanings and transliterations.', 'Screen Sleep Prevention: Option to prevent the screen from sleeping.', - 'Multiple Verse/Ayah Translations: Select multiple verse/Ayah translations simultaneously, an improvement from the previous limit of two.', - 'Comprehensive Footnotes: Added to Ayah/verse translations across multiple translations.', + 'Multiple Verse Translations: Select multiple verse translations simultaneously, an improvement from the previous limit of two.', + 'Comprehensive Footnotes: Added to verse translations across multiple translations.', 'Tajweed Transliteration: New Tajweed transliterations for verses and words, ensuring correct pronunciation.', 'Tafsir Al Quran: Access Tafsir by multiple authors in various languages.', 'Flexible Display Options: Includes Mushaf (page mode) and other display layouts.', @@ -20,18 +19,15 @@ 'Morphology Mode: Provides detailed word information for learning and research.', 'Sequential Word Playback: Play words one-by-one for better learning.', 'Terminology Customization: Switch website terminologies to fit user preferences.', - 'Tajweed Rules Modal: Learn about Tajweed rules on the fly without leaving the Surah reading.', + 'Tajweed Rules Modal: Learn about Tajweed rules on the fly without leaving the chapter reading.', 'Translation Audio: Experience translation audio alongside Arabic recitation.', - 'Direct Link Sharing: Share links directly to Ayah/verse.' - ]; - - const enhancedFeatures = [ + 'Direct Link Sharing: Share links directly to a verse.', 'Word Highlight Feature: Expanded to include more reciters.', 'Mini Status Bar: Now displays progress and other relevant information.', - 'Redesigned Homepage: Features two columns of Surah cards to reduce scrolling.', + 'Redesigned Homepage: Features two columns of chapter cards on smaller screens to reduce scrolling.', 'Search Feature: Enhanced with additional options.', - 'Duas Page: Displays only the Dua portion of the Ayah in focus with the ability to hide non-Dua portions.', - 'Suggested Surahs/Ayah: Improved suggestions on the homepage.', + 'Duas Page: Displays only the Dua portion of the verse in focus with the ability to hide non-Dua portions.', + 'Suggested Chapters: Improved suggestions on the homepage.', 'Bookmarks Page/Tab: Enhanced appearance and management of bookmarks.', 'Font Size and Recitation Speed Adjustment: Improved user experience.', 'Advanced Audio Play: Enhanced audio play features.' @@ -39,9 +35,6 @@ $: { if ($__newSiteChangelogModalVisible) { - // __newSiteChangelogModalVisible.set(true); - // updateSettings({ type: 'newSiteChangelogModal', value: true }); - // confettis for the update? why not! setTimeout(function () { party.confetti(document.body, { @@ -61,22 +54,12 @@