1. 30 Jul, 2021 3 commits
  2. 25 Jul, 2021 1 commit
  3. 24 Jul, 2021 1 commit
  4. 23 Jul, 2021 3 commits
  5. 22 Jul, 2021 1 commit
  6. 19 Jul, 2021 1 commit
  7. 15 Jul, 2021 2 commits
  8. 14 Jul, 2021 1 commit
  9. 09 Jul, 2021 1 commit
  10. 08 Jul, 2021 2 commits
    • Nikolay Igotti's avatar
      1dd4bdcd
    • Alexey Tsvetkov's avatar
      Always copy icudtl.dat with skiko.dll (#131) · e0efcde3
      Alexey Tsvetkov authored
      This change fixes an exception,
      when Skiko is loaded multiple times
      in a multi-classloader environment on Windows:
      
      java.lang.RuntimeException: Can't wrap nullptr
      	at org.jetbrains.skija.impl.Native.<init>(Native.java:13)
      	at org.jetbrains.skija.impl.Managed.<init>(Managed.java:15)
      	at org.jetbrains.skija.impl.Managed.<init>(Managed.java:11)
      	at org.jetbrains.skija.paragraph.ParagraphBuilder.<init>(ParagraphBuilder.java:15)
      
      The exception was happening, because
      when `skiko.library.path` is not set,
      icudtl.dat was copied into cacheDir,
      even if the library was copied into copyDir.
      
      Also icudtl.dat was always copied to `java.io.tmpdir`,
      and a different version was not overwritten.
      e0efcde3
  11. 02 Jul, 2021 1 commit
  12. 29 Jun, 2021 1 commit
  13. 28 Jun, 2021 2 commits
  14. 23 Jun, 2021 2 commits
  15. 22 Jun, 2021 2 commits
  16. 21 Jun, 2021 1 commit
  17. 18 Jun, 2021 4 commits
  18. 17 Jun, 2021 2 commits
  19. 08 Jun, 2021 2 commits
  20. 07 Jun, 2021 2 commits
  21. 05 Jun, 2021 1 commit
  22. 04 Jun, 2021 2 commits
  23. 28 May, 2021 2 commits
    • Igor Demin's avatar
      Fix window.layer.focusTraversalKeysEnabled = false (#114) · b898513c
      Igor Demin authored
      * Fix window.layer.focusTraversalKeysEnabled = false
      
      Disabling focus keys didn't work
      
      Test:
      ```
          window.layer.focusTraversalKeysEnabled = false
          window.layer.addKeyListener(object : KeyAdapter() {
              override fun keyPressed(event: KeyEvent) {
                  println("keyPressed")
              }
          })
      ```
      
      Press Tab or Shift-Tab. Before fix there was no output in console
      
      * Remove unused import
      b898513c
    • Nikolay Igotti's avatar
      Fix build · ad556292
      Nikolay Igotti authored
      ad556292