Help improvements.
This commit is contained in:
@@ -19,7 +19,7 @@
|
||||
package com.lyndir.masterpassword.gui;
|
||||
|
||||
import com.lyndir.lhunath.opal.system.util.ConversionUtils;
|
||||
import com.lyndir.masterpassword.model.MPConstants;
|
||||
import com.lyndir.masterpassword.model.MPModelConstants;
|
||||
|
||||
|
||||
/**
|
||||
@@ -35,6 +35,6 @@ public class Config {
|
||||
}
|
||||
|
||||
public boolean checkForUpdates() {
|
||||
return ConversionUtils.toBoolean( System.getenv( MPConstants.env_checkUpdates ) ).orElse( true );
|
||||
return ConversionUtils.toBoolean( System.getenv( MPModelConstants.env_checkUpdates ) ).orElse( true );
|
||||
}
|
||||
}
|
||||
|
@@ -6,8 +6,6 @@ import com.lyndir.masterpassword.gui.util.Res;
|
||||
import com.lyndir.masterpassword.gui.view.MasterPasswordFrame;
|
||||
import com.tulskiy.keymaster.common.Provider;
|
||||
import java.awt.*;
|
||||
import java.awt.event.*;
|
||||
import javax.swing.*;
|
||||
|
||||
|
||||
/**
|
||||
@@ -23,8 +21,7 @@ public class GUI {
|
||||
Platform.get().installAppForegroundHandler( this::open );
|
||||
Platform.get().installAppReopenHandler( this::open );
|
||||
|
||||
KeyStroke keyStroke = KeyStroke.getKeyStroke( KeyEvent.VK_P, InputEvent.CTRL_DOWN_MASK | InputEvent.META_DOWN_MASK );
|
||||
Provider.getCurrentProvider( true ).register( keyStroke, hotKey -> open() );
|
||||
Provider.getCurrentProvider( true ).register( MPGuiConstants.ui_hotkey, hotKey -> open() );
|
||||
}
|
||||
|
||||
public void open() {
|
||||
|
@@ -0,0 +1,14 @@
|
||||
package com.lyndir.masterpassword.gui;
|
||||
|
||||
import java.awt.event.InputEvent;
|
||||
import java.awt.event.KeyEvent;
|
||||
import javax.swing.*;
|
||||
|
||||
|
||||
/**
|
||||
* @author lhunath, 2018-07-31
|
||||
*/
|
||||
public final class MPGuiConstants {
|
||||
|
||||
public static final KeyStroke ui_hotkey = KeyStroke.getKeyStroke( KeyEvent.VK_P, InputEvent.CTRL_DOWN_MASK | InputEvent.META_DOWN_MASK );
|
||||
}
|
@@ -24,6 +24,7 @@ import com.google.common.base.Charsets;
|
||||
import com.google.common.io.ByteSource;
|
||||
import com.lyndir.lhunath.opal.system.logging.Logger;
|
||||
import com.lyndir.lhunath.opal.system.util.ObjectUtils;
|
||||
import com.lyndir.masterpassword.gui.util.Components;
|
||||
import com.lyndir.masterpassword.model.MPUser;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
@@ -72,9 +73,14 @@ public final class MasterPassword {
|
||||
listener.onUserSelected( activeUser );
|
||||
}
|
||||
|
||||
private static void checkUpdate() {
|
||||
@Nullable
|
||||
public String version() {
|
||||
return MasterPassword.class.getPackage().getImplementationVersion();
|
||||
}
|
||||
|
||||
public void checkUpdate() {
|
||||
try {
|
||||
String implementationVersion = MasterPassword.class.getPackage().getImplementationVersion();
|
||||
String implementationVersion = version();
|
||||
String latestVersion = new ByteSource() {
|
||||
@Override
|
||||
public InputStream openStream()
|
||||
@@ -86,16 +92,14 @@ public final class MasterPassword {
|
||||
}
|
||||
}.asCharSource( Charsets.UTF_8 ).readFirstLine();
|
||||
|
||||
if ((implementationVersion != null) && (latestVersion != null) &&
|
||||
!implementationVersion.equalsIgnoreCase( latestVersion )) {
|
||||
if ((implementationVersion != null) && !implementationVersion.equalsIgnoreCase( latestVersion )) {
|
||||
logger.inf( "Implementation: <%s>", implementationVersion );
|
||||
logger.inf( "Latest : <%s>", latestVersion );
|
||||
logger.wrn( "You are not running the current official version. Please update from:%n%s",
|
||||
"https://masterpassword.app/masterpassword-gui.jar" );
|
||||
JOptionPane.showMessageDialog( null,
|
||||
strf( "A new version of Master Password is available.%n "
|
||||
+ "Please download the latest version from %s",
|
||||
"https://masterpassword.app" ),
|
||||
JOptionPane.showMessageDialog( null, Components.linkLabel( strf(
|
||||
"A new version of Master Password is available."
|
||||
+ "<p>Please download the latest version from <a href='https://masterpassword.app'>https://masterpassword.app</a>." ) ),
|
||||
"Update Available", JOptionPane.INFORMATION_MESSAGE );
|
||||
}
|
||||
}
|
||||
@@ -105,8 +109,8 @@ public final class MasterPassword {
|
||||
}
|
||||
|
||||
public static void main(final String... args) {
|
||||
// Thread.setDefaultUncaughtExceptionHandler(
|
||||
// (t, e) -> logger.bug( e, "Uncaught: %s", e.getLocalizedMessage() ) );
|
||||
//Thread.setDefaultUncaughtExceptionHandler(
|
||||
// (t, e) -> logger.bug( e, "Uncaught: %s", e.getLocalizedMessage() ) );
|
||||
|
||||
// Try and set the system look & feel, if available.
|
||||
try {
|
||||
@@ -115,15 +119,16 @@ public final class MasterPassword {
|
||||
catch (final UnsupportedLookAndFeelException | ClassNotFoundException | InstantiationException | IllegalAccessException ignored) {
|
||||
}
|
||||
|
||||
// Check online to see if this version has been superseded.
|
||||
if (Config.get().checkForUpdates())
|
||||
checkUpdate();
|
||||
|
||||
// Create a platform-specific GUI and open it.
|
||||
new GUI().open();
|
||||
|
||||
// Check online to see if this version has been superseded.
|
||||
if (Config.get().checkForUpdates())
|
||||
get().checkUpdate();
|
||||
}
|
||||
|
||||
public interface Listener {
|
||||
|
||||
void onUserSelected(@Nullable MPUser<?> user);
|
||||
}
|
||||
}
|
||||
|
@@ -479,7 +479,7 @@ public abstract class Components {
|
||||
}
|
||||
|
||||
public static JEditorPane linkLabel(@NonNls final String html) {
|
||||
return new JEditorPane( "text/html", "<html><body style='width:640'>" + html ) {
|
||||
return new JEditorPane( "text/html", "<html><body style='width:640;font-family:sans-serif'>" + html ) {
|
||||
{
|
||||
setOpaque( false );
|
||||
setEditable( false );
|
||||
|
@@ -8,6 +8,7 @@ import com.google.common.primitives.UnsignedInteger;
|
||||
import com.lyndir.lhunath.opal.system.logging.Logger;
|
||||
import com.lyndir.lhunath.opal.system.util.ObjectUtils;
|
||||
import com.lyndir.masterpassword.*;
|
||||
import com.lyndir.masterpassword.gui.MPGuiConstants;
|
||||
import com.lyndir.masterpassword.gui.MasterPassword;
|
||||
import com.lyndir.masterpassword.gui.model.MPIncognitoUser;
|
||||
import com.lyndir.masterpassword.gui.model.MPNewSite;
|
||||
@@ -220,14 +221,14 @@ public class UserContentPanel extends JPanel implements MasterPassword.Listener,
|
||||
|
||||
private void showHelp() {
|
||||
JOptionPane.showMessageDialog( this, Components.linkLabel( strf(
|
||||
"<h1>Master Password</h1>"
|
||||
"<h1>Master Password - v%s</h1>"
|
||||
+ "<p>The primary goal of this application is to provide a reliable security solution that also "
|
||||
+ "makes you independent from your computer. If you lose access to this computer or your data, "
|
||||
+ "the application can regenerate all your secrets from scratch on any new device.</p>"
|
||||
+ "<h2>Opening Master Password</h2>"
|
||||
+ "<p>To use Master Password, simply open the application on your computer. "
|
||||
+ "Once running, you can bring up the user interface at any time by pressing the keys "
|
||||
+ "<strong><code>%s + %s + p</code></strong>."
|
||||
+ "<strong><code>%s+%s</code></strong>."
|
||||
+ "<h2>Persistence</h2>"
|
||||
+ "<p>Though at the core, Master Password does not require the use of any form of data "
|
||||
+ "storage, the application does remember the names of the sites you've used in the past to "
|
||||
@@ -237,8 +238,9 @@ public class UserContentPanel extends JPanel implements MasterPassword.Listener,
|
||||
+ "Some people even configure this location to be synced between their different computers "
|
||||
+ "using services such as those provided by SpiderOak or Dropbox.</p>"
|
||||
+ "<hr><p><a href='https://masterpassword.app'>https://masterpassword.app</a> — by Maarten Billemont</p>",
|
||||
KeyEvent.getKeyText( KeyEvent.VK_CONTROL ),
|
||||
KeyEvent.getKeyText( KeyEvent.VK_META ),
|
||||
MasterPassword.get().version(),
|
||||
InputEvent.getModifiersExText( MPGuiConstants.ui_hotkey.getModifiers() ),
|
||||
KeyEvent.getKeyText( MPGuiConstants.ui_hotkey.getKeyCode() ),
|
||||
MPFileUserManager.get().getPath().getAbsolutePath() ) ),
|
||||
"About Master Password", JOptionPane.INFORMATION_MESSAGE );
|
||||
}
|
||||
|
Reference in New Issue
Block a user