Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enhancement auto save functionality #1552

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -9,7 +9,7 @@ command.about.name = \u00DC&ber Portfolio Performance
command.about.tooltip = \
command.clearRecentFiles.name = Eintr\u00E4ge l\u00F6schen
command.clearRecentFiles.tooltip = L\u00F6scht alle Eintr\u00E4ge in der Liste der zuletzt verwendeten Dateien.
command.close.name = Datei &schliessen
command.close.name = Datei &schlie\u00dfen
command.close.tooltip = \
command.consistencyChecks.name = &Plausibilit\u00E4tspr\u00FCfung...
command.consistencyChecks.tooltip = Die Plausibilit\u00E4tspr\u00FCfung untersucht die Datei auf Unregelm\u00E4ssigkeiten, z.B. durch Programmfehler oder direktes Editieren der XML Datei entstehen k\u00F6nnen.
Expand Down
Expand Up @@ -420,6 +420,7 @@ public class Messages extends NLS
public static String InvestmentPlanTxForMultiplePlansCreated;
public static String InvestmentPlanTypeBuyDelivery;
public static String InvestmentPlanTypeDeposit;
public static String JobLabelAutoSave;
public static String JobLabelSyncSecuritiesOnline;
public static String JobLabelUpdateCPI;
public static String JobLabelUpdateQuotes;
Expand Down Expand Up @@ -888,6 +889,7 @@ public class Messages extends NLS
public static String PrefAlphaVantageCallFrequencyLimit;
public static String PrefCheckOnStartup;
public static String PrefCreateBackupBeforeSaving;
public static String PrefAutoSaveFrequency;
public static String PrefDescriptionAlphaVantage;
public static String PrefDescriptionFinnhub;
public static String PrefDescriptionProxy;
Expand Down
Expand Up @@ -116,6 +116,13 @@ interface Preferences // NOSONAR
*/
String UPDATE_QUOTES_AFTER_FILE_OPEN = "UPDATE_QUOTES_AFTER_FILE_OPEN"; //$NON-NLS-1$

/**
* Preference key whether to automatically update quotes after opening a
* data file.
*/
String AUTO_SAVE_FILE = "AUTO_SAVE_FILE"; //$NON-NLS-1$


/**
* Preference key whether to store settings (column width, last expanded
* tree nodes, etc.) next to the data file as opposed to in the
Expand Down