Skip to content
Snippets Groups Projects
  1. Feb 13, 2021
    • Rob Swindell's avatar
      Accept hex headers terminated with 0x8A · dfda3b0f
      Rob Swindell authored
      Some ZMODEM implementations set the high bit (even parity?) when sending this '\n' terminator.
      As reported via IRC:
      <Keyop> sexyz: !zmodem_recv_hex_header HEX header not terminated with LF: 138 (8Ah)
      dfda3b0f
  2. Feb 12, 2021
    • Deucе's avatar
      Fix initial bar calculation. · 74eff25d
      Deucе authored
      After calculating i (offset in list to top of window), if it's less
      than zero, apply it to bar and set i = 0.
      
      Fixes #218
      74eff25d
  3. Feb 11, 2021
  4. Feb 10, 2021
  5. Feb 07, 2021
  6. Feb 05, 2021
  7. Feb 01, 2021
  8. Jan 31, 2021
    • Rob Swindell's avatar
      Typo · 339652f4
      Rob Swindell authored
      339652f4
    • Rob Swindell's avatar
      Apply Deuce's feedback on the usage/syntax help output. · d01cd5dd
      Rob Swindell authored
      Also change the wording of the -D option to be more descriptive.
      d01cd5dd
    • Rob Swindell's avatar
      Help updates for echolist config section · 1f067a49
      Rob Swindell authored
      The "EchoLists" help menu only worked when you first enter the sub-menu and would get wiped out by subsequent child-menu help text.
      
      Filled out the "Configuring an EchoList" help text.
      
      Fixed issue seen where deleting an EchoList's Required Key didn't set the "dirty config" flag, so saving of changes was not prompted when exiting (if that was the only change made).
      1f067a49
  9. Jan 30, 2021
  10. Jan 29, 2021
  11. Jan 28, 2021
    • Rob Swindell's avatar
      Fix the root root cause of TypeError: obj is not an object · d289ab9c
      Rob Swindell authored
      iniGetNamedStringList() was returning NULL when attempting to get the list of keys in the "root" (unnamed) section and the file is actually empty/blank. If there were *any* characters in the file, it would return an empty list (not NULL). Now, always return the empty list, even when the file is blank.
      d289ab9c
  12. Jan 27, 2021
  13. Jan 26, 2021
  14. Jan 24, 2021
    • Rob Swindell's avatar
      Fix Borland C++ compile failure. · 2b8364ea
      Rob Swindell authored
      2b8364ea
    • Rob Swindell's avatar
      Better charset handling of outbound mail · 41847fa7
      Rob Swindell authored
      The default character set for outbound mail is now auto-determined (when not explicitly specified for a message) between UTF-8, ASCII, and CP437. The [mail] DefaultCharset setting (which fell-back to iso-8859-1 if blank) is no longer "a thing".
      
      Also: specify 8-bit content-transfer-encoding for the (potentially UTF-8 or CP-437) plain text portion of a MIME-encoded message with file attachment (7-bit was wrong) and pass down the text sub-type (e.g. could be "html") for inclusion in the mime-part header (don't assume text/plain, but still use that as default).
      
      Also: log an error when failing to delete an attached file (e.g. from data/file/*.out).
      41847fa7
    • Rob Swindell's avatar
      More support for !include in .ini files · 2ff1a3b5
      Rob Swindell authored
      Some (important) File methods did not support .ini files that used the !include directive because they were using the xpdev iniRead* API (which performs no "pre-processing") instead of xpdev iniGet*.
      
      Impacted methods:
      - iniGetValue()
      - iniGetKeys()
      - iniGetObject()
      
      The other existing ini* methods already worked fine with nested (!include'd) .ini files. It's possible there's a slight performance penalty with the new implementation since the entire .ini file is always read for each operation and previously it was possible that only a few "lines" were read to find the key(s) of interest. However, since .ini files are not typically huge and the iniRead/file-stream method likely read large (e.g. 8-32K) blocks anyway (which is usually the entire .ini file) - I don't actually suspect any observable impact to performance.
      
      This change was needed for the new ctrl/modopts.d support.
      
      Added new method useful for debugging nested .ini files:
      - iniReadAll()
      2ff1a3b5
    • Rob Swindell's avatar
      Support !include wildcard-pattern · e636a3a4
      Rob Swindell authored
      This allows auto-inclusion of sub-directories of config files (e.g. !include modopts.d/*.ini). This, along with the next commit to js_file.c, allows module authors (or sysops) to keep their module-specific settings in a module-specific file (rather than always merging-with/managing the monolithic/shared modopts.ini). The [modname] section heading is still required in the included .ini file.
      
      Replaced use of non-thread-safe STRERROR() with safe_strerror().
      e636a3a4
    • Rob Swindell's avatar
      JS module command-lines now supported quoted arguments (w/white-space) · fb2ad7dd
      Rob Swindell authored
      Example:
      Command-line: ?showargs   " a b c "d "e f"
      argc = 3
      argv[0] = ' a b c '
      argv[1] = 'd'
      argv[2] = 'e f'   
      
      This resolves a long-standing TODO comment.
      
      Also, fixed a problem where multiple spaces between the module name and the first argument would result in argv[0] being set to an empty string.
      fb2ad7dd
    • Rob Swindell's avatar
      Performance enhancement for system.findstr() · 8fd71027
      Rob Swindell authored
      The first argument can now optionally be an array of strings (e.g. as read from File.readAll()), so that multiple searches of the same file (e.g. twitlist.cfg, while importing messages) does not require multiple *reads* of the same file.
      8fd71027
Loading