mirror of
https://github.com/arduino/Arduino.git
synced 2025-04-06 21:57:57 +02:00
Add --no-save-prefs option
This allows setting preferences for the current run only, without remembering them for the next run. This is especially useful when combined with --verify or --upload.
This commit is contained in:
parent
bbd0128664
commit
4452eb3850
@ -385,6 +385,10 @@ public class Base {
|
|||||||
processPrefArgument(args[i]);
|
processPrefArgument(args[i]);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
if (args[i].equals("--no-save-prefs")) {
|
||||||
|
Preferences.setDoSave(false);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
if (args[i].equals("--preferences-file")) {
|
if (args[i].equals("--preferences-file")) {
|
||||||
i++;
|
i++;
|
||||||
if (i >= args.length)
|
if (i >= args.length)
|
||||||
|
@ -220,6 +220,7 @@ public class Preferences {
|
|||||||
static Hashtable<String, String> defaults;
|
static Hashtable<String, String> defaults;
|
||||||
static Hashtable<String, String> table = new Hashtable<String, String>();
|
static Hashtable<String, String> table = new Hashtable<String, String>();
|
||||||
static File preferencesFile;
|
static File preferencesFile;
|
||||||
|
static boolean doSave = true;
|
||||||
|
|
||||||
|
|
||||||
static protected void init(String args[]) {
|
static protected void init(String args[]) {
|
||||||
@ -789,6 +790,7 @@ public class Preferences {
|
|||||||
|
|
||||||
|
|
||||||
static protected void save() {
|
static protected void save() {
|
||||||
|
if (!doSave) return;
|
||||||
// try {
|
// try {
|
||||||
// on startup, don't worry about it
|
// on startup, don't worry about it
|
||||||
// this is trying to update the prefs for who is open
|
// this is trying to update the prefs for who is open
|
||||||
@ -989,4 +991,10 @@ public class Preferences {
|
|||||||
return new PreferencesMap(table);
|
return new PreferencesMap(table);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Decide wether changed preferences will be saved. When value is
|
||||||
|
// false, Preferences.save becomes a no-op.
|
||||||
|
static public void setDoSave(boolean value)
|
||||||
|
{
|
||||||
|
doSave = value;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -76,7 +76,8 @@ OPTIONS
|
|||||||
If this option is not passed, the value from the current
|
If this option is not passed, the value from the current
|
||||||
preferences is used (e.g., the last board selected in the IDE).
|
preferences is used (e.g., the last board selected in the IDE).
|
||||||
If this option is given, the value passed is written to the
|
If this option is given, the value passed is written to the
|
||||||
preferences file and rememberd for subsequent runs.
|
preferences file and rememberd for subsequent runs (except when
|
||||||
|
*--no-save-prefs* is passed).
|
||||||
|
|
||||||
*--port* __portname__::
|
*--port* __portname__::
|
||||||
Select the serial port to perform upload of the sketch.
|
Select the serial port to perform upload of the sketch.
|
||||||
@ -88,7 +89,8 @@ OPTIONS
|
|||||||
If this option is not passed, the value from the current
|
If this option is not passed, the value from the current
|
||||||
preferences is used (e.g., the last port selected in the IDE).
|
preferences is used (e.g., the last port selected in the IDE).
|
||||||
If this option is given, the value passed is written to the
|
If this option is given, the value passed is written to the
|
||||||
preferences file and rememberd for subsequent runs.
|
preferences file and rememberd for subsequent runs (except when
|
||||||
|
*--no-save-prefs* is passed).
|
||||||
|
|
||||||
*--verbose-build*::
|
*--verbose-build*::
|
||||||
Enable verbose mode during build. If this option is not given,
|
Enable verbose mode during build. If this option is not given,
|
||||||
@ -131,7 +133,11 @@ OPTIONS
|
|||||||
|
|
||||||
{empty}::
|
{empty}::
|
||||||
If this option is given, the value passed is written to the
|
If this option is given, the value passed is written to the
|
||||||
preferences file and rememberd for subsequent runs.
|
preferences file and rememberd for subsequent runs (except when
|
||||||
|
*--no-save-prefs* is passed).
|
||||||
|
|
||||||
|
*--no-save-prefs*::
|
||||||
|
Do not save any (changed) preferences to *preferences.txt*.
|
||||||
|
|
||||||
*--upload*::
|
*--upload*::
|
||||||
Build and upload the sketch.
|
Build and upload the sketch.
|
||||||
@ -253,6 +259,9 @@ HISTORY
|
|||||||
Windows, the splash screen is still shown.
|
Windows, the splash screen is still shown.
|
||||||
|
|
||||||
1.5.7::
|
1.5.7::
|
||||||
|
Introduced *--no-save-prefs*.
|
||||||
|
|
||||||
|
{empty}::
|
||||||
*--board* and *--port* options are now saved to the preferences
|
*--board* and *--port* options are now saved to the preferences
|
||||||
file, just like *--pref*. The *--verbose* options still only
|
file, just like *--pref*. The *--verbose* options still only
|
||||||
apply to the current run.
|
apply to the current run.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user