Skip to content

Commit

Permalink
v0.0.26
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelovicentegc committed Mar 20, 2021
1 parent 1e9a72d commit 087d1a3
Show file tree
Hide file tree
Showing 5 changed files with 62 additions and 6 deletions.
48 changes: 48 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,53 @@
# Changelog

## [0.0.26] 20/03/2021

### Chore

- Change NPM released executable file name

## [0.0.25] 20/03/2021

### Chore

- Debug NPM release

## [0.0.24] 20/03/2021

### Chore

- Debug NPM release

## [0.0.23] 20/03/2021

### Chore

- Debug NPM release

## [0.0.22] 20/03/2021

### Chore

- Debug NPM release

## [0.0.21] 20/03/2021

### Chore

- Debug NPM release

## [0.0.20] 20/03/2021

### Chore

- Debug NPM release

## [0.0.20] 19/03/2021

### Chore

- Debug NPM release

## [0.0.19] 19/03/2021

### Fixed
Expand Down
14 changes: 11 additions & 3 deletions docs/README.md → README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
![Build and test](https://github.com/marcelovicentegc/kontrolio-cli/workflows/Go/badge.svg)

<p align="center">
<img alt="kontrolio logo" src="../assets/logo.png" height="300" />
<img alt="kontrolio logo" src="./assets/logo.png" height="300" />
<h3 align="center">kontrolio-cli</h3>
<p align="center">Kontrolio's CLI time clock, clock card machine, punch clock, or time recorder.</p>
</p>
Expand All @@ -15,15 +15,19 @@

## Usage

```bash
kontrolio
```

```bash
NAME:
kontrolio - your cli time clock, clock card machine, punch clock or time recorder

USAGE:
main [global options] command [command options] [arguments...]
kontrolio [global options] command [command options] [arguments...]

VERSION:
0.0.5
0.x

COMMANDS:
logs, l get logs
Expand All @@ -37,6 +41,10 @@ GLOBAL OPTIONS:
--version, -v print the version (default: false)
```

## Troubleshooting

In case you receive an `EACESS` error while trying to execute `kontrolio`, change the file permissions with `chmod 755 <path_to_binaries>`.

## About

### ✈️ Offline mode
Expand Down
2 changes: 1 addition & 1 deletion cli/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func Kontrolio() {
app := &cli.App{
Name: "kontrolio",
Usage: "your cli time clock, clock card machine, punch clock or time recorder",
Version: "0.0.5",
Version: "0.0.25",

Commands: []*cli.Command{
{
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kontrolio/cli",
"version": "0.0.25",
"version": "0.0.26",
"main": "",
"author": "Marcelo Cardoso <[email protected]>",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion run.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const appName = "kontrolio";

// Determine the install directory by version so that we can detect when we need
// to upgrade to a new version.
const installDir = path.join(binDir, version);
const installDir = path.join(binDir, version, appName);

const supportedPlatforms = [
{
Expand Down

0 comments on commit 087d1a3

Please sign in to comment.