Skip to content

Releases: val-town/codemirror-codeium

Support for non-secure contexts

03 Jul 16:07
450fb92
Compare
Choose a tag to compare

Previously, this module used crypto.randomUUID() to generate a session ID. That API is only available in secure contexts (HTTPS). This release adds a fallback so that the module works in non-secure contexts (http) too. Thanks @mscolnick for this fix!

Fix @bufbuild/protobuf dependency

26 Jun 19:49
535e1c6
Compare
Choose a tag to compare

The @bufbuild/protobuf dependency was declared in devDependencies but was used during runtime. It's now declared in dependencies, which should fix usage with some bundlers.

Suggestion cycling

12 Jun 19:07
9b3ae68
Compare
Choose a tag to compare

When Codeium suggests multiple alternative suggestions, this plugin now makes it possible to cycle through them with the Ctrl-] shortcut.

CleanShot.2024-06-12.at.15.04.47.mp4

v0.3.0

14 May 20:46
49416ba
Compare
Choose a tag to compare

What's Changed

  • Add shouldComplete option by @tmcw in #27
  • Improved docs

Full Changelog: v0.2.3...v0.3.0

Many basic improvements

28 Mar 19:07
2da43c5
Compare
Choose a tag to compare
  • You can now accept suggestions by clicking on them
  • Configure the api key, editor language, timeout
  • Refactored code layout to make this easier to understand and contribute to
  • Add python example to demo page