Commit 775ed41c authored by Jeffrey I. Schiller's avatar Jeffrey I. Schiller

Merge branch 'fix-id' of github.com:halatmit/app-inventor-private

parents d3922505 1d8ceaff
......@@ -170,7 +170,7 @@ public interface OdeMessages extends Messages {
// Used in StatusPanel.java
@DefaultMessage("Build date: {0} Version: {1}")
@DefaultMessage("Built: {0} Version: {1}")
@Description("Label showing the ant build date and the git version")
String gitBuildId(String date, String version);
......
......@@ -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, 13));
gitBuildId.setFont(new Font("Arial", Font.PLAIN, 10));
explorerPanel.add(gitBuildId, BorderLayout.SOUTH);
blockCanvasLayer = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, true,
......
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