aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--NEWS1
-rw-r--r--netx/net/sourceforge/jnlp/about/AboutDialog.java2
3 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 4c97c8c..a1d26ae 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
2013-07-11 Andrew Azores <[email protected]>
+ * NEWS: added entry regarding new About Dialogue
+ * netx/net/sourceforge/jnlp/about/AboutDialog.java: fixed localization of
+ label on News tab
+
+2013-07-11 Andrew Azores <[email protected]>
+
* Makefile.am (stamps/html-gen): moved plaintext-to-HTML logic into new
shell script
* html-gen.sh: contains plaintext-to-HTML logic previously found in
diff --git a/NEWS b/NEWS
index 69f20ca..17b2023 100644
--- a/NEWS
+++ b/NEWS
@@ -16,6 +16,7 @@ New in release 1.5 (2013-XX-XX):
- Netx can now parse malformed jnlp files using tagsoup
- PR1026 - Apps fail to run because of the nanoxml parser's strict XML validation
- PR1473 - javaws should not depend on name of local file
+ - Redesigned About dialogue layout and contents
* Plugin
- PR854: Resizing an applet several times causes 100% CPU load
diff --git a/netx/net/sourceforge/jnlp/about/AboutDialog.java b/netx/net/sourceforge/jnlp/about/AboutDialog.java
index 7ae32bc..136b53e 100644
--- a/netx/net/sourceforge/jnlp/about/AboutDialog.java
+++ b/netx/net/sourceforge/jnlp/about/AboutDialog.java
@@ -84,7 +84,7 @@ public class AboutDialog extends JPanel implements Runnable, ActionListener {
aboutPanel = new HTMLPanel(res_about, R("AboutDialogueTabAbout"));
authorsPanel = new HTMLPanel(res_authors, R("AboutDialogueTabAuthors"));
- newsPanel = new HTMLPanel(res_news, R("News"));
+ newsPanel = new HTMLPanel(res_news, R("AboutDialogueTabNews"));
changelogPanel = new HTMLPanel(res_changelog, R("AboutDialogueTabChangelog"));
copyingPanel = new HTMLPanel(res_copying, R("AboutDialogueTabGPLv2"));