aboutsummaryrefslogtreecommitdiff
path: root/website/templates
AgeCommit message (Collapse)Author
2018-11-05[fixes #1918] toString now supports a configkey to tell it how to deal with ↵Reinier Zwitserloot
super.
2018-11-01[feature] FieldNameConstants now works like Builder: Make whatever bits it ↵Reinier Zwitserloot
does by hand and lombok fills in whatever is missing.
2018-10-29Merge pull request #1871 from janrieke/customizableSuperBuilderReinier Zwitserloot
Customizable SuperBuilder
2018-10-16[Fixes #1848] Added support to delombok for properly handling jigsaw ↵Reinier Zwitserloot
(module-info) style projects.
2018-10-15Remove references to suppressConstructorProperties, fixes #1873Roel Spilker
2018-10-15Merge branch 'master' into janrieke-superToBuilderReinier Zwitserloot
2018-10-15[website] Updated documentation on how to use Lombok and GWT together.Reinier Zwitserloot
2018-10-15#1881 add documentationRoel Spilker
2018-10-08Merge branch 'superToBuilder' of git://github.com/janrieke/lombok into ↵Reinier Zwitserloot
janrieke-superToBuilder
2018-10-08Added instructions for the GWT/Eclipse plugin.Reinier Zwitserloot
2018-09-24SuperBuilder: feature historyJan Rieke
2018-09-24SuperBuilder: customization documentationJan Rieke
2018-09-24SuperBuilder toBuilder documentationJan Rieke
2018-09-18updated docs to reflect change to copyable annotationsReinier Zwitserloot
2018-09-11layout delombok pageRoel Spilker
2018-09-10update website documentationRoel Spilker
2018-09-04Use edge-SNAPSHOT instead of master-SNAPSHOTRoel Spilker
2018-08-28Add link to JitPack for downloading edge releasesRoel Spilker
2018-08-21remove jitpack documentation, since it's not working yet.Roel Spilker
2018-08-20added jitpack release to edge pageRoel Spilker
2018-08-02[website] added some ugly docs on how to interop jackson and builder. We ↵Reinier Zwitserloot
need to make this prettier later and add the magic for how to interop Singular with Jackson later.
2018-07-29docs for the redesigned FieldNameConstants.Reinier Zwitserloot
2018-07-29[website] ’Install’ -> ‘How to use’Reinier Zwitserloot
2018-07-17lombok config broken: version must be stringThomas Klambauer
otherwise gradle compile will fail.
2018-07-03[Fixes #1347] issues with no-args constructor and Builder.Default now ↵Reinier Zwitserloot
documented and fixed.
2018-06-18[website] lombok licenses for international customers now via stripe instead ↵Reinier Zwitserloot
of payoneer. Also, typos.
2018-06-13[trivial] make the website build again, bugfix in template loading of ↵Reinier Zwitserloot
SuperBuilder.html.
2018-06-13Merge branch 'janrieke-superBuilder'Reinier Zwitserloot
2018-06-13[SuperBuilder] code review, style update, making it JDK1.6 compatible, ↵Reinier Zwitserloot
documentation review, bugfix for setter auto-presuming chaining even when you didn’t configure it to chain.
2018-06-06next lombok version is 1.18.1Jan Rieke
2018-06-04`@NonNull` now uses a slightly longer exception message.Reinier Zwitserloot
2018-06-04FieldNameConstants now defaults to having a prefix ‘FIELD_’, which can ↵Reinier Zwitserloot
be configured both on the annotation itself and via a config key. This totally breaks compatibility with the previous lombok release, but, hey, it’s in experimental and it’s been one week. This is better.
2018-06-04Fixex #1697: google’s FluentLogger (Flogger) now available as one of ↵Reinier Zwitserloot
lombok’s log annotations.
2018-06-01next lombok version is 0.16.23Jan Rieke
2018-06-01support @Builder.DefaultJan Rieke
2018-05-15[documentation] documenting the new-style include/exclude of ToString and ↵Reinier Zwitserloot
EqualsAndHashCode
2018-04-22@SuperBuilder documentation for websiteJan Rieke
2018-04-10[website] Added a section on contributing to lombok, with documentation on ↵Reinier Zwitserloot
how lombok’s execution path works. See pull request #71
2018-04-05[fieldNameConstants] code review, docs, tests, fixup.Reinier Zwitserloot
2018-03-27add subresource integrity to external resources on webpageRoel Spilker
2018-03-27Fixes #1608: give pages a titleRoel Spilker
2018-03-21fixed ExtensionMethod example to return T (generic type) , seem to remove or ↵Daniel
forgot for some reason...
2018-03-19[website] Added instruction page about VS Code support in lombok. Updated ↵Reinier Zwitserloot
upcoming talks section.
2018-03-18[website] Some minor updates and fixes to the website order page.Reinier Zwitserloot
2018-03-11last minute bugfixes to license order form mechanics.Reinier Zwitserloot
2018-03-11[website] added supporters infrastructure.Reinier Zwitserloot
2018-03-11Website updated to list supporters on the website.Reinier Zwitserloot
2018-03-02[website] Added JUG details and updated links for german JUG week.Reinier Zwitserloot
2018-02-07[trivial] updated comment and slight tweak to website text.Reinier Zwitserloot
2018-02-07[var] various upgrades to var:Reinier Zwitserloot
* var is promoted to the main package. * It is no longer an opt-in thing. * bug: var (unlike val) is allowed in old-style for loops, but if you multi-init: for (var i = 0, j="Foo";;), you now get an error that you can't do that. * tests both for the multi-for situation and the new main package variant.