If you’re updating with every release

A small handful of changes in 2019r3.1

Module Color
alpha changed to Integer
Function CMY(cyan As Double, magenta As Double, yellow As Double, alpha As Integer = 0) As Color

ColorGroup
gained operator_compare
Function Operator_Compare(otherColor As Color) As Integer

Module Crypto
added PBKDF2 with HashAlgorithms parameter
Function PBKDF2(salt As String, data As MemoryBlock, iterations As Integer, desiredHashLength As Integer, hashAlgorithm As HashAlgorithms) As MemoryBlock

Class DatabaseColumn
now has a destructor
Sub Destructor()

Class DatabaseRow
added Column setter method
Sub Column(name As String, Assigns value As Variant)

added Destructor
Sub Destructor()

Module String
new overloads for IndexOf
Function IndexOf(Extends s As String, startPosition As Integer, searchString As String, options As ComparisonOptions = ComparisonOptions.CaseInsensitive, locale As Locale = Nil) As Integer

Function IndexOf(Extends s As String, searchString As String, options As ComparisonOptions = ComparisonOptions.CaseInsensitive, locale As Locale = Nil) As Integer

new method LastField
Function LastField(Extends s As String, separator As String) As String

Class TextArea
changed type of SelectionAlignment type
Property SelectionAlignment As TextAlignments

Cant say that so far I’ve used it much.

3 Replies to “If you’re updating with every release”

  1. 2019r3.1 appears to have fixed my code view colours when switching to DarkMode on macOS.

    In r3, when I switched to DarkMode the code view background stayed white, but the text colour changed to white, so I couldn’t read the code if I wanted to tweak something while in DarkMode.

    I thought I would have to customize the theme. But now I don’t have to 🙂

    1. I really didnt like the new colors. They gave me a headache they were so glaringly vibrant.
      This is the exact same code in 2019r1.1 on the left and 2019r3.1 on the right
      dark mode color comparison 2019r.11 vs 2019r3.1
      So I keep two themes. One for light mode and one for dark mode.
      And just drag one or the other into the navigator and voila ! the theme changes pretty much instantly to something I dont hate.

      Dunno if you knew you could chnage the theme just by dragging a theme file into the navigator like that
      Something I added some time ago

  2. Nice. I did not know that.
    In that case I will build a theme for DarkMode, because yeah, the text does come off a bit bright. This will make switching easier.
    Thanks again Norman.

Comments are closed.