Skip to content

Releases: mahata/polly

v0.0.62

29 May 13:46
e9b3754

Choose a tag to compare

gha: Bump actions/checkout from 4 to 6 (#15)

Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v4...v6)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

v0.0.56

29 May 13:43
137c266

Choose a tag to compare

gha: Bump actions/download-artifact from 4 to 8 (#14)

Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 4 to 8.
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](https://github.com/actions/download-artifact/compare/v4...v8)

---
updated-dependencies:
- dependency-name: actions/download-artifact
  dependency-version: '8'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

v0.0.43

29 May 13:40
b853b7b

Choose a tag to compare

Add Dependabot config for gomod and github-actions (#10)

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

v0.0.40

29 May 13:22
83579e5

Choose a tag to compare

docs: add `go run` usage to README (#9)

* docs: add go run usage to README

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* docs: translate go run note to English

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* docs: drop -- from go run examples

The app reads os.Args[1] as the lookup term, so '--' would be passed
through as the term instead of being consumed by go run.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

---------

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

v0.0.33

29 May 12:56
727fafa

Choose a tag to compare

Bump copilot-sdk/go to v1.0.0-beta.9 (#8)

Copilot CLI 1.0.56-0 returns ping timestamps as RFC3339 strings,
but copilot-sdk/go v0.3.0 declares PingResponse.Timestamp as int64,
so client.Start fails with:

  json: cannot unmarshal string into Go struct field
  PingResponse.timestamp of type int64

v1.0.0-beta.9 changes the field to time.Time, which decodes the
new string form. No source changes are needed; the rest of the
API surface we use is unchanged.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

v0.0.30

29 May 12:35
560660c

Choose a tag to compare

ci: build only darwin binaries in release workflow (#7)

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

v0.0.26

29 May 07:53
ba94f6e

Choose a tag to compare

Add pull request template (#6)

* Add pull request template

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* Apply suggestions from code review

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>

---------

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>

v0.0.21

29 May 07:32
03a0b95

Choose a tag to compare

Translate README prose to English (#5)

Translate the Japanese narrative text in README.md to English while
preserving the output example code blocks (program stdout and the
clipboard contents that include the Japanese translation) verbatim.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

v0.0.18

29 May 07:19
a0f077a

Choose a tag to compare

feat: vocab learning mode (例文 + MP3 + 和訳/解説をクリップボードへ) (#4)

* feat: replace polly CLI with vocab learning mode

The CLI now takes an English word or phrase and:

1. Calls the GitHub Copilot SDK to generate an example sentence
   containing the term plus a Japanese translation and a short
   Japanese explanation, requested as a single JSON object.
2. Synthesizes an MP3 of the example sentence via AWS Polly.
   The filename is the example sentence with spaces, punctuation,
   and symbols replaced by underscores, runs of underscores
   collapsed, and a .mp3 extension appended.
3. Copies a formatted vocab card to the macOS clipboard via pbcopy.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* address review: tidy go.mod and hoist sanitize regex

- Run go mod tidy so copilot-sdk/go is a direct require.
- Hoist the underscore-collapsing regex to a package-level var
  for consistency with jsonObjectRe.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

---------

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

v0.0.13

29 May 06:42
05ef631

Choose a tag to compare

docs: add macOS Gatekeeper workaround for released binaries (#3)

* docs: add macOS Gatekeeper workaround for released binaries

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* Potential fix for pull request finding

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>

* docs: translate README release instructions to English

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

---------

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>