Changelog v0.5.0 (#205)

Add Changelog for v0.5.0

Update SubComand Descriptions

Co-authored-by: 6543 <6543@obermui.de>
Reviewed-on: https://gitea.com/gitea/tea/pulls/205
Reviewed-by: Norwin <noerw@noreply.gitea.io>
Reviewed-by: Andrew Thornton <art27@cantab.net>
This commit is contained in:
6543
2020-09-27 14:35:53 +00:00
parent cf2c18c32b
commit 9602c149ca
5 changed files with 33 additions and 8 deletions

View File

@ -17,8 +17,8 @@ import (
// CmdIssues represents to login a gitea server.
var CmdIssues = cli.Command{
Name: "issues",
Usage: "List and create issues",
Description: `List and create issues`,
Usage: "List, create and update issues",
Description: "List, create and update issues",
ArgsUsage: "[<issue index>]",
Action: runIssues,
Subcommands: []*cli.Command{

View File

@ -15,8 +15,8 @@ import (
// CmdNotifications is the main command to operate with notifications
var CmdNotifications = cli.Command{
Name: "notifications",
Usage: "show notifications",
Description: "show notifications, by default based of the current repo and unread one",
Usage: "Show notifications",
Description: "Show notifications, by default based of the current repo and unread one",
Action: runNotifications,
Flags: append([]cli.Flag{
&cli.BoolFlag{

View File

@ -23,8 +23,8 @@ import (
var CmdPulls = cli.Command{
Name: "pulls",
Aliases: []string{"pull", "pr"},
Usage: "List open pull requests",
Description: `List open pull requests`,
Usage: "List, create, checkout and clean pull requests",
Description: `List, create, checkout and clean pull requests`,
ArgsUsage: "[<pull index>]",
Action: runPulls,
Flags: IssuePRFlags,