Skip to content

Commit

Permalink
Updated readme and version number
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorza committed Dec 10, 2023
1 parent 5ab179d commit e36296b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,13 @@ You can name the project anything you want, but do not put spaces in the name. F
C:\NextDev>zxenv new mygame
```

The default project is a NEX project, you can also create DOT commands and Drivers using the `-t` or `--type` flag to specify the types of project to create.
The default project is a NEX project, you can also create TAP files with a BASIC loader, DOT commands and Drivers using the `-t` or `--type` flag to specify the types of project to create.

### Create a TAP project
The command below will create a new project using the template for a TAP file that includes the BASIC loader
```
C:\NextDev>zxenv new -tTAP mytap
```

### Create a DOT Command project
The command below will create a new project using the template for a DOT command
Expand Down
4 changes: 2 additions & 2 deletions cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
// rootCmd represents the base command when called without any subcommands
var rootCmd = &cobra.Command{
Use: "zxenv",
Short: "CLI for the ZX Spectrum Next development environment v0.1.00",
Long: `CLI for the ZX Spectrum Next development environment v0.1.00`,
Short: "CLI for the ZX Spectrum Next development environment v0.2.00",
Long: `CLI for the ZX Spectrum Next development environment v0.2.00`,
}

// Execute adds all child commands to the root command and sets flags appropriately.
Expand Down

0 comments on commit e36296b

Please sign in to comment.