Skip to content
Snippets Groups Projects
  1. Mar 02, 2020
  2. Mar 01, 2020
  3. Feb 24, 2020
  4. Feb 22, 2020
  5. Feb 17, 2020
    • deuce's avatar
      Disable TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 again, there's more issues · b3a09056
      deuce authored
      here, and it's not really needed.
      b3a09056
    • deuce's avatar
      Fix incorrect AES blocksizes. · 7e13901c
      deuce authored
      The block sizes for TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256 and
      TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 were incorrect in the suite
      definitions.
      
      This is the root cause befind the old cl-suites.patch which disabled
      TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (no great loss).  This patch also
      fixes the TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256 suite, which may be what
      new Apple phones were negotiating for pop3s connections.
      7e13901c
  6. Feb 14, 2020
  7. Feb 13, 2020
  8. Feb 10, 2020
    • nightfox's avatar
      Version 1.04: Internal change only (no change in behavior for the user) -... · 246aa540
      nightfox authored
      Version 1.04: Internal change only (no change in behavior for the user) - Updated the way AddAdditionalQuitKeys() is called in the DDLightbarMenu objects, due to the change in dd_lightbar_menu.js
      246aa540
    • nightfox's avatar
      AddAdditionalSelectItemKeys() now takes a string specifying additional keys... · 4ee4ef43
      nightfox authored
      AddAdditionalSelectItemKeys() now takes a string specifying additional keys rather than an array of strings.  For instance, if you want both lowercase 'e' and uppercase 'E' to allow selecting an item, the call would look like this (assuming lbMenu is the menu object):
      lbMenu.AddAdditionalSelectItemKeys("eE");
      
      Also, changed AddAdditionalQuitKeys() to work the same way.
      
      Note: If you are using SlyVote, you will need to also update SlyVote, since SlyVote has also been updated to call AddAdditionalQuitKeys() this way.
      4ee4ef43
  9. Feb 09, 2020
    • nightfox's avatar
      New function: AddAdditionalSelectItemKeys(), which adds additional keys that... · 7498ae74
      nightfox authored
      New function: AddAdditionalSelectItemKeys(), which adds additional keys that can be used to select any item (in addition to Enter).  This function takes an array, and the keys are case-sensitive.  For example, to add the key E to select any item (assuming the menu object is lbMenu):
      lbMenu.AddAdditionalSelectItemKeys(["E"]);
      To make a case-insensitive verison, both the uppercase and lowercase letter would need to be added, as in the following example for E:
      lbMenu.AddAdditionalSelectItemKeys(["E", "e"]);
      
      Also, after showing the menu & getting a value from the user (using the GetVal() function), the lastUserInput property will have the user's last keypress.
      7498ae74
  10. Feb 04, 2020
  11. Feb 02, 2020
  12. Jan 31, 2020
  13. Jan 24, 2020
  14. Jan 23, 2020
  15. Jan 21, 2020
  16. Jan 20, 2020
  17. Jan 18, 2020
Loading