Skip to content

Releases: JXA-userland/JXA

v1.3.6

21 Aug 11:04
@azu azu
Compare
Choose a tag to compare

1.3.6 (2022-08-21)

Bug Fixes

  • global-type: fix TS2303: Circular definition of import alias (#51) (dd5c5cf)

v1.3.5

18 Apr 13:28
@azu azu
Compare
Choose a tag to compare

What's Changed

New Contributors

  • @Peeja made their first contribution in #32

Full Changelog: v1.3.4...v1.3.5

v1.3.4

08 Oct 13:37
@azu azu
Compare
Choose a tag to compare

1.3.4 (2020-10-08)

Bug Fixes

  • types: fix Finder item url definition (#29) (f2ac980)
  • types: fix import file name #28

v1.3.3

24 Aug 12:00
@azu azu
Compare
Choose a tag to compare

1.3.3 (2020-08-24)

Fixes

  • @jxa/run: Change method to get environment variable #24

Fix to work on macOS Big Sur beta 5 (20A5354i)

v1.3.2

29 Oct 12:33
@azu azu
Compare
Choose a tag to compare

1.3.2 (2019-10-29)

Bug Fixes

  • run: update default buffer to 100MB (9fbe9f4), closes #18

v1.3.1

29 Oct 12:13
@azu azu
Compare
Choose a tag to compare

1.3.1 (2019-10-29)

It will fix error on TypeScript 3.3+

Fixes

  • Update to TypeScript@3.6 #17 #12

v1.3.0

06 Sep 12:34
@azu azu
Compare
Choose a tag to compare

Feature

  • sdef-to-dts: support npx @jxa/sdef-to-dts <input> --output <output> #8 by @havardh

v1.2.0

05 Sep 14:41
@azu azu
Compare
Choose a tag to compare

Features

  • types: support Application(name) (#6) (fb0d4f9)
import { Application } from "@jxa/types";
import { GoogleChrome } from "./fixtures/GoogleChrome";
// Pass Custom Application type as generics
const chrome = Application<GoogleChrome>("Google Chrome");
const frontWindow: GoogleChrome.Window = chrome.app.windows[0];