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
775ed41c
Commit
775ed41c
authored
Jun 05, 2012
by
Jeffrey I. Schiller
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'fix-id' of github.com:halatmit/app-inventor-private
parents
d3922505
1d8ceaff
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
appinventor/appengine/src/com/google/appinventor/client/OdeMessages.java
...engine/src/com/google/appinventor/client/OdeMessages.java
+1
-1
appinventor/blockslib/src/openblocks/workspace/Workspace.java
...nventor/blockslib/src/openblocks/workspace/Workspace.java
+3
-2
No files found.
appinventor/appengine/src/com/google/appinventor/client/OdeMessages.java
View file @
775ed41c
...
...
@@ -170,7 +170,7 @@ public interface OdeMessages extends Messages {
// Used in StatusPanel.java
@DefaultMessage
(
"Buil
d date
: {0} Version: {1}"
)
@DefaultMessage
(
"Buil
t
: {0} Version: {1}"
)
@Description
(
"Label showing the ant build date and the git version"
)
String
gitBuildId
(
String
date
,
String
version
);
...
...
appinventor/blockslib/src/openblocks/workspace/Workspace.java
View file @
775ed41c
...
...
@@ -165,13 +165,14 @@ public class Workspace extends JLayeredPane
// Show the Git version using a non-editable JTextField instead of a JLabel, so the user
// can select and copy it.
JTextField
gitBuildId
=
new
JTextField
(
"Version: "
+
GitBuildId
.
getVersion
());
JTextField
gitBuildId
=
new
JTextField
(
"Built: "
+
GitBuildId
.
getDate
()
+
" Version: "
+
GitBuildId
.
getVersion
());
gitBuildId
.
setEditable
(
false
);
gitBuildId
.
setBorder
(
null
);
gitBuildId
.
setBackground
(
CGraphite
.
lightergreen
);
gitBuildId
.
setForeground
(
Color
.
gray
);
gitBuildId
.
setHorizontalAlignment
(
JTextField
.
CENTER
);
gitBuildId
.
setFont
(
new
Font
(
"Arial"
,
Font
.
PLAIN
,
1
3
));
gitBuildId
.
setFont
(
new
Font
(
"Arial"
,
Font
.
PLAIN
,
1
0
));
explorerPanel
.
add
(
gitBuildId
,
BorderLayout
.
SOUTH
);
blockCanvasLayer
=
new
JSplitPane
(
JSplitPane
.
HORIZONTAL_SPLIT
,
true
,
...
...
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