Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-07-15 | updated website to point to github issue tracker instead of code.google. | Reinier Zwitserloot | |
2015-05-15 | minor doc update on EqualsAndHashCode. | Reinier Zwitserloot | |
2015-05-02 | https-ified links on the site. | Reinier Zwitserloot | |
2015-05-02 | Change http://projectlombok.org to https://projectlombok.org | Roel Spilker | |
2015-04-14 | added our own history of downloads. | Reinier Zwitserloot | |
2015-02-04 | copyright header updates for web docs. | Reinier Zwitserloot | |
2015-02-02 | added impl for @UtilityClass. | Reinier Zwitserloot | |
2015-02-02 | [i702] findbugs suppress warnings now available via config key. | Reinier Zwitserloot | |
2015-01-30 | [i775] We broke the ant task with shadowloader; fixed again. | Reinier Zwitserloot | |
2015-01-29 | Merge pull request #57 from edofic/patch-1 | Reinier Zwitserloot | |
add instructions for using lombok with sbt | |||
2015-01-27 | ressurected the experimental variant of the Value webpage, which now ↵ | Reinier Zwitserloot | |
explains its been promoted and links to the new docs. | |||
2015-01-26 | small updates to the documentation of @Singular. | Reinier Zwitserloot | |
2015-01-26 | optimized the creation for singular lists/collections. | Reinier Zwitserloot | |
2015-01-26 | updated copyright year in documentation | Reinier Zwitserloot | |
2015-01-26 | documentation for @Singular. | Reinier Zwitserloot | |
2014-11-25 | add instructions for using lombok with sbt | Andraž Bajt | |
2014-10-24 | [i738] Fix link to configuration system on Android setup page. | Roel Spilker | |
2014-08-21 | fix copy-and-paste errors in page titles | Brad Fritz | |
2014-06-01 | Fixed up and extended Tolerate with support for constructors, and added docs. | Reinier Zwitserloot | |
2014-06-01 | fixed up ‘consequent boolean’ proposal with a different key name and ↵ | Reinier Zwitserloot | |
documentation. | |||
2014-05-27 | removed out of date docs that we don’t use, and updated the download link ↵ | Reinier Zwitserloot | |
to our own server. | |||
2014-05-27 | Changed the lombok.nonNull.exceptionType configkey to be an enum, partly to ↵ | Reinier Zwitserloot | |
enforce only sensible exceptions and partly to make it possible to have the message be ‘x is null’ when throwing IAEs. | |||
2014-05-23 | Added confkey to make @NonNull generate a different exception because of the ↵ | Reinier Zwitserloot | |
IllegalArgumentException vs. NullPointerException that we really don’t want to get into. | |||
2014-05-22 | added documentation for the configuration feature. | Reinier Zwitserloot | |
2014-05-21 | New year in documentation | Roel Spilker | |
2014-05-21 | Issue 676: Updated the video player code, removed all Quicktime references. | Roel Spilker | |
2014-05-21 | Added an error if @Delegate is used recursively. | Reinier Zwitserloot | |
2014-05-20 | @Delegate has moved to lombok.experimental. | Reinier Zwitserloot | |
Some work on the aliasing system to make that go smoothly. | |||
2014-05-08 | We closed one tag too many on the homepage. Apparently on some modern ↵ | Reinier Zwitserloot | |
version of firefox this makes flash confused. | |||
2014-05-07 | Our maven/ivy instructions also apply to gradle; updated docs to reflect this. | Reinier Zwitserloot | |
2014-05-07 | [website] tweaked and reworded contributed instructions for gradle and ↵ | Reinier Zwitserloot | |
Android Studio for the website. | |||
2014-05-02 | Update android.html | dodgex | |
`apt` is only required when using android-apt plugin | |||
2014-05-02 | Update android.html | dodgex | |
added info about @java.beans.ConstructorProperties | |||
2014-05-01 | Add Android Studio / Gradle instructions | dodgex | |
2014-04-29 | added docs for the new onParam feature on EqualsAndHashCode, and some tiny ↵ | Reinier Zwitserloot | |
stylistic nitpicking. | |||
2014-03-26 | [i659] suppression of @ConstructorProperties should use config instead. Also ↵ | Roel Spilker | |
modified all onX examples to use two underscores. | |||
2014-03-26 | [i660] canEqual is now protected instead of public. | Roel Spilker | |
Also fixed the total lack of canEqual in the usage examples. | |||
2014-02-27 | Fixed documentation of @RequiredArgsConstructor (Issue 593) | Roel Spilker | |
2014-02-10 | [deps] Updated eclipse deps to 3.9 tree. This also enables testing java7 ↵ | Reinier Zwitserloot | |
features on ecj. [Log] updated naming for @Log (topic= instead of mchmulder's 'value'). | |||
2014-02-10 | Merge branch 'issue-632' of https://github.com/mthmulders/lombok into i632 | Reinier Zwitserloot | |
2014-02-10 | [i386] documentation update for Data/Value's behaviour in the face of ↵ | Reinier Zwitserloot | |
existing constructors. | |||
2014-02-08 | Explained how to customise the category of the generated Log(ger) | Maarten Mulders | |
2014-01-21 | Issue 630: Several small documentation fixed for Log | Roel Spilker | |
2014-01-15 | [website] If video playback is not working, the site offers a direct ↵ | Reinier Zwitserloot | |
download of the video, but that link was broken (pointed to .mov instead of the actual .mp4). | |||
2013-12-11 | Updated web docs and added format options support to delombok ant task. | Reinier Zwitserloot | |
2013-10-27 | [issue 598] JDK8 update broke assignment-with-operator in delombok. | Reinier Zwitserloot | |
2013-07-16 | bumped version | Reinier Zwitserloot | |
2013-07-16 | * Fixed issues with @FieldDefaults and @Value (you can NOT override | Reinier Zwitserloot | |
@Value's final-by-default and private-by-default with it; now appropriate warnings are emitted) * Builder now errors out on presence of most lombok annotations on an explicit builder class. * Builder now takes @FieldDefaults/@Value into account. * Builder on type now generates the constructor as package private instead of private to avoid synthetic accessor constructors. * added a bunch of test cases. * added a test case feature: If the expected file is omitted entirely but there are expected messages, the differences in the output itself are ignored. * streamlined checking for boolean-ness (removed some duplicate code) * added 'fluent' and 'chain' to @Builder. | |||
2013-07-08 | Fixed value's snippet integration (it hadn't been updated yet now that Value ↵ | Reinier Zwitserloot | |
has moved from experimental into core). | |||
2013-07-08 | Support for javadoc copying in Getter/Setter generation for javac, as well ↵ | Reinier Zwitserloot | |
as updates to all relevant documentation |