Dave Jarvis' Repositories

git clone https://repo.autonoma.ca/repo/keenwrite.git
M libs/keenquotes.jar
Binary file
M src/main/java/com/keenwrite/io/SysFile.java
127127
128128
    for( final var dir : dirs ) {
129
      final var p = Path.of( dir ).resolve( exe );
129
      Path p;
130
131
      try {
132
        p = Path.of( dir ).resolve( exe );
133
      } catch( final Exception ex ) {
134
        clue( ex );
135
        continue;
136
      }
130137
131138
      for( final var extension : EXTENSIONS ) {
M src/main/java/com/keenwrite/io/WindowsRegistry.java
2828
  private static final Pattern VAR_PATTERN = compile( VAR_REGEX );
2929
30
  private static final String REG_REGEX = "\\s*path\\s+REG_EXPAND_SZ\\s+(.*)";
30
  private static final String REG_REGEX = "\\s*path\\s+REG_.*SZ\\s+(.*)";
3131
  private static final Pattern REG_PATTERN = compile( REG_REGEX );
3232