diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d1a26cd1..6a65a499c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. The format is based on [Common Changelog](https://common-changelog.org/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 1.14.0-beta.1 - 2025-xx-xx + +- Updated Onboarding videos +- Changed Mods of the Month to Mods Spotlight +- Added filter search bar to FBLO + ## [1.13.3] - 2024-12-10 - Added notification for optional extension requirements diff --git a/src/extensions/onboarding_dashlet/Dashlet.tsx b/src/extensions/onboarding_dashlet/Dashlet.tsx index a44d58bb9..c4f94d9b7 100644 --- a/src/extensions/onboarding_dashlet/Dashlet.tsx +++ b/src/extensions/onboarding_dashlet/Dashlet.tsx @@ -107,7 +107,7 @@ function OnBoardingDashletWrapper(props: { ? :

- {t('Watch these 4 videos to guide you on how to start modding your favorite games.')} + {t('Watch these videos to guide you on how to start modding your favorite games.')}

{ diff --git a/src/extensions/onboarding_dashlet/steps.ts b/src/extensions/onboarding_dashlet/steps.ts index 2c4fa92dd..912f267d4 100644 --- a/src/extensions/onboarding_dashlet/steps.ts +++ b/src/extensions/onboarding_dashlet/steps.ts @@ -2,35 +2,19 @@ export const STEPS: IStep[] = [ { title: 'Manage your game', desc: 'Learn how to add games for Vortex to manage.', - length: '2:28', + length: '2:25', img: 'assets/images/dashlets/add-game.png', - video: 'https://www.youtube.com/embed/vmJFBHD6gvg', + video: 'https://www.youtube.com/embed/_9ZT49X9fvQ', id: 'add-game', }, { - title: 'Log in', - desc: 'Link your Nexus Mods account to Vortex.', - length: '2:25', - img: 'assets/images/dashlets/login-link.png', - video: 'https://www.youtube.com/embed/IMySUQ1flkQ', - id: 'login-and-link', - }, - { - title: 'Install Tools', - desc: 'Install any required tools that will allow you to mod your game. ', - length: '4:13', - img: 'assets/images/dashlets/install-tools.png', - video: 'https://www.youtube.com/embed/boaEMPpmGDc', - id: 'install-tools', - }, - { - title: 'Download Mods', - desc: 'Download and install the first of many mods for your game. ', - length: '3:00', + title: 'Download mods', + desc: 'Learn how to download mods to your games.', + length: '3:24', img: 'assets/images/dashlets/add-mods.png', - video: 'https://www.youtube.com/embed/Kt_6lwGd2Ns', - id: 'download-mods', - }, + video: 'https://www.youtube.com/embed/noVpQl3mkfE', + id: 'add-mods', + } ]; export interface IStep {