Skip to content

Releases: Delsin-Yu/GDViews.VirtualGridView

v1.0.0

02 Dec 13:17

Choose a tag to compare

Breaking Change

  • As the Godot doesn't work well with external assemblies, the GDViews.VirtualGridView is now distributed by zip/addon instead of being a Nuget Package.
  • Replace all column and row wording with X and Y.
  • Rename AppendColumn/RowDataSet to AppendDataSet.
  • All viewportColumns are renamed to viewportXCount.
  • All viewportRows are renamed to viewportYCount.
  • VirtualGridViewItem<TDataType, NoExtraArgument> has renamed to VirtualGridViewItemArg<TDataType, TExtraArgument> in order to be differentiatable against VirtualGridViewItem<TDataType>.

v0.0.3

14 Oct 12:10

Choose a tag to compare

Full Changelog: v0.0.2...v0.0.3

Make IVirtualGridView implement IDisposable, which allows for cleaning cached button instances that are out of the scene tree.

public interface IVirtualGridView<TDataType> : IDisposable

v0.0.2

22 Apr 10:54

Choose a tag to compare

What's Changed

  • Fix Mouse Wheel Scroll Event doubles by @Delsin-Yu in #4
  • Fix scroll Bar is not accurately reflecting the virtual viewport position. by @Delsin-Yu in #5

Full Changelog: v0.0.1...v0.0.2

v0.0.1

19 Apr 15:52
e403126

Choose a tag to compare

The initial release of the VirtualGridView package