aboutsummaryrefslogtreecommitdiffstats
path: root/ethereal/main.go
Commit message (Collapse)AuthorAgeFilesLines
* Renamed etherealobscuren2014-09-171-91/+0
|
* Upped versionobscuren2014-09-161-1/+1
|
* Minor updates to the UIobscuren2014-08-231-1/+0
|
* Set log level of std logger as well. (since gui logging is disabled)obscuren2014-08-221-1/+2
|
* Error windowobscuren2014-08-221-0/+1
|
* Error windowobscuren2014-08-221-13/+0
|
* Error windowobscuren2014-08-221-1/+19
|
* bumpobscuren2014-08-221-1/+1
|
* Bumped versionobscuren2014-08-211-1/+1
|
* LookupDomain method to uilibobscuren2014-08-151-1/+1
|
* Moved over to hardcoded v1 of Go QMLobscuren2014-08-151-16/+25
|
* Tweaks and fixes + added webview debuggerobscuren2014-08-141-0/+3
| | | | * Require better icons .. someone? :-)
* Upped version numberobscuren2014-07-301-3/+4
|
* Fixed strange issue where qml will crash first run after go installobscuren2014-07-241-3/+2
|
* Refactored to reflect the new VM and Stateobscuren2014-07-241-1/+1
|
* bumpobscuren2014-07-171-1/+1
|
* Modify main wrapperszelig2014-07-041-3/+11
| | | | | | | - clientIdentifier now set in main wrappers - version handled within wrapper - modify InitConfig now returning *ethutil.ConfigManager (passed to gui) - added NewClientIdentity returning *ethwire.SimpleClientIdentiy (passed to ethereum)
* Moved filesobscuren2014-07-021-2/+1
|
* main loop uses new flags and common methods in util: db, keymanager set up; ↵zelig2014-06-301-3/+7
| | | | passes KeyRing/Session string to gui
* Fix for installerobscuren2014-06-271-1/+1
|
* Initialization of Qt should happen before anything elseobscuren2014-06-271-2/+3
|
* go fmtzelig2014-06-271-16/+16
|
* gui stopzelig2014-06-261-5/+22
| | | | | | | | - introduce gui.Stop() - remember state with open - stopping ethereum stack is not gui concern, moved to main - stopping mining, gui and ethereum handled via interrupt callbacks - ^C triggers exactly the same behaviour as quit via menu
* interrupt handlers now orderedzelig2014-06-261-4/+8
|
* fix imports in ui_lib and flags cos of defaultAssetPath move; fix logLevel ↵zelig2014-06-231-4/+1
| | | | type for gui
* refactor cli and gui wrapper code. Details:zelig2014-06-231-0/+43
- all cli functions shared between ethereum and ethereal abstracted to utils/ cmd.go (should be ethcommon or shared or sth) - simplify main() now readable stepwise - rename main wrapper files to main.go - rename commmand line args definition file from config.go to flags.go - rename Do -> Start to parallel option names - register interrupt for rpc server stop - fix interrupt stopping js repl and ethereum - register interrupt for mining stop - custom config file option from command line - debug option from command line - loglevel option from command line - changed ethutil.Config API - default datadir and default config file set together with other flag defaults in wrappers - default assetpath set together with other command line flags defaults in gui wrapper (not in ethutil.Config or ui/ui_lib) - options precedence: default < config file < environment variables < command line