aboutsummaryrefslogtreecommitdiff
path: root/src/lombok/installer
AgeCommit message (Collapse)Author
2009-11-25Refactored the source folders.Reinier Zwitserloot
2009-11-25Added support for installing/uninstalling eclipse support from all eclipse ↵Reinier Zwitserloot
locations that lombok is automatically able to find, from the command line without interaction (for mass deployment)
2009-11-09The installer is now waaay smarter on linuxes, and should support, out of ↵Reinier Zwitserloot
the box and automatically, debian and debianesques like ubuntu.
2009-11-08Minor bug fixes and style edits. All these were found after running findbugs ↵Reinier Zwitserloot
on the lombok sources.
2009-11-08Added more detail to the 'install successful' message for the benefit of ↵Reinier Zwitserloot
people who start eclipse with custom -vm parameters. Doing this ignores eclipse.ini which means lombok never gets loaded.
2009-11-02When the installer can't work because the eclipse dir is not writable, you ↵Reinier Zwitserloot
used to get the wrong error message; this has been fixed. The error message now gives much more detail on how to proceed, and the installer no longer hangs after displaying this message.
2009-11-01Weird conditions on the disk, such as having an unformatted drive, screws up ↵Reinier Zwitserloot
the eclipse autofinder on windows, causing the installer to throw an exception on bootup. Fixed it by guarding various blocks in the detector with try/catch/ignore. Reported by: http://groups.google.com/group/project-lombok/browse_thread/thread/2f4ded6c942ad0a5
2009-10-18Configured warnings and solved some.unknown
2009-10-16Fixed issue #24 by refactoring the AST.Node class - taken it out, and in the ↵Reinier Zwitserloot
process fixed a lot of type annoyance by adding more generics. Also changed coding style from for/while/if/switch/catch/do ( expr ) {} to for (expr) {}, hence the changes _everywhere_.
2009-10-11Integrated lombok.jar and lombok.eclipse.agent.jar into one jar that ↵Reinier Zwitserloot
installs, is a javac apt processor, and an agent, all at once.
2009-08-05Added a note to restart eclipse, after some confusing as reported on the ↵Reinier Zwitserloot
googlegroups.
2009-07-26Addresses issue #6:Reinier Zwitserloot
For whatever reason, the path to the javaagent in eclipse.ini on linux needs to be absolute.
2009-07-26Starting the lombok installer on mac os X using soylatte instead of apple's ↵Reinier Zwitserloot
JVM now correctly detects being on a mac, and using mac-specific code for finding and installing eclipses.
2009-07-24Fixed two bugs regarding the installer on Win64Roel Spilker
2009-07-24Added WindowsDriveInfo support for 64-bit JVMs on windows. We think.Roel Spilker
Honestly, we haven't tested it! Also updated instructions on how to build the 64-bit version of the JVM, and generalized some of the loading aspects of the DLL, as we now need to potentially try 2 of them.
2009-07-23Rewrote the "find hard disks on windows" to use a dll instead. The reasons:Roel Spilker
A) FSUTIL is internationalized, so on non-english installs, we can't figure out if a disk is fixed. B) I trust this better than fsutil for user control access (a.k.a. popups from hell) on vista. C) fsutil.exe is in C:\windows\system32 so pretty sure it would be there, but there's always a chance it's not in the PATH, or otherwise not accessible.
2009-07-23Setup for not using fsutil.exe which is probably going to rain a stash of ↵Reinier Zwitserloot
User Action Control dialogs on vista, and has internationalized messages so fails to parse correctly on any non-english windows install.
2009-07-21Added an extra note in the 'installation successful' dialog to add ↵Reinier Zwitserloot
lombok.jar to your eclipse projects, lets people get confused and think it can work without doing that.
2009-07-21Sized the icon into a square form by adding more transparency at top and ↵Reinier Zwitserloot
bottom. This way, the icon showing up in dialog boxes doesn't look borked.
2009-07-20Worked on the installer so that it's vertically a lot smaller, and at least ↵Reinier Zwitserloot
according to Roel, it looks better too.
2009-07-17Made background of found Eclipses whiteRoel Spilker
2009-07-17Made the detection of drives more robust on WindowsRoel Spilker
2009-07-16Removed a debug print.Reinier Zwitserloot
2009-07-16Added icon to frame, set background color of found eclipses to WHITE, useRoel Spilker
platform path separator in installer "What do I do" text.
2009-07-14Used reflection to call Apple native look to avoid errors in a non-macRoel Spilker
development environment
2009-07-08Renamed all true names of 'eclipse' to 'Eclipse' (but not the eclipse ↵Reinier Zwitserloot
package, of course), and fixed a showstopper bug in the installer that would add -javaagent:lombok.jar to eclipse.ini, which is wrong of course; it needs to be lombok.eclipse.agent.jar.
2009-07-06Fixed javadoc problems, and added a javadoc target to the build script.Reinier Zwitserloot
2009-07-05Final touches on the installer:Reinier Zwitserloot
- some bug fixes for linux - renamed InstallerWindow to Installer - Apple-specific prettification added (dock icon, app name) - more documentation. Also, I started added an open source licence to all files.
2009-07-05W00t - written an installer that should work on linux (sort of), windows, ↵Reinier Zwitserloot
and Mac OS X. Bumped the version number to celebrate, and changed build to roll the agent.jar into the main jar, and change the executable class from the minimal help that was there to the installer. That minimal help thing (ShowUserHelp.java) is now gone.
2009-07-05These are nice, but kinda NSFW.Reinier Zwitserloot
2009-07-03A start on the installer.Reinier Zwitserloot