- It's packed with a bunch of features. To get a video version, please visit our
Showcase stream.`,
+ image: images['../../assets/update/presentation.png'],
+ imageRatio: '1920 / 1080',
+ description: `This update marks an important milestone for VATSIM Radar. Of course, no one considered it a beta anymore, but we still didn't have features people could get used to in other map services. Well, we do now.`,
+ list: [
+ 'Airports Layouts: taximap for Navigraph Ultimate members',
+ 'Filters: VATSpy and FL24-inspired filters with an ability to share them with anyone',
+ 'Bookmarks: Bookmark any location or airport - and assign a key to quickly open it',
+ 'Friends: track users and view what are they doing, from flying to SUPing',
+ 'VATGlasses: a long-awaited integration developed by community member Felix',
+ ],
+ },
+ {
+ title: 'Airports Layouts',
+ image: images['../../assets/update/layouts.png'],
+ description: 'VATSIM Radar expands it’s partnership with Navigraph, and now all Navigraph Unlimited subscribers can view Airports Layouts!',
list: [
- 'Map Settings with never seen before customization',
- 'Basic Events page',
- 'Search',
- 'Mobile version',
- 'Desktop/Mobile PWA clients',
+ 'View airport map in many large airports with holding points, intersections, taxiways, and more',
+ 'Enjoy updated gates data for those airports - a great improvement especially for USA airports!',
+ 'Fallback to old system and disabled layers if needed in Map Settings',
],
},
{
- title: 'Map Settings',
- image: images['../../assets/update/settings.png'],
- description: 'Enjoy Map Settings - customize a bunch of stuff:',
+ title: 'Filters',
+ description: 'VATSpy and FlightRadar24-inspired filters with all the settings you may need. At least, we hope so...',
+ image: images['../../assets/update/filters.png'],
list: [
- 'Enable Traffic Heatmap, emergency aircraft highlight',
- 'Modify airport counters',
- 'Hide almost anything on map - including personal info, ground traffic and "random" airports',
- 'Customize how tracks are shown - including their color',
- 'Speaking of - customize color and transparency of almost anything on map',
- 'Save all of this as presets - and share those presets with friends!',
+ 'Filters pilots and ATC by callsigns, rating, and a friend list',
+ 'Filter departure/arrival airports for flights - or import them directly from ongoing events!',
+ 'Save your filters if you are logged in',
+ 'Share you filters with friends - even if they are not authorized!',
],
},
{
- title: 'Search',
- image: images['../../assets/update/search.png'],
+ title: 'VATGlasses',
+ image: images['../../assets/update/vatglasses.png'],
list: [
- 'Search for flights, atc, airports',
- 'Search by CIDs, callsigns, and other things',
- 'Customize how many search results are displayed',
- 'Open overlays by clicking on anything you found',
+ 'Detailed sectors with vertical splits - very useful for Europe flights',
+ 'Developed by Felix',
+ 'Auto-enabled if you are logged in and in active flight',
+ 'Level is controllable in a footer',
],
},
{
- title: 'Clients + Mobile version',
- image: images['../../assets/update/client.jpg'],
+ title: 'Friends',
+ image: images['../../assets/update/friends.png'],
list: [
- 'Added mobile/tablet optimization',
- 'Added "Install App" into "about" dropdown menu',
- 'Added official PWA support',
+ 'Track your friends and view what are they doing',
+ 'Make friends lists with different names and colors',
+ 'Focus on your friend in one click',
],
},
{
- title: 'Events page',
- image: images['../../assets/update/events.jpg'],
+ title: 'Bookmarks',
+ image: images['../../assets/update/bookmarks.png'],
list: [
- 'Enjoy basic events page',
- 'Prefile recommended routes on VATSIM/SimBrief',
- 'View events airports on map',
- 'More to come',
+ 'Bookmark airport or your current location',
+ 'Quickly access bookmarks via footer/header shortcut or keyboard binding',
+ 'Share any bookmark with anyone',
],
},
{
@@ -169,19 +179,25 @@ const update: Update = {
description: 'Come visit our Discord for full changelog: https://vatsim-radar.com/discord',
image: images['../../assets/update/quality.png'],
list: [
- 'New aircraft icons from DotWallop: A20N, A338, A339, P28*, P51, PA24, U2, SR22, GLEX, BE60 (+ imporved model matching)',
- 'Improved Approach TRACON label rendering (by Felix)',
- 'Reduced data consumption',
- 'Copy button for controllers frequencies',
- 'Your current position on map/controller dashboard is now remembered in GET parameters for you to save last position/settings',
- 'Added "Share" window into filters dropdown - usable for PWAs, and also you can copy link which includes overlay from here',
+ 'New aircraft icons from DotWallop: will add later',
+ 'New VATSpy-like layer',
+ 'Search can now be opened using CTRL+F',
+ 'Airline display into pilot popup',
'Many other changes, fixes and improvements',
],
},
],
- active: false,
+ active: true,
};
+if (!store.user?.hasCharts) {
+ update.features[1].list!.push('
Subscription Options');
+}
+
+if (!store.user?.hasFms && store.user) {
+ update.features[1].list!.push('
Connect Navigraph');
+}
+
const shownFeatureIndex = ref(0);
const shownFeature = computed(() => update.features[shownFeatureIndex.value]);
@@ -241,7 +257,11 @@ const close = () => {
width: 100vw;
max-width: 650px;
- height: var(--height);
+ min-height: var(--height);
+
+ :deep(.navigraph) {
+ color: #d54a46;
+ }
@include mobileOnly {
width: 80dvw;
@@ -260,6 +280,10 @@ const close = () => {
border: 2px solid $darkgray800;
border-radius: 8px;
background: no-repeat top / cover;
+
+ &--has-ratio {
+ height: auto;
+ }
}
&_text {
@@ -328,5 +352,7 @@ const close = () => {
}
}
}
+
+
}
diff --git a/src/components/views/header/ViewHeader.vue b/src/components/views/header/ViewHeader.vue
index c6314a52..20adf943 100644
--- a/src/components/views/header/ViewHeader.vue
+++ b/src/components/views/header/ViewHeader.vue
@@ -107,7 +107,7 @@