From: Christian G. [M. Mitch] <mas...@us...> - 2002-11-23 21:59:11
|
Update of /cvsroot/jprojecttimer/jprojecttimer/de/cgarbs/apps/jprojecttimer In directory sc8-pr-cvs1:/tmp/cvs-serv9614/de/cgarbs/apps/jprojecttimer Modified Files: AboutWindow.java Log Message: Added homepage URL to about dialog and configuration file. Index: AboutWindow.java =================================================================== RCS file: /cvsroot/jprojecttimer/jprojecttimer/de/cgarbs/apps/jprojecttimer/AboutWindow.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** AboutWindow.java 23 Nov 2002 21:32:38 -0000 1.1 --- AboutWindow.java 23 Nov 2002 21:59:08 -0000 1.2 *************** *** 41,45 **** alreadyOpen = this; ! String text = Configuration.get("copyright") + "\n"; for (int i=0; i < Integer.parseInt(Configuration.get("copyright_count")); i++) { text += Configuration.get("copyright_"+i) + "\n"; --- 41,51 ---- alreadyOpen = this; ! String text = "\n"; ! ! text += Configuration.get("name") + " " + Configuration.get("version") + "\n"; ! text += Configuration.get("homepage") + "\n"; ! text += "\n"; ! ! text += Configuration.get("copyright") + "\n"; for (int i=0; i < Integer.parseInt(Configuration.get("copyright_count")); i++) { text += Configuration.get("copyright_"+i) + "\n"; |