Browse Source

Doc update from wiki, Windows pager fix

philemon 9 years ago
parent
commit
e042cd0088
4 changed files with 14 additions and 12 deletions
  1. 9 9
      doc/wiki/using-mmgen/Getting-Started-with-MMGen.md
  2. 1 1
      mmgen/globalvars.py
  3. 3 1
      mmgen/term.py
  4. 1 1
      setup.py

+ 9 - 9
doc/wiki/using-mmgen/Getting-Started-with-MMGen.md

@@ -232,7 +232,7 @@ After quitting the menu with 'q' you'll see the following prompt:
 Type your remembered '1' here and hit ENTER.  After several more prompts and
 Type your remembered '1' here and hit ENTER.  After several more prompts and
 confirmations, your transaction will be saved:
 confirmations, your transaction will be saved:
 
 
-		Transaction written to file 'tx_FEDCBA[6.6].raw'
+		Transaction written to file 'FEDCBA[6.6].rawtx'
 
 
 Note that the transaction has a unique ID, and the non-change spend amount of
 Note that the transaction has a unique ID, and the non-change spend amount of
 6.6 BTC is included in the filename.
 6.6 BTC is included in the filename.
@@ -273,9 +273,9 @@ single private key corresponding to the address '1F93Znz....'
 Now transfer the the raw transaction file and just-created keylist file to your
 Now transfer the the raw transaction file and just-created keylist file to your
 offline computer and run:
 offline computer and run:
 
 
-		$ mmgen-txsign -k my_secret.keys tx_FEDCBA[6.6].raw
+		$ mmgen-txsign -k my_secret.keys FEDCBA[6.6].rawtx
 		...
 		...
-		Signed transaction written to file 'tx_FEDCBA[6.6].sig'
+		Signed transaction written to file 'FEDCBA[6.6].sigtx'
 
 
 The signed transaction is written to a new file whose name differs from the raw
 The signed transaction is written to a new file whose name differs from the raw
 transaction file only by its '.sig' extension.
 transaction file only by its '.sig' extension.
@@ -285,7 +285,7 @@ needed.  Instead, you'll sign transactions by listing an MMGen seed source
 (wallet, mnemonic or seed file) on the command line after the transaction, and
 (wallet, mnemonic or seed file) on the command line after the transaction, and
 the required keys will be generated on the fly, as in the following example:
 the required keys will be generated on the fly, as in the following example:
 
 
-		$ mmgen-txsign tx_ABCDE[1].raw my_mmgen_wallet.mmdat
+		$ mmgen-txsign ABCDE[1].rawtx my_mmgen_wallet.mmdat
 
 
 NOTE: transactions may contain a mixture of MMGen and non-MMGen inputs, as well
 NOTE: transactions may contain a mixture of MMGen and non-MMGen inputs, as well
 as inputs with more than one MMGen Seed ID.  Just list a seed source for each
 as inputs with more than one MMGen Seed ID.  Just list a seed source for each
@@ -299,7 +299,7 @@ Now you're ready for the final step: broadcasting the transaction to the
 network.  Copy the just-created signed transaction file to your online computer,
 network.  Copy the just-created signed transaction file to your online computer,
 start bitcoind and issue the command:
 start bitcoind and issue the command:
 
 
-		$ mmgen-txsend tx_FEDCBA[6.6].sig
+		$ mmgen-txsend FEDCBA[6.6].sigtx
 
 
 Like all MMGen commands, 'mmgen-txsend' is interactive, so you'll be prompted
 Like all MMGen commands, 'mmgen-txsend' is interactive, so you'll be prompted
 before the transaction is actually sent.
 before the transaction is actually sent.
@@ -502,9 +502,9 @@ MMGen wallet, mnemonic or seed file to generate addresses and sign transactions:
 		Generated 10 addresses
 		Generated 10 addresses
 		Addresses written to file '89ABCDEF[101-110].addrs'
 		Addresses written to file '89ABCDEF[101-110].addrs'
 
 
-		$ mmgen-txsign tx_FABCDE[0.3].raw 89ABCDEF-87654321-CA86420E[256,5].mmincox
+		$ mmgen-txsign FABCDE[0.3].rawtx 89ABCDEF-87654321-CA86420E[256,5].mmincox
 		...
 		...
-		Signed transaction written to file tx_FABCDE[0.3].sig
+		Signed transaction written to file FABCDE[0.3].sigtx
 
 
 ##### <a name=13a><a name=incog>Hidden incognito wallets</a>
 ##### <a name=13a><a name=incog>Hidden incognito wallets</a>
 
 
@@ -547,6 +547,6 @@ Generating ten addresses with your hidden incog data is as easy as this:
 
 
 Transaction signing uses the same syntax:
 Transaction signing uses the same syntax:
 
 
-		$ mmgen-txsign -H random.dat,123456789 tx_ABCDEF[0.1].raw
+		$ mmgen-txsign -H random.dat,123456789 ABCDEF[0.1].rawtx
 		...
 		...
-		Signed transaction written to file 'tx_ABCDEF[0.1].sig'
+		Signed transaction written to file 'ABCDEF[0.1].sigtx'

+ 1 - 1
mmgen/globalvars.py

@@ -51,7 +51,7 @@ prog_name = os.path.basename(sys.argv[0])
 author    = 'Philemon'
 author    = 'Philemon'
 email     = '<mmgen-py@yandex.com>'
 email     = '<mmgen-py@yandex.com>'
 Cdates    = '2013-2016'
 Cdates    = '2013-2016'
-version   = '0.8.5rc2'
+version   = '0.8.5'
 
 
 required_opts = [
 required_opts = [
 	'quiet','verbose','debug','outdir','echo_passphrase','passwd_file',
 	'quiet','verbose','debug','outdir','echo_passphrase','passwd_file',

+ 3 - 1
mmgen/term.py

@@ -225,7 +225,9 @@ def do_pager(text):
 			shell = True
 			shell = True
 			pagers = ['more']
 			pagers = ['more']
 		else:                     # MSYS
 		else:                     # MSYS
-			environ['LESS'] = '-cR' # clear screen, disable line chopping
+			environ['LESS'] = '-cR' # disable buggy line chopping
+	else:
+		environ['LESS'] = '-RS'
 
 
 	if 'PAGER' in environ and environ['PAGER'] != pagers[0]:
 	if 'PAGER' in environ and environ['PAGER'] != pagers[0]:
 		pagers = [environ['PAGER']] + pagers
 		pagers = [environ['PAGER']] + pagers

+ 1 - 1
setup.py

@@ -21,7 +21,7 @@ from distutils.core import setup
 setup(
 setup(
 		name         = 'mmgen',
 		name         = 'mmgen',
 		description  = 'A complete Bitcoin cold-storage solution for the command line',
 		description  = 'A complete Bitcoin cold-storage solution for the command line',
-		version      = '0.8.5rc2',
+		version      = '0.8.5',
 		author       = 'Philemon',
 		author       = 'Philemon',
 		author_email = 'mmgen-py@yandex.com',
 		author_email = 'mmgen-py@yandex.com',
 		url          = 'https://github.com/mmgen/mmgen',
 		url          = 'https://github.com/mmgen/mmgen',