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