Closed djmolny closed 2 years ago
The info above refers to version 2021.1.9.
Update: the user can work around this problem by selecting the option A/B/C forms in IAC style
on the print dialog.
Probably related: Form A for IAC Glider sequences does not display the word "Glider" anywhere, leading to confusion with Power sequences.
Attachment 1: The top of a CIVA Form A Glider sequence.
Attachment 2: The top of an IAC Form A Glider sequence.
Thanks for the information. I will look into it in September.
Op ma 16 aug. 2021 om 17:00 schreef DJ Molny @.***>:
Probably related: Form A for IAC Glider sequences does not display the word "Glider" anywhere, leading to confusion with Power sequences.
Attachment 1: The top of a CIVA Form A Glider sequence. [image: Screenshot from 2021-08-16 08-57-22] https://user-images.githubusercontent.com/835079/129584750-1e6e5264-222d-4580-8311-be54d8b50e1d.png
Attachment 2: The top of an IAC Form A Glider sequence. [image: Screenshot from 2021-08-16 09-00-21] https://user-images.githubusercontent.com/835079/129584870-84345869-c4b0-4bcd-a301-b3b2e9e78ff8.png
— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/OpenAero/main/issues/247#issuecomment-899581412, or unsubscribe https://github.com/notifications/unsubscribe-auth/ACXNLINCDXJ6PGTRSNTUSGLT5ER2PANCNFSM5AOPUHEQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&utm_campaign=notification-email .
This just tripped up a competitor heading to The Tequila Cup. It seems that the "A/B/C Forms in IAC Style" print option is automatically enabled for Power but not automatically enabled for Glider, even though in both cases the "rules" category is set to IAC.
Hi Brian,
Thanks for the info. I'll correct this. Update will probably be done sometime after the CIVA meeting, so I can also incorporate rule changes and new sequences from that.
Best regards, Ringo
Op wo 10 nov. 2021 om 17:51 schreef Bryan Jones @.***>:
This just tripped up a competitor heading to The Tequila Cup. It seems that the "A/B/C Forms in IAC Style" print option is automatically enabled for Power but not automatically enabled for Glider, even though in both cases the "rules" category is set to IAC.
— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/OpenAero/main/issues/247#issuecomment-965538790, or unsubscribe https://github.com/notifications/unsubscribe-auth/ACXNLII22EVBFU7CMLOEBZDULKPI3ANCNFSM5AOPUHEQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.
Probably related: Form A for IAC Glider sequences does not display the word "Glider" anywhere, leading to confusion with Power sequences.
Attachment 1: The top of a CIVA Form A Glider sequence.
Attachment 2: The top of an IAC Form A Glider sequence.
Forgot to fix this in the latest OpenAero. Where should "Glider" go? Should it be in the Category box? So e.g.: Category: Glider Advanced
If so, should there also be "Power" for power sequences? E.g.: Category: Power Advanced
Yes, I think that's a very good approach that eliminates any possible confusion.
Great! I'll update it like this.
Power or Glider added to forms from 2022.1.7.
To reproduce:
Harm.
,Penalties
, etc.)Diagnosis:
js/main.js
, line 7814:iacForms = (ruleName === 'iac') ? true : false;
alert(ruleName)
at that point and it displayedglider-iac
, thereforeiacForms
was set tofalse
js/rulesWorker.js
, line 644SOLUTION: In both files, change the ternary test to:
iacForms = (ruleName === 'iac' || ruleName === 'glider-iac') ? true : false;