From a2a8258aaf3dc84ad441e169ed1d6d1a05eaa9fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steffen=20Br=C3=BCheim?= Date: Tue, 27 Oct 2020 19:17:59 +0100 Subject: [PATCH] README.md: Version bump + small table layout fix --- README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 66a5187..2ee532d 100644 --- a/README.md +++ b/README.md @@ -7,16 +7,16 @@ commands to install, update and remove third party packages. All commands are prefixed with `PackageControl:`. -| command | function | -|-------------------------|-----------------------------------------------------------------------------------------------------------| -| Install Package | Downloads the new package and installs it | -| Update Package | Checks if a new version of the package is available and updates if so | -| Update All Packages | Does the Update Package command for all installed packages | -| Remove Package | Deinstalls the package (configurations are untouched) | -| Reinstall Package | Deinstalls the package and installs it again (configurations are untouched) | -| Reinstall Untracked | Reinstalls a already installed package, that was not installed through PackageControl (untracked package) | -| Reinstall All Untracked | Does the Reinstall Untracked command for all untracked packages | -| Update Repository List | Downloads the list of available package again | +| command | function | +|-------------------------|--------------------------------------------------------------------------------------------------------------| +| Install Package | Downloads the new package and installs it | +| Update Package | Checks if a new version of the package is available and updates if so | +| Update All Packages | Does the Update Package command for all installed packages | +| Remove Package | Deinstalls the package (configurations are untouched) | +| Reinstall Package | Deinstalls the package and installs it again (configurations are untouched) | +| Reinstall Untracked | Reinstalls a already installed package, that was not installed
through PackageControl (untracked package) | +| Reinstall All Untracked | Does the Reinstall Untracked command for all untracked packages | +| Update Repository List | Downloads the list of available package again | ![Usage](usage.gif) @@ -28,7 +28,7 @@ All commands are prefixed with `PackageControl:`. * Enter the following: ```python - import keypirinha as kp,keypirinha_net as kpn,os;p="PackageControl.keypirinha-package";d=kpn.build_urllib_opener().open("https://github.com/ueffel/Keypirinha-PackageControl/releases/download/1.0.2/"+p);pb=d.read();d.close();f=open(os.path.join(kp.installed_package_dir(),p),"wb");f.write(pb);f.close() + import keypirinha as kp,keypirinha_net as kpn,os;p="PackageControl.keypirinha-package";d=kpn.build_urllib_opener().open("https://github.com/ueffel/Keypirinha-PackageControl/releases/download/1.0.3/"+p);pb=d.read();d.close();f=open(os.path.join(kp.installed_package_dir(),p),"wb");f.write(pb);f.close() ``` ### Manually