Skip to content

Commit

Permalink
electrum version
Browse files Browse the repository at this point in the history
  • Loading branch information
nmacedo committed May 22, 2018
1 parent e00a52b commit 1af47b8
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ private Runner notifyChange() {
if (text==null) return null; // If this was called prior to the "text" being fully initialized
OurSyntaxWidget t = text.get();
if (Util.onMac()) frame.getRootPane().putClientProperty("windowModified", Boolean.valueOf(t.modified()));
if (t.isFile()) frame.setTitle(t.getFilename()); else frame.setTitle("Alloy Analyzer "+Version.version());
if (t.isFile()) frame.setTitle(t.getFilename()); else frame.setTitle("Alloy Analyzer "+Version.version() + " (Electrum Analyzer "+Version.eleVersion()+")"); // [HASLab]
toolbar.setBorder(new OurBorder(false, false, text.count()<=1, false));
int c = t.getCaret();
int y = t.getLineOfOffset(c)+1;
Expand Down Expand Up @@ -1247,7 +1247,7 @@ private Runner doOptSyntaxHighlighting() {
/** This method displays the about box. */
private Runner doAbout() {
if (wrap) return wrapMe();
OurDialog.showmsg("About Alloy Analyzer " + Version.version(),
OurDialog.showmsg("About Alloy Analyzer " + Version.version() + " (Electrum Analyzer "+Version.eleVersion()+")", // [HASLab]
OurUtil.loadIcon("images/logo.gif"),
"Alloy Analyzer " + Version.version(),
"Build date: " + Version.buildDate(),
Expand Down Expand Up @@ -1757,6 +1757,7 @@ private void finishInit(String[] args, int width) {

// Generate some informative log messages
log.logBold("Alloy Analyzer "+Version.version()+" (build date: "+Version.buildDate()+")\n\n");
log.logBold("Electrum Analyzer "+Version.eleVersion()+" (build date: "+Version.buildDate()+")\n\n"); // [HASLab]

// If on Mac, then register an application listener
try {
Expand Down

0 comments on commit 1af47b8

Please sign in to comment.