[jsword-svn] r1181 - in trunk: bibledesktop bibledesktop/src/main/resources/xsl/cswing bibledesktop-web/src/web jsword-web/src/web
dmsmith at www.crosswire.org
dmsmith at www.crosswire.org
Wed Nov 8 05:18:42 MST 2006
Author: dmsmith
Date: 2006-11-08 05:18:29 -0700 (Wed, 08 Nov 2006)
New Revision: 1181
Modified:
trunk/bibledesktop-web/src/web/download.html
trunk/bibledesktop/ReleaseInstructions.txt
trunk/bibledesktop/src/main/resources/xsl/cswing/simple.xsl
trunk/jsword-web/src/web/change.html
trunk/jsword-web/src/web/news.html
Log:
Release 1.0.5 preparation
Modified: trunk/bibledesktop/ReleaseInstructions.txt
===================================================================
--- trunk/bibledesktop/ReleaseInstructions.txt 2006-11-07 22:54:54 UTC (rev 1180)
+++ trunk/bibledesktop/ReleaseInstructions.txt 2006-11-08 12:18:29 UTC (rev 1181)
@@ -9,6 +9,7 @@
In the ant file common/core.xml change to <property name="release.version" value="1.0.9"/>
Update bibledesktop/etc/installer/macosx/info.plist. The release number is repeated many times.
Update bibledesktop/etc/installer/win32/BibleDesktop.nsi PROCUCT_VERSION "1.09"
+Update bibledesktop-web/src/web/download.html.
Step 2: Update the release files for the current jar names.
Update bibledesktop/etc/installer/macosx/info.plist
@@ -61,3 +62,8 @@
codebase="http://www.crosswire.org/bibledesktop/stable"
href="http://www.crosswire.org/bibledesktop"
+Public Relations:
+ Create the announcements:
+ http://www.crosswire.org/sword/admin/news (userid and password required)
+ jsword-web/src/web/change.html with a detailed list of changes
+ jsword-web/src/web/news.html with a short announcement
\ No newline at end of file
Modified: trunk/bibledesktop/src/main/resources/xsl/cswing/simple.xsl
===================================================================
--- trunk/bibledesktop/src/main/resources/xsl/cswing/simple.xsl 2006-11-07 22:54:54 UTC (rev 1180)
+++ trunk/bibledesktop/src/main/resources/xsl/cswing/simple.xsl 2006-11-08 12:18:29 UTC (rev 1181)
@@ -828,14 +828,28 @@
<xsl:template match="figure">
<div class="figure">
- <img src="{concat($baseURL, @src)}"/> <!-- FIXME: Not necessarily an image... -->
+ <xsl:choose>
+ <xsl:when test="starts-with(@src, '/')">
+ <img src="{concat($baseURL, @src)}"/> <!-- FIXME: Not necessarily an image... -->
+ </xsl:when>
+ <xsl:otherwise>
+ <img src="{concat($baseURL, '/', @src)}"/> <!-- FIXME: Not necessarily an image... -->
+ </xsl:otherwise>
+ </xsl:choose>
<xsl:apply-templates/>
</div>
</xsl:template>
<xsl:template match="figure" mode="jesus">
<div class="figure">
- <img src="{concat($baseURL, @src)}"/> <!-- FIXME: Not necessarily an image... -->
+ <xsl:choose>
+ <xsl:when test="starts-with(@src, '/')">
+ <img src="{concat($baseURL, @src)}"/> <!-- FIXME: Not necessarily an image... -->
+ </xsl:when>
+ <xsl:otherwise>
+ <img src="{concat($baseURL, '/', @src)}"/> <!-- FIXME: Not necessarily an image... -->
+ </xsl:otherwise>
+ </xsl:choose>
<xsl:apply-templates mode="jesus"/>
</div>
</xsl:template>
Modified: trunk/bibledesktop-web/src/web/download.html
===================================================================
--- trunk/bibledesktop-web/src/web/download.html 2006-11-07 22:54:54 UTC (rev 1180)
+++ trunk/bibledesktop-web/src/web/download.html 2006-11-08 12:18:29 UTC (rev 1181)
@@ -9,7 +9,7 @@
<h1>Official Stable Release</h1>
<p>
- The latest official release of Bible Desktop is 1.0.4. We provide you a choice of a standard installer or running
+ The latest official release of Bible Desktop is 1.0.5. We provide you a choice of a standard installer or running
BibleDesktop using WebStart.
</p>
@@ -20,7 +20,7 @@
</p>
<table border="0" align="center" cellpadding="5">
<tr>
- <td><a href="stable/BibleDesktop-v1.0.4.dmg"><img src="images/blueapple.gif" width="56" height="72" border="0"/></a></td>
+ <td><a href="stable/BibleDesktop-v1.0.5.dmg"><img src="images/blueapple.gif" width="56" height="72" border="0"/></a></td>
<td>Mac OS X Disk Image</td>
<td>Just download, open the Disk Image and drag to the Application folder.</td>
</tr>
@@ -68,14 +68,14 @@
<h1>Binary Downloads</h1>
<p>
If you wish to download Bible Desktop without an installer and to run in the conventional manner, it is
- available in the following formats. The links below are all for version 1.0.4,
+ available in the following formats. The links below are all for version 1.0.5,
(but <a href="/ftpmirror/pub/jsword/release">this link</a> has older versions
for what they are worth):
</p>
<ul>
- <li><a href="/ftpmirror/pub/jsword/release/bibledesktop-1.0.4-bin.zip">For Windows there is a .zip file.</a></li>
- <li><a href="/ftpmirror/pub/jsword/release/bibledesktop-1.0.4.dmg">For MacOS-X there is a .dmg file.</a></li>
- <li><a href="/ftpmirror/pub/jsword/release/bibledesktop-1.0.4-bin.tar.gz">For Linux/Unix there is a .tar.gz file.</a></li>
+ <li><a href="/ftpmirror/pub/jsword/release/bibledesktop-1.0.5-bin.zip">For Windows there is a .zip file.</a></li>
+ <li><a href="/ftpmirror/pub/jsword/release/bibledesktop-1.0.5.dmg">For MacOS-X there is a .dmg file.</a></li>
+ <li><a href="/ftpmirror/pub/jsword/release/bibledesktop-1.0.5-bin.tar.gz">For Linux/Unix there is a .tar.gz file.</a></li>
</ul>
<h1>Sword Modules</h1>
Modified: trunk/jsword-web/src/web/change.html
===================================================================
--- trunk/jsword-web/src/web/change.html 2006-11-07 22:54:54 UTC (rev 1180)
+++ trunk/jsword-web/src/web/change.html 2006-11-08 12:18:29 UTC (rev 1181)
@@ -13,6 +13,27 @@
<p>The following is the broad outline of the version of JSword,
BibleDesktop and Project-B (the old name for JSword).</p>
<ul>
+ <li><strong>Version 1.0.4</strong> - BABEL (FIFTH) UPDATE - Many small, but significant changes.
+ <ul>
+ <li>Bible book names in over 30 languages are now supported with English as the default.
+ <table>
+ <tr><td>Afrikaans</td> <td>Farsi</td> <td>Korean</td> <td>Russian</td></tr>
+ <tr><td>Arabic (Egyptian)</td><td>Finnish</td> <td>Latin</td> <td>Slovak</td></tr>
+ <tr><td>Bulgarian</td> <td>French</td> <td>Lithuanian</td> <td>Slovenian</td></tr>
+ <tr><td>Czech</td> <td>German</td> <td>Norwegian</td> <td>Spanish</td></tr>
+ <tr><td>Danish</td> <td>Hebrew</td> <td>Polish</td> <td>Swedish</td></tr>
+ <tr><td>Dutch</td> <td>Hungarian</td> <td>Portuguese</td> <td>Thai</td></tr>
+ <tr><td>English</td> <td>Indonesian</td><td>Portuguese (Brazil)</td><td>Ukranian</td></tr>
+ <tr><td>Estonian</td> <td>Italian</td> <td>Romanian</td> <td> </td></tr>
+ </table>
+ <li>Support for images.</li>
+ <li>Improved the appearance of the NET Bible.</li>
+ <li>Improved the support of ThML.</li>
+ <li>Fixed a bug preventing the Clarke Module from showing.</li>
+ <li>Fixed a bug preventing locked dictionaries from showing correctly</li>
+ <li>Fixed potential bugs pointed out by the QA tools FindBugs and PMD</li>
+ </ul>
+ </li>
<li><strong>Version 1.0.4</strong> - FOURTH UPDATE -
Webster's Dictionary is now supported. BibleDesktop is now a native Mac OS X application! with a Mac standard disk image.
The default location of Sword Modules is no longer ~/.jsword on the Mac or on Windows. It is now ~/Library/Application Support/Sword on the Mac
Modified: trunk/jsword-web/src/web/news.html
===================================================================
--- trunk/jsword-web/src/web/news.html 2006-11-07 22:54:54 UTC (rev 1180)
+++ trunk/jsword-web/src/web/news.html 2006-11-08 12:18:29 UTC (rev 1181)
@@ -9,6 +9,11 @@
<h1>News</h1>
+<h3>8 Nov 2006</h3>
+<p>BibleDesktop 1.0.5 is released.
+Added support for Bible names in over 30 languages.
+As always many minor improvements, bug fixes and potential bug fixes.</p>
+
<h3>27 Aug 2006</h3>
<p>BibleDesktop 1.0.4 is released.
Webster's Dictionary is now supported. BibleDesktop is now a native Mac OS X application with a Mac standard disk image!
More information about the jsword-svn
mailing list