notes-0.7.0.txt 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. =======================================================================
  2. iEat Release Notes
  3. @VERSION@ @BUILD_DATE@
  4. =======================================================================
  5. Major new features:
  6. - Recipe images: upload and associate images to recipes.
  7. - Setup wizard: first-time configuration wizard to get started quickly.
  8. Update from 0.6:
  9. If you are updating from verion 0.6, the database schema has changed
  10. in order to support the new features of 0.7. You must update your
  11. database before using 0.7 with your existing database. Do update you
  12. should run the following SQL against your iEat database:
  13. alter table Recipe add column image varchar(255);
  14. create table Setting (
  15. skey varchar(255) not null,
  16. svalue varchar(255) not null,
  17. primary key (skey)
  18. );
  19. In addition there are some new properties you'll need to add to your
  20. /WEB-INF/classes/env.properties file. Copy the following properties
  21. from the 0.7 env.properties file into your own:
  22. feature.recipeimages
  23. setup.requireadmin
  24. recipe.image.base.path
  25. recipe.image.base.url
  26. Read the comments for these properties to set them to sensible
  27. values for your environment. The first time you run iEat 0.7 the
  28. new setup wizard will run and allow you to modify these settings.
  29. OS X 10.4 (Tiger) Note for Tomcat with JDK 1.5:
  30. There is an issue running iEat in the 1.5 JDK with OS X where JSP
  31. pages do not compile or run. To work around, simply run iEat in the
  32. 1.4 JDK. You can do this just for iEat by setting the JAVA_HOME
  33. environment variable like this:
  34. export JAVA_HOME=
  35. /System/Library/Frameworks/JavaVM.framework/Versions/1.4/Home
  36. (all on one line). Then start your application server normally.
  37. This also holds true for the Live Demo, it must run under the
  38. 1.4 JDK on OS X.
  39. Changes since last release:
  40. - Tweaks to internal index thread so it properly shuts down
  41. when asked to (and does not keep JVM running).
  42. - Added info to README about Tomcat 5.5 concise server.xml format.
  43. - Changed SQL to use case-sensitive SQL names (1222861 - fowie)
  44. - Fix problem where "find all recipes by this user" quick search
  45. link did not display proper results if user had previously
  46. performed a non-advanced search.
  47. - Updated Xweb JAXB generation to support Serializable extension
  48. (so can be cached by EHCache).
  49. - Added ability to add/maintain an image file with recipes (1238644)
  50. - Updated to Servlet API 2.4 to use JSTL 1.1.
  51. - Implemented web-based setup wizard to configure application the
  52. first time it runs.
  53. - Work around for IE JavaScript issues to get edit recipe
  54. functions working better (1237702 - fowie).