Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
appinventor-sources
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
appinventor-sources
Commits
ed8b25a1
Commit
ed8b25a1
authored
Jun 20, 2012
by
Andrew F. McKinney
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add link to release notes on toppanel.
parent
0dd7d666
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
appinventor/appengine/src/com/google/appinventor/client/TopPanel.java
...appengine/src/com/google/appinventor/client/TopPanel.java
+5
-1
No files found.
appinventor/appengine/src/com/google/appinventor/client/TopPanel.java
View file @
ed8b25a1
...
...
@@ -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
KNOWN_ISSUES_LINK_URL
=
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
=
"<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"
;
...
...
@@ -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
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. "
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment