New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

plotman

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

plotman - pypi Package Compare versions

Comparing version
0.4
to
0.4.1
+9
-0
CHANGELOG.md

@@ -8,2 +8,11 @@ # Change Log

## [0.4.1] - 2021-06-11
### Fixed
- Archival disk space check finds drives with multiple mount points again.
This fixes a regression introduced in v0.4.1.
[#773](https://github.com/ericaltendorf/plotman/issues/773)
- `plotman dirs` does not fail for every invocation.
`TypeError: dirs_report() missing 1 required positional argument: 'width'`
[#778](https://github.com/ericaltendorf/plotman/issues/778)
## [0.4] - 2021-06-10

@@ -10,0 +19,0 @@ ### Fixed

+1
-1
Metadata-Version: 2.1
Name: plotman
Version: 0.4
Version: 0.4.1
Summary: Chia plotting manager

@@ -5,0 +5,0 @@ Home-page: https://github.com/ericaltendorf/plotman

Metadata-Version: 2.1
Name: plotman
Version: 0.4
Version: 0.4.1
Summary: Chia plotting manager

@@ -5,0 +5,0 @@ Home-page: https://github.com/ericaltendorf/plotman

@@ -205,3 +205,3 @@ import argparse

elif args.cmd == 'dirs':
print(reporting.dirs_report(jobs, cfg.directories, cfg.scheduling, get_term_width()))
print(reporting.dirs_report(jobs, cfg.directories, cfg.archiving, cfg.scheduling, get_term_width()))

@@ -208,0 +208,0 @@ elif args.cmd == 'interactive':

@@ -23,3 +23,3 @@ target_definitions:

# otherwise it saturates and you get saturated sizes like 2147483647
df -BK | grep " ${site_root_stripped}/" | awk '{ gsub(/K$/,"",$4); printf "%s:%.0f\n", $6, $4*1024 }'
df -aBK | grep " ${site_root_stripped}/" | awk '{ gsub(/K$/,"",$4); printf "%s:%.0f\n", $6, $4*1024 }'
transfer_script: |

@@ -48,3 +48,3 @@ #!/bin/bash

# otherwise it saturates and you get saturated sizes like 2147483647
ssh -p "${ssh_port}" "${user}@${host}" "df -BK | grep \" $(echo "${site_root_stripped}" | sed 's;/\+$;;')/\" | awk '{ gsub(/K\$/,\"\",\$4); printf \"%s:%.0f\n\", \$6, \$4*1024 }'"
ssh -p "${ssh_port}" "${user}@${host}" "df -aBK | grep \" $(echo "${site_root_stripped}" | sed 's;/\+$;;')/\" | awk '{ gsub(/K\$/,\"\",\$4); printf \"%s:%.0f\n\", \$6, \$4*1024 }'"
transfer_script: |

@@ -51,0 +51,0 @@ #!/bin/bash

@@ -1,1 +0,1 @@

0.4
0.4.1