go-admin

A golang framework helps gopher to build a data visualization and admin panel in ten minutes

APACHE-2.0 License

Stars
7.9K
Committers
54

Bot releases are hidden (Show)

go-admin - v1.0.7

Published by chenhg5 almost 5 years ago

BUG Fixes

  • form radio display error, default value can not be displayed in the form
  • error when save form empty value
  • tree component display url error, missing url prefix
  • chartjs error
  • showTables method of sqlite

Improvement

  • add xss filter helper function
  • add unit tests for modules
  • improve adm, recognize the id primary key and add limit
go-admin - v1.0.6

Published by chenhg5 almost 5 years ago

BUG Fixes

  • cli tool adm run error

Improvement

  • move some component methods away from Template.
  • make chartjs be a independent component.
go-admin - v1.0.5

Published by chenhg5 almost 5 years ago

Improvement

  • fixed dependencies

Notice

GoAdmin has moved the database drivers dependencies away. So you should import the drivers in the main.go yourself.
GoAdmin wrapped some drivers to make it easier to remember the import path.

import (
      _ "github.com/GoAdminGroup/go-admin/modules/db/drivers/mysql"
      _ "github.com/GoAdminGroup/go-admin/modules/db/drivers/postgres"
      _ "github.com/GoAdminGroup/go-admin/modules/db/drivers/sqlite"
)
go-admin - v1.0.4

Published by chenhg5 almost 5 years ago

BUG Fixes

  • fixed edit manager password error
go-admin - v1.0.3

Published by chenhg5 almost 5 years ago

BUG Fixes

  • edit manager permission error

Improvement

  • add method to component interface
  • support loading template from golang plugin
  • process database operation error better
go-admin - v1.0.2

Published by chenhg5 about 5 years ago

BUG Fixes

  • change a new theme

Improvement

  • modify apis of InfoPanel, make them more clear(Functions: Hide*)
  • cli tool name change: admincli => adm
  • cli options and commands more clear, doc here
go-admin - v1.0.1

Published by chenhg5 about 5 years ago

BUG Fixes

  • login page flash bug
  • add missing form panel api: FieldDefault

Improvement

  • cli tool more clear
go-admin - v1.0.0

Published by chenhg5 about 5 years ago

v1.0.0 is now released!!!!!🍺🍺

After few days of debugging, we decide to release the v1.0.0.
Production tests maybe will bring us more bugs and challenge, however, the apis are now more and more stable, and bugs fixed. Have confidence to make it better. Keep working hard.

BUG Fixes

  • mysql decimal scan error

Improvement

  • make login component clear
go-admin - v1.0.0-beta.1

Published by chenhg5 about 5 years ago

important‼️

GoAdmin is now transfered to here. Follow the steps to adapt to this version:

Step 1: rename your import path

from

github.com/chenhg5/go-admin

to

github.com/GoAdminGroup/go-admin

Step 2: import the theme in your main.go

package main

import (
      ....

      _ "github.com/GoAdminGroup/themes/adminlte"
      ....
)

It will automatically add to the template. Otherwise it will panic.

BUG Fixes

  • roles display error

Improvement

  • make theme flexible from the template
go-admin - v1.0.0-beta

Published by chenhg5 about 5 years ago

BUG Fixes

  • set form field default value

Improvement

  • modify some api names, make them more clear
  • add some helper functions of table/form field operation
go-admin - v1.0.0-alpha.2

Published by chenhg5 about 5 years ago

BUG Fixes

  • export data to excel error
  • join table query error
  • menu delete bugs

Improvement

  • add friendly apis for table model
  • add custom table info action
  • add custom headhtml and foothtml config
  • make custom page more complete (add context)
  • add form Must attribute
go-admin - v1.0.0-alpha.1

Published by chenhg5 about 5 years ago

BUG Fixexs

  • cli tool error when parsing version
  • buffalo show custom page bug

Improvement

  • add support for cdn
  • add support for custom file upload engine
  • modify example plugin and make examples more clear
  • add custom page tests
go-admin - v1.0.0-alpha

Published by chenhg5 about 5 years ago

This is the first release of 1.0.

After a years development, the API is becoming stable. And the whole system has passes most tests including the api tests. However, system compatibility tests and function tests of different browsers have not yet been fully passed.

Now it guarantee that the majority of people can use the cli and framework quickly run a demo like system. And it can meet your needs to some extent.

keep working! 💪💪

go-admin - v0.6.0

Published by chenhg5 about 5 years ago

Improvement

  • add fixed button
  • make tabs more beautiful
  • improve some components
go-admin - v0.5.1

Published by chenhg5 about 5 years ago

BUG Fixes

  • pass travis test
go-admin - v0.5.0

Published by chenhg5 about 5 years ago

BUG Fixes

  • form tab, edit failed
  • radio display problem
  • show new form error
  • textarea unable to use

Improvement

  • richtext toolmenu display more ok
  • remove unuse admin panel icon
  • add post form validator
  • add post form hook function
go-admin - v0.4.2

Published by chenhg5 about 5 years ago

fixed assets bug;

go-admin - v0.4.1

Published by chenhg5 about 5 years ago

fixed assets bug;

go-admin - v0.4.0

Published by chenhg5 about 5 years ago

clear up the frontend resource;
improve cli tool;

go-admin - v0.3.1

Published by chenhg5 about 5 years ago

fixed table show bugs;

Package Rankings
Top 0.95% on Proxy.golang.org
Related Projects