From: <ox-...@us...> - 2003-05-29 19:24:35
|
Update of /cvsroot/sheets/sheets In directory sc8-pr-cvs1:/tmp/cvs-serv5346a Modified Files: Sheets.sheets build.xml todo.txt Log Message: Sheets now uses platform L&F by default. Upgrade to JDK 1.4.2 to get the new XP/GTK L&Fs. New database version with the following fix: 1. Fixed one more subtle, yet nasty, database bug. After the recent change to promote from slots rather than the original new object list, garbage collection was marking the old objects. Modified the promotion algorithm to update slot information as they are populated. Database seems to be stable (finally). Index: Sheets.sheets =================================================================== RCS file: /cvsroot/sheets/sheets/Sheets.sheets,v retrieving revision 1.50 retrieving revision 1.51 diff -C2 -d -r1.50 -r1.51 *** Sheets.sheets 23 May 2003 20:49:05 -0000 1.50 --- Sheets.sheets 29 May 2003 19:23:56 -0000 1.51 *************** *** 10372,10376 **** docFont = new FontFamily("documentation-font", "Serif"); ! lookAndFeel = "com.incors.plaf.kunststoff.KunststoffLookAndFeel"; updateLookAndFeel(); int screenHeight = Toolkit.getDefaultToolkit().getScreenSize().height; --- 10372,10376 ---- docFont = new FontFamily("documentation-font", "Serif"); ! lookAndFeel = "system"; updateLookAndFeel(); int screenHeight = Toolkit.getDefaultToolkit().getScreenSize().height; *************** *** 10408,10412 **** gotoExistingWindow = true; javaDocumentationURLs = new Vector(); ! addJavaDocUrl("java.*", "http://java.sun.com/j2se/1.4/docs/api"); File docs = new File(Sheets.sheetsHome, "doc/reference.html"); if (docs.exists()) --- 10408,10412 ---- gotoExistingWindow = true; javaDocumentationURLs = new Vector(); ! addJavaDocUrl("java.*", "http://java.sun.com/j2se/1.4.2/docs/api"); File docs = new File(Sheets.sheetsHome, "doc/reference.html"); if (docs.exists()) *************** *** 49584,49587 **** --- 49584,49588 ---- if (embeddedView.height() <= painter.compHeight) { firstLine = 0; + scroll.setValues(0, 0, 0, 0); scroll.setEnabled(false); } else { Index: build.xml =================================================================== RCS file: /cvsroot/sheets/sheets/build.xml,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** build.xml 23 May 2003 09:55:05 -0000 1.18 --- build.xml 29 May 2003 19:23:59 -0000 1.19 *************** *** 56,60 **** <!-- Compile the java source code --> ! <javac srcdir="${java}" destdir="${classes}" debug="on" includeAntRuntime="no"> <classpath> <pathelement location="${classes}"/> --- 56,60 ---- <!-- Compile the java source code --> ! <javac source="1.4" srcdir="${java}" destdir="${classes}" debug="on" includeAntRuntime="no"> <classpath> <pathelement location="${classes}"/> Index: todo.txt =================================================================== RCS file: /cvsroot/sheets/sheets/todo.txt,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** todo.txt 23 May 2003 09:55:05 -0000 1.18 --- todo.txt 29 May 2003 19:23:59 -0000 1.19 *************** *** 6,9 **** --- 6,10 ---- annoying bugs that should be fixed: + doesn't show references for inner class (ie. Goto Reference on ViewPanel.scoll) empty compile command causes exceptions dragging in TOC only works on left side of items |