Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: update welcome message for A380X #90

Merged
merged 8 commits into from
Nov 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

Update <small>_ November 2024</small>

- feat: Update welcome message for A380X release (09/11/2024)
- fix: TS v5.5 breaks build (09/11/2024)

Update <small>_ October 2024</small>
Expand Down
1 change: 1 addition & 0 deletions config/production.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
},
"channels": {
"A32NX_SUPPORT": "785976111875751956",
"A380X_SUPPORT": "1296889278332145714",
"FAQ": "751774575464939580",
"FLIGHT_SCHOOL": "887806920252076053",
"KNOWN_ISSUES": "771435594445226005",
Expand Down
1 change: 1 addition & 0 deletions config/staging.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
},
"channels": {
"A32NX_SUPPORT": "1162805236390449202",
"A380X_SUPPORT": "1303377446397280277",
"FAQ": "1162805304396877995",
"FLIGHT_SCHOOL": "1162805386378747934",
"KNOWN_ISSUES": "1162805409250291803",
Expand Down
11 changes: 4 additions & 7 deletions src/commands/moderation/welcome.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,9 @@ const WELCOME_EMBED = makeEmbed({
description: makeLines([
'Welcome to the **Official Discord Server** of **FlyByWire Simulations!**',
'',
'The A32NX Project is a community-driven open source project to create a free Airbus A320neo in Microsoft Flight Simulator that is as close to reality as possible. It started out as an enhancement project to the default A320neo and is now proceeding as an independent add-on project aiming to bring the FlyByWire A32NX up to payware-level systems depth and functionality, all for free.',
'FlyByWire Simulations is a community-driven, open-source project aimed at creating realistic Airbus A320neo and Airbus A380 aircraft for Microsoft Flight Simulator. Originally launched as an enhancement project for the default A320neo, it has evolved into an independent add-on project that strives to bring both aircraft to a payware-level standard in terms of systems depth and functionality - all for free',
'',
'We are also developing an A380 from scratch which will be aiming to produce a high fidelity freeware aircraft.',
'',
`Feel free to download, test, and share your feedback, or if you are interested in developing, assign your <#${constantsConfig.channels.ROLES}>, and get cracking!`,
`Feel free to download, test, and share your feedback. If you are interested in developing, assign your <#${constantsConfig.channels.ROLES}>, and get cracking!`,
]),

});
Expand Down Expand Up @@ -86,13 +84,12 @@ const HELP_EMBED = makeEmbed({
},
{
name: 'FAQ',
value: `Always check <#${constantsConfig.channels.FAQ}>, <#${constantsConfig.channels.KNOWN_ISSUES}>, and our documentation site to see if your question has already been answered. If not head over to <#${constantsConfig.channels.A32NX_SUPPORT}> for assistance.`,
value: `Always check <#${constantsConfig.channels.FAQ}>, <#${constantsConfig.channels.KNOWN_ISSUES}>, and our documentation site to see if your question has already been answered. If not head over to <#${constantsConfig.channels.A32NX_SUPPORT}> or <#${constantsConfig.channels.A380X_SUPPORT}> for assistance.`,
},
{
name: 'Flight School',
value: `We've opened our <#${constantsConfig.channels.FLIGHT_SCHOOL}> channel for any questions you have pertaining to the operation of the A32NX in the simulator.`,
value: `We've opened our <#${constantsConfig.channels.FLIGHT_SCHOOL}> channel for any questions you have pertaining to the operation of our aircraft in the simulator.`,
},

],
});

Expand Down
1 change: 1 addition & 0 deletions src/lib/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ interface Config {
},
channels: {
A32NX_SUPPORT: string,
A380X_SUPPORT: string;
FAQ: string,
FLIGHT_SCHOOL: string,
KNOWN_ISSUES: string,
Expand Down
Loading