Giu Versions Save

Cross platform rapid GUI framework for golang based on Dear ImGui.

v0.7.0

7 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/AllenDang/giu/compare/v0.6.2...v0.7.0

v0.6.2

2 years ago

Fixed the long-time existed bug #30 ! Cheers!

v0.6.1

2 years ago

Change log

This is a bug fix release. Mainly fixed an issue under Windows when master windows is minimized, and the SplitLayout's state will lost after restore.

v0.6.0

2 years ago

Change log

  1. Update Dear ImGUI to 1.85.
  2. Add Markdown Editor widget. Thanks @gucio321
  3. Add many comments. Huge thansk to @gucio321
  4. Tweak so many widgets.

v0.5.6

2 years ago

Change log

  1. Add TreeTable widget.
  2. Add MasterWindow.SetCloseCallback.

Fixed major bug list

  1. Fix #246.

v0.5.5

2 years ago

Change log

Breaking changes

  1. Implemented AutoID mechanism to avoid unnecessary id setting for lots of widgets.
  2. Rename GetAvaiableRegion to GetAvailableRegion.
  3. Add auto font detect with dynamic font glyph altas generator to display various languages without specifying fonts manually.

New widgets

  1. Add ImageButtonWithRgba.

v0.5.4

3 years ago

Change log

Breaking changes

  1. Rename giu.Line to giu.Row.
  2. Rename giu.Group to giu.Column.

Other changes

  1. Add Hint property to InputText.
  2. Add ColorEditWidget.
  3. Decouple imgui to another repo.
  4. Update imgui to 1.82.

v0.5.3

3 years ago

Change log

  1. Update Dear ImGui to 1.82 Refer full change log of imgui https://github.com/ocornut/imgui/releases/tag/v1.82

  2. Update GLFW to v3.3

v0.5.2

3 years ago

Change log

  1. SImplify Layout grammer.

v0.5.1

3 years ago

Change log

  1. Update imgui to 1.8.0.
  2. Refine TableWidget with new table api from imgui.
  3. Partially integrate ImPlot.

Bug fixes

  1. Use sync.Map to store context.state to avoid crash issue when access state from go routine.