Skip to content

Releases: ANSH3LL/plugin_hwcursor

v0.6

14 Feb 18:43
Compare
Choose a tag to compare

New in v0.6

  • loadWinCursor has been removed as it is redundant. To set one of the cursors provided by windows or macOS, take a look here.
  • loadCursor no longer sets the cursor, but only serves to load it and return a pointer. To set a loaded cursor, use setCursor.
  • destroyCursor has been renamed to freeCursor
  • showCursor and hideCursor have been replaced with setVisibility to allow you more agency in how you hide and show the cursor. setVisibility is a wrapper around ShowCursor.
  • Stability improvements; the plugin will no longer cause the simulator to crash on exit.

v0.5

21 Nov 20:45
Compare
Choose a tag to compare
  • Cursors must be preloaded before use. An example project is available in the Corona/ directory
  • Cursor handles can be destroyed at will using the plugin.destroyCursor(cursor) method. It is recommended to do this before exiting the application programmatically
  • Load a cursor of any size without downscaling, i.e: 256x256 size cursor will load at this size and be very big as you'd expect. An example is available in the Corona/ directory

v0.4

12 Oct 10:49
Compare
Choose a tag to compare

Application crash on exit has been properly fixed
Inconvenience caused by workaround has been fixed; clicking the window close button now works as expected with no need to click a second time

v0.3

11 Oct 19:18
Compare
Choose a tag to compare

Added support for windows-provided cursors
Use loadWinCursor as shown in the example project

v0.2

23 Sep 09:17
Compare
Choose a tag to compare
Minor speedup + crash workaround

v0.1

17 Sep 12:02
Compare
Choose a tag to compare

Probably production ready
Make sure to follow the example set in the example project

alpha-1

16 Sep 18:41
Compare
Choose a tag to compare
alpha-1 Pre-release
Pre-release

Probably not safe to use in production