Skip to content

Commit

Permalink
Updated release-notes and README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
sbglasius committed Dec 30, 2023
1 parent ff0011e commit b4d8a45
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 11 deletions.
11 changes: 3 additions & 8 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,11 @@
[![Build Status](https://travis-ci.org/grails-fields-plugin/grails-fields.svg?branch=master)](https://travis-ci.org/grails-fields-plugin/grails-fields) [![Join the chat at https://gitter.im/grails-fields-plugin/grails-fields](https://badges.gitter.im/grails-fields-plugin/grails-fields.svg)](https://gitter.im/grails-fields-plugin/grails-fields?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

- `master` branch for Grails 4.0.
- `master` new coordinate: `io.github.gpc:fields:4.0.0-RC1` - Grails 4.x
- `3.0.0.RC1` last version on coordinates: `org.grails.plugins:fields:3.0.0.RC` - Grails 4.x
- `2.2.x` y `2.1.x` for Grails 3.
- `grails2.x` for Grails 2.

A spiritual successor to the bean-fields plugin that attempts to provide a configurable way to render forms with appropriate inputs for different properties without having to copy and paste lots of boilerplate code. It should be possible to change the rendering for a field with the minimum of impact on any other code. This plugin attempts to achieve that by using GSP templates looked up by convention. Developers can then create templates for rendering particular properties or types of properties with the former overriding the latter.

For further information please see the full documentation.

Documentation can be found here:

- [Stable](https://grails-fields-plugin.github.io/grails-fields/latest) version
- [Snapshot](https://grails-fields-plugin.github.io/grails-fields/snapshot) version


Documentation can be found [here](https://gpc.github.io/fields)
27 changes: 24 additions & 3 deletions src/docs/asciidoc/introduction.adoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
== Introduction

The _Fields plugin_ allows you to customize the rendering of input fields for properties of domain objects, command beans and POGOs based on their type, name, etc. The plugin aims to:
The *Fields plugin* allows you to customize the rendering of input fields for properties of domain objects, command beans and POGOs based on their type, name, etc. The plugin aims to:

* Use good defaults for fields.
* Make it very easy to override the field rendering for particular properties or property types without having to replace entire form templates.
Expand All @@ -10,9 +10,30 @@ The _Fields plugin_ allows you to customize the rendering of input fields for pr
* Support embedded properties of _GORM_ domain classes.
== Changelog

=== Version 4.0.0-RC1 - Grails 4.1.x
**Important**

New `group` id. In your build.gradle file, use:

----
compile 'io.github.gpc:fields:4.0.0-RC1'
----

Changelog:
https://github.com/gpc/fields/compare/v3.0.0.RC1...v4.0.0-RC1

Thank you for all the contributions!

=== Version 3.0.0.RC1 - Grails 4.0.x
Last version that is on the "old" group `org.grails.plugins`

Changelog:
https://github.com/gpc/fields/compare/v2.2.10...v3.0.0.RC1

=== Version 2.2.9.BUILD-SNAPSHOT
(no changes yet)
https://github.com/grails-fields-plugin/grails-fields/compare/v2.2.8...v2.2.9[GitHub diff]
Changelog:
https://github.com/grails-fields-plugin/grails-fields/compare/v2.2.8...v2.2.9

=== Version 2.2.8
* BugFix: Table Tag does not render transient fields correctly (Issue https://github.com/grails-fields-plugin/grails-fields/issues/264[#264])
Expand Down

0 comments on commit b4d8a45

Please sign in to comment.