Commit ed8b25a1 authored by Andrew F. McKinney's avatar Andrew F. McKinney

add link to release notes on toppanel.

parent 0dd7d666
...@@ -25,8 +25,12 @@ public class TopPanel extends Composite { ...@@ -25,8 +25,12 @@ public class TopPanel extends Composite {
private static final String LEARN_URL = Ode.APP_INVENTOR_DOCS_URL + "/learn/"; private static final String LEARN_URL = Ode.APP_INVENTOR_DOCS_URL + "/learn/";
private static final String KNOWN_ISSUES_LINK_URL = private static final String KNOWN_ISSUES_LINK_URL =
Ode.APP_INVENTOR_DOCS_URL + "/knownIssues.html"; Ode.APP_INVENTOR_DOCS_URL + "/knownIssues.html";
private static final String RELEASE_NOTES_LINK_URL =
Ode.APP_INVENTOR_DOCS_URL + "/ReleaseNotes.html";
private static final String KNOWN_ISSUES_LINK_AND_TEXT = private static final String KNOWN_ISSUES_LINK_AND_TEXT =
"<a href=\"" + KNOWN_ISSUES_LINK_URL + "\" target=\"_blank\">known issues</a>" ; "<a href=\"" + KNOWN_ISSUES_LINK_URL + "\" target=\"_blank\">known issues</a>" ;
private static final String RELEASE_NOTES_LINK_AND_TEXT =
"<a href=\"" + RELEASE_NOTES_LINK_URL + "\" target=\"_blank\">release notes</a>" ;
private static final String LOGO_IMAGE_URL = "/images/logo.png"; private static final String LOGO_IMAGE_URL = "/images/logo.png";
...@@ -34,7 +38,7 @@ public class TopPanel extends Composite { ...@@ -34,7 +38,7 @@ public class TopPanel extends Composite {
private final VerticalPanel rightPanel; // remember this so we can add MOTD later if needed private final VerticalPanel rightPanel; // remember this so we can add MOTD later if needed
private final HTML welcome = new HTML("Welcome to the App Inventor beta preview release." + private final HTML welcome = new HTML("Welcome to the App Inventor beta preview release." +
" Be sure to check the list of " + KNOWN_ISSUES_LINK_AND_TEXT + "."); " Be sure to check the list of " + KNOWN_ISSUES_LINK_AND_TEXT + " and " + RELEASE_NOTES_LINK_AND_TEXT + ".");
//This is an experimental version of App Inventor. " //This is an experimental version of App Inventor. "
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment