Merge branch 'main' of https://github.com/Neocky/pluGET into main

This commit is contained in:
Neocky 2021-03-13 23:12:59 +01:00
commit 3a89064ede

View File

@ -53,9 +53,14 @@ There are more features in the work. Check [Projects](https://github.com/Neocky/
[Get the latest release here.](https://github.com/Neocky/pluGET/releases) [Get the latest release here.](https://github.com/Neocky/pluGET/releases)
## Donations
If you feel like showing your love and/or appreciation for this project then how about buying me a coffee! :)
<a href="https://www.buymeacoffee.com/Neocky" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" alt="Buy Me A Coffee" height="76" width="272"></a>
## Need help? ## Need help?
[<img src="https://i.imgur.com/D5vyVzC.png" alt="Discord" width="400"/>](https://discord.gg/475Uf4NBPF) [<img src="https://i.imgur.com/D5vyVzC.png" alt="Discord" width="272"/>](https://discord.gg/475Uf4NBPF)
## Installation ## Installation
@ -82,6 +87,7 @@ Another way is to launch the `src\__main__.py` file.
The following are examples of input for the general usage: The following are examples of input for the general usage:
(Hint: 'all' can always be exchanged through the plugin name or the plugin id and reverse) (Hint: 'all' can always be exchanged through the plugin name or the plugin id and reverse)
#### Download the latest update of a specific package: #### Download the latest update of a specific package:
`get [pluginID/pluginName]`
``` ```
get 'pluginID' get 'pluginID'
``` ```
@ -89,35 +95,45 @@ or:
``` ```
get 'pluginName' get 'pluginName'
``` ```
#### Check all installed plugins for updates: #### Check all plugins/one specific plugin for updates:
`check [all/pluginName]`
``` ```
check all check all
``` ```
#### Check one plugin for updates: or:
``` ```
check 'pluginName' check 'pluginName'
``` ```
#### Update all installed plugins: #### Update all plugins/one specific plugin:
`update [all/pluginName]`
``` ```
update all update all
``` ```
#### Update only one plugin: or:
``` ```
update 'pluginName' update 'pluginName'
``` ```
#### Remove a plugin with the id: #### Remove a plugin with the ID/Name:
`remove [pluginID/pluginName]`
``` ```
remove 'pluginID' remove 'pluginID'
``` ```
#### Remove a plugin with the name: or:
``` ```
remove 'pluginName' remove 'pluginName'
``` ```
#### Search for a plugin:
`search [pluginName]`
```
search 'pluginName'
```
#### Exit program: #### Exit program:
`exit [anything]`
``` ```
exit . exit .
``` ```
#### Get link to here: #### Get link to here:
`help [anything]`
``` ```
help . help .
``` ```