diff --git a/CHANGELOG.md b/CHANGELOG.md index f441eeb..fe6cfce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,10 @@ (requires SpanshAttack) or a course plotted via the galaxy map. * `route jump count` configuration option: Give a jump count on plotting a route. Default: true. +* Now reports on AFMU repairs. +* `repair reports` configuration option: Report on AFMU repairs. Default: true. +* Now reports on Synthesis. +* `synthesis reports` configuration option: Report on synthesis. Default: true. ### Fixed diff --git a/docs/EliteAttack.md b/docs/EliteAttack.md index a0c260b..816766f 100644 --- a/docs/EliteAttack.md +++ b/docs/EliteAttack.md @@ -167,6 +167,11 @@ The commands in here do random more or less useful things. ## Events +### AFMU Repairs + +Reports on the module that has been repaired, and if it has been fully or +partially repaired. + ### Body Mapped Announces an estimate for high-value bodies’ payouts and the remaining mapping @@ -293,6 +298,10 @@ Toggles SRV lights off after launching. Might not work if you drop particularly far after deployment because it works off a timer. Conversely might take a second to turn your lights off on a short drop and/or in high gravity. +### Synthesis + +Reports on the synthesis type and quality. + ### System Scan Complete Lists you all bodies EDDI considers worth mapping in the current system. diff --git a/docs/configuration/EliteAttack.md b/docs/configuration/EliteAttack.md index c2aa88c..359a5e1 100644 --- a/docs/configuration/EliteAttack.md +++ b/docs/configuration/EliteAttack.md @@ -23,9 +23,11 @@ Toggles: Ammonia Worlds that have not been mapped yet.) Default: true. * `outdated stations`: Announce stations with outdated data in the online databases. Default: true. +* `repair reports`: Report on AFMU repairs. Default: true. * `road to riches`: Announce bodies worth scanning if you are looking for some starting cash on the Road to Riches. Default: false. * `route jump count`: Give a jump count on plotting a route. Default: true. +* `synthesis reports`: Report on synthesis. Default: true. Other settings: diff --git a/plugins/VoiceAttack-base/util.cs b/plugins/VoiceAttack-base/util.cs index 3ae995c..bb0ae59 100644 --- a/plugins/VoiceAttack-base/util.cs +++ b/plugins/VoiceAttack-base/util.cs @@ -42,6 +42,8 @@ public class Configuration { new Option("announceOutdatedStationData", true, voiceTrigger: "outdated stations", description: "Announce stations with outdated data in the online databases.") }, { new Option("announceR2RMappingCandidates", false, voiceTrigger: "road to riches", description: "Announce bodies worth scanning if you are looking for some starting cash on the Road to Riches.") }, + { new Option("announceRepairs", true, voiceTrigger: "repair reports", description: "Report on AFMU repairs.") }, + { new Option("announceSynthesis", true, voiceTrigger: "synthesis reports", description: "Report on synthesis.") }, { new Option("autoHonkAllSystems", false, voiceTrigger: "auto honk all systems", description: "Automatically honk upon entering a system, each jump, without constraints.") }, { new Option("autoHonkNewSystems", true, voiceTrigger: "auto honk new systems", description: "Automatically honk upon entering a system if it is your first visit.") }, { new Option("autoRestock", true, voiceTrigger: "auto restock", description: diff --git a/profiles/EliteAttack-Profile.vap b/profiles/EliteAttack-Profile.vap index 7217fb9..72324bc 100644 Binary files a/profiles/EliteAttack-Profile.vap and b/profiles/EliteAttack-Profile.vap differ diff --git a/profiles/alterNERDtive-base-Profile.vap b/profiles/alterNERDtive-base-Profile.vap index 0437395..32ec0e1 100644 Binary files a/profiles/alterNERDtive-base-Profile.vap and b/profiles/alterNERDtive-base-Profile.vap differ