aboutsummaryrefslogtreecommitdiffstats
path: root/x11-wm
diff options
context:
space:
mode:
Diffstat (limited to 'x11-wm')
-rw-r--r--x11-wm/e-module-wlan/pkg-descr2
1 files changed, 1 insertions, 1 deletions
diff --git a/x11-wm/e-module-wlan/pkg-descr b/x11-wm/e-module-wlan/pkg-descr
index 720e76db340..749b6a20394 100644
--- a/x11-wm/e-module-wlan/pkg-descr
+++ b/x11-wm/e-module-wlan/pkg-descr
@@ -1,3 +1,3 @@
AN e17 gadget to monitor wlan devices.
-WWW: http://www.enlightenment.org/
+WWW: https://www.enlightenment.org/
='left'>FilesLines * accounts: ensure TimedUnlock does not override indefinite unlock timeoutFelix Lange2016-04-122-10/+16 | * accounts: improve API and add documentationFelix Lange2016-04-123-48/+84 | | | | | - Sign takes common.Address, not Account - Import/Export methods work with encrypted JSON keys * cmd/geth: add recovery procedure for AmbiguousAddrErrorFelix Lange2016-04-123-0/+3 | * accounts: add ErrDecryptFelix Lange2016-04-124-7/+6 | * accounts: cache key addressesFelix Lange2016-04-1216-360/+1040 | | | | | | | | | | | | | | | In order to avoid disk thrashing for Accounts and HasAccount, address->key file mappings are now cached in memory. This makes it no longer necessary to keep the key address in the file name. The address of each key is derived from file content instead. There are minor user-visible changes: - "geth account list" now reports key file paths alongside the address. - If multiple keys are present for an address, unlocking by address is not possible. Users are directed to remove the duplicate files instead. Unlocking by index is still possible. - Key files are overwritten written in place when updating the password. * cmd/geth: add tests for account commandsFelix Lange2016-04-1210-0/+28 | * accounts: streamline APIFelix Lange2016-04-122-38/+29 | | | | | | - Manager.Accounts no longer returns an error. - Manager methods take Account instead of common.Address. - All uses of Account with unkeyed fields are converted. * accounts: fix go vet warningsFelix Lange2016-04-123-5/+5 | * accounts, crypto: move keystore to package accountsFelix Lange2016-04-1213-52/+1242 | | | | | | | | | | The account management API was originally implemented as a thin layer around crypto.KeyStore, on the grounds that several kinds of key stores would be implemented later on. It turns out that this won't happen so KeyStore is a superflous abstraction. In this commit crypto.KeyStore and everything related to it moves to package accounts and is unexported. * accounts/abi/bind: support generating bindings for various arraysPéter Szilágyi2016-04-052-16/+67 | * abi: removed implicit type casting & refactored type parsingJeffrey Wilcke2016-04-053-53/+80 | * abi: accept output slices of all supported typesJeffrey Wilcke2016-04-053-5/+143 | * abi: accept input slices of all supported typesJeffrey Wilcke2016-04-055-145/+106 | * Merge pull request #2405 from karalabe/abigen-default-methodsJeffrey Wilcke2016-04-013-5/+102 |\ | | | | accounts/abi/bind: surface raw wrappers to access low level ops | * accounts/abi/bind: surface raw wrappers to access low level opsPéter Szilágyi2016-04-013-5/+102 | | * | accounts/a/b/backends, core: chain maker homestead block set to 0Jeffrey Wilcke2016-04-011-2/+1 | | | | | | | | | | | | | | The chain maker and the simulated backend now run with a homestead phase beginning at block 0 (i.e. there's no frontier). This commit also fixes up #2388 * | core: added basic chain configurationJeffrey Wilcke2016-04-011-3/+8 |/ | | | | | | | | Added chain configuration options and write out during genesis database insertion. If no "config" was found, nothing is written to the database. Configurations are written on a per genesis base. This means that any chain (which is identified by it's genesis hash) can have their own chain settings. * accounts/abi/bind: support account slices, drop hash typePéter Szilágyi2016-03-311-2/+2 | * accounts/abi/bind: merge all tests into a single suitePéter Szilágyi2016-03-311-22/+22 | * accounts/abi/bind: use anonymous ephemeral call result structsPéter Szilágyi2016-03-311-15/+10 | * accounts/abi/bind, cmd/abigen: dedup structs, exclude patternsPéter Szilágyi2016-03-261-6/+6 | * accounts/abi/bind: fix double pointer in generated codePéter Szilágyi2016-03-252-4/+36 | * accounts/abi/bind, cmd/abigen: port to templates, bind to solidityPéter Szilágyi2016-03-249-428/+530 | * accounts/abi/bind: constructor, auth utils and various backendsPéter Szilágyi2016-03-249-263/+723 | * accounts/abi/bind, cmd/abigen: Go API generator around an EVM ABIPéter Szilágyi2016-03-246-41/+855 | * Merge pull request #2348 from obscuren/abi-variable-inputPéter Szilágyi2016-03-174-31/+193 |\ | | | | accounts/abi: Fixed bytes input accept []byte and variable input support | * accounts/abi: Fixed bytes input accept []byte and variable input supportJeffrey Wilcke2016-03-154-31/+193 | | | | | | | | | | | | | | | | | | Fixed up `[]byte` slice support such that `function print(bytes input)` accepts `[]byte` as input and treats it as 1 element rather than a slice of multiple elements. Added support for variable length input parameters like `bytes` and `strings`. * | accounts/abi: handle the "constant" modifier for functionsPéter Szilágyi2016-03-162-9/+12 |/ * all: Rename crypto.Sha3{,Hash}() to crypto.Keccak256{,Hash}()Ricardo Catalinas Jiménez2016-02-224-9/+9 | | | | As we aren't really using the standarized SHA-3 * accounts/abi: support for typed arrayJeffrey Wilcke2016-02-152-43/+114 | | | | | Added support for fixed size and arbitrary length byte arrays to be marshallable in fixed size (typed) byte slices. * accounts/abi: fixed return tuple and string, bytes return type parsingJeffrey Wilcke2016-02-113-30/+363 | | | | | | | | | | | | | Removed old unmarshalling of return types: `abi.Call(...).([]byte)`. This is now replaced by a new syntax: ``` var a []byte err := abi.Call(&a, ...) ``` It also addresses a few issues with Bytes and Strings and can also handle both fixed and arbitrary sized byte slices, including strings. * account/abi: implements event parsingJeffrey Wilcke2016-02-026-31/+174 | | | | | | Implementation of basic event parsing and its input types. This separates methods and events and fixes an issue with go type parsing and validation. * rpc: migrated the RPC insterface to a new reflection based RPC layerBas van Kervel2016-01-261-1/+1 | * Merge pull request #2035 from bas-vk/rcp-v2-rebaseFelix Lange2015-12-151-0/+15 |\ | | | | rpc: new RPC implementation with pub/sub support | * rpc: new RPC implementation with pub/sub supportBas van Kervel2015-12-141-0/+15 | | * | Merge pull request #2003 from obscuren/abi-callingFelix Lange2015-12-086-88/+243 |\ \ | |/ |/| accounts/abi: added output parsing & added call mechanism | * accounts/abi: added output parsing & added call mechanismJeffrey Wilcke2015-11-256-88/+243 | | | | | | | | Added calling mechanism and return value parsing * | accounts: increase re-lock timeout to account for slow CI serversPéter Szilágyi2015-12-011-1/+1 |/ * accounts/abi: ABI fixes & added typesJeffrey Wilcke2015-10-303-21/+80 | | | | | | | Changed field `input` to new `inputs`. Addad Hash and Address as input types. Added bytes[N] and N validation * Merge pull request #1548 from fjl/accounts-test-deflakeJeffrey Wilcke2015-08-031-1/+2 |\ | | | | accounts: bump timeout in TestSignRace | * accounts: bump timeout and spin less in TestSignRaceFelix Lange2015-08-021-1/+2 | | | | | | | | This should fix the flakeyness. * | all: fix license headers one more timeFelix Lange2015-07-248-8/+8 |/ | | | I forgot to update one instance of "go-ethereum" in commit 3f047be5a. * all: update license headers to distiguish GPL/LGPLFelix Lange2015-07-238-32/+32 | | | | | All code outside of cmd/ is licensed as LGPL. The headers now reflect this by calling the whole work "the go-ethereum library". * accounts: fix data race when key is locked after the unlock timeoutFelix Lange2015-07-212-20/+45 | | | | | | While here, also improve the docs and speed up the tests. The tests used the scrypt keystore with ridiculous settins and took 20s each. * fix wallet key duplicate write - how did it get there? mystery. fixes #1411zelig2015-07-091-3/+0 | * all: add some godoc synopsis commentsFelix Lange2015-07-071-10/+6 | * all: remove @author commentsFelix Lange2015-07-071-6/+0 | * all: update license informationFelix Lange2015-07-078-15/+127 | * account update: migrate or change passwordzelig2015-07-031-0/+28 | | | | | | * account.Update * KeyStore.Cleanup * fix dir rm for old format deleteKey * fix account orderingzelig2015-07-032-5/+6 | | | | | | | | * chronological order of creation * new naming scheme keystore/UTC--<created_at UTC ISO8601>-<address hex> * KeyStore2 -> KeyStore * backward compatibility * refactor keyStore methods * unlock multiple passes and obsolete primaryzelig2015-07-032-14/+1 | | | | | | | * multiple passwords allowed in password file * split on "\n", sideeffect: chop trailing slashes. fixes common mistake <(echo 'pass') * remove accounts.Primary method * do not fall back to primary account for mining * simplify account unlockingzelig2015-07-032-56/+85 | * Introduced default unlock duration when an account is unlocked from the consoleBas van Kervel2015-05-141-0/+5 |