-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Fixes for 1.4 #3260
Fixes for 1.4 #3260
Conversation
Closes #3258 |
@@ -562,7 +578,7 @@ | |||
<key>OVERWRITE_PERMISSIONS</key> | |||
<false/> | |||
<key>VERSION</key> | |||
<string>1.4</string> | |||
<string>1.5.0</string> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is that Parity's version?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We aren't releasing 1.5 for some time, so it's either wrong or I misunderstand the purpose of this key
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should it be changed back to 1.4.1 when backporting?
suggest getting this reviewed, merged and 1.4.1 out asap. |
@@ -548,7 +548,7 @@ impl Configuration { | |||
apis: { | |||
let mut apis = self.args.flag_ipcapi.clone().unwrap_or(self.args.flag_ipc_apis.clone()); | |||
if self.args.flag_geth { | |||
apis.push_str("personal"); | |||
apis.push_str(",personal"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what if apis
is empty? E.g. someone disabled all the APIs but still running with --geth
because of other compatibility issues
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems this was addressed above but not here?
* Fix --geth * Fix mac installer. * Fix up installer. * Additional tweaks. * Fix for empty APIs * Another case of empty apis
* Fix --geth * Fix mac installer. * Fix up installer. * Additional tweaks. * Fix for empty APIs * Another case of empty apis
Installer now comes with uninstall script.