update help, change summary from description

This commit is contained in:
openaudible 2018-05-28 20:48:06 -07:00
parent 109ad6254f
commit 931ceb0ef9
3 changed files with 5 additions and 5 deletions

View file

@ -3,10 +3,10 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>OpenAudible Desktop Help</title>
<title>OpenAudible Help</title>
</head>
<body>
<H1>OpenAudible Desktop App</H1>
<H2>OpenAudible Help</H2>
<p>This open source app aims to let Audible users enhance their experience maximizing their audible library.</p>
<p>Please respect copyright owners by not distributing MP3 files created with OpenAudible.</p>
<p></p>
@ -63,6 +63,7 @@
<H3>Help</H3>
<p>This may stop working at any time, due to changes in Audible systems or web site. If this happens, check for an update.</p>
<p>No technical support is provided. Use at your own risk. Open Source additions are welcome. </p>
<p>Suggestions welcome by sending issue or pull request.</p>
</body>

View file

@ -92,16 +92,14 @@ public enum BookPageParser {
switch(k)
{
case "description":
elem = BookElement.description;
elem = BookElement.summary; // our summary is the description
break;
case "sku":
// elem = BookElement.product_id;
break;
case "duration":
// format is like "PT11H19M" .. skipping for now.
break;
case "productID":

View file

@ -54,6 +54,7 @@ public class SummaryPanel implements BookListener {
}
private void update(Book book) {
summary.setText(book != null ? book.getSummary() : "");
}