piotrmski / plaid

Personal Jira worklog editor
MIT License
20 stars 3 forks source link

Plaid

Screenshot

Plaid lets you get a better overview of your Jira worklog. Add, edit and remove your worklog entries, which are neatly laid out on a calendar. Works both with Jira Server and Jira Cloud.

Features

New in 1.0

See full change log in changelog.md

Installation

Windows

Download the installer from the latest release. Run the executable, and you're good to go. Your application will automatically update to newer releases.

Ubuntu

Application is available to install from Snapcraft:

sudo snap install plaid

Development

Make sure you have npm installed on your system and available globally. Then install the dependencies:

npm install

At this point you can start debugging the application by serving the Angular project:

npm run serve-dev

and in a separate terminal running Electron:

npm run start-dev

Building

To build the Angular project to ./build, run:

npm run build

The built project can then be run without packaging:

npm run start

After building, you can also package the project for the current platform to ./dist:

npm run package