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

Nexus beta gui 1 smith #1

Merged
merged 5 commits into from
Sep 10, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion app/actions/actiontypes.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,23 @@ export const TOGGLE_CREATE_ADDRESS = "TOGGLE_CREATE_ADDRESS";
export const SET_HIGHEST_PEER_BLOCK = "SET_HIGHEST_PEER_BLOCK";
export const SET_SYNC_STATUS = "SET_SYNC_STATUS";

// Terminal
export const SET_COMMAND_LIST = "SET_COMMAND_LIST";
export const PRINT_TO_CONSOLE = "PRINT_TO_CONSOLE";
export const RESET_MY_CONSOLE = "RESET_MY_CONSOLE";
export const RECALL_PREVIOUS_COMMAND = "RECALL_PREVIOUS_COMMAND";
export const ON_INPUT_FIELD_CHANGE = "ON_INPUT_FIELD_CHANGE";
export const SET_INPUT_FEILD = "SET_INPUT_FEILD";
export const ON_AUTO_COMPLETE_CLICK = "ON_AUTO_COMPLETE_CLICK";
export const RETURN_AUTO_COMPLETE = "RETURN_AUTO_COMPLETE";
export const REMOVE_AUTO_COMPLETE_DIV = "REMOVE_AUTO_COMPLETE_DIV";
export const HANDLE_KEYBOARD_INPUT = "HANDLE_KEYBOARD_INPUT";
export const RECALL_NEXT_COMMAND_OR_CLEAR = "RECALL_NEXT_COMMAND_OR_CLEAR";
export const ADD_TO_HISTORY = "ADD_TO_HISTORY";

// Settings
export const GET_SETTINGS = "GET_SETTINGS";
export const ACCEPT_MIT = "ACCEPT_MIT";
export const TOGGLE_SAVE_SETTINGS_FLAG = "TOGGLE_SAVE_SETTINGS_FLAG";
export const SET_EXPERIMENTAL_WARNING = "SET_EXPERIMENTAL_WARNING";
export const IGNORE_ENCRYPTION_WARNING = "IGNORE_ENCRYPTION_WARNING";
export const IGNORE_ENCRYPTION_WARNING = "IGNORE_ENCRYPTION_WARNING";
1 change: 0 additions & 1 deletion app/api/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ function SetCoreParameters(settings) {
settings.manualDaemonPort === undefined
? "9336"
: settings.manualDaemonPort;

user =
settings.manualDaemonUser === undefined
? "rpcserver"
Expand Down
Loading