-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #24 from Commandos-app/develop
Release 0.7.5
- Loading branch information
Showing
20 changed files
with
1,515 additions
and
581 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. | ||
|
||
### 0.7.5 (2021-08-26) | ||
|
||
|
||
### Features | ||
|
||
* added loading more history entries ([91d8c46](https://github.com/Commandos-app/Commandos/commit/91d8c46b24a8666969765112d68a11060281d4d1)), closes [#16](https://github.com/Commandos-app/Commandos/issues/16) | ||
* collapsible tree view ([a2f4ee7](https://github.com/Commandos-app/Commandos/commit/a2f4ee73b7175cf6587124c7c64058fd888ca39b)) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* angular size ([27fe850](https://github.com/Commandos-app/Commandos/commit/27fe850b0731e7be9f5f3971a1d06f72f246fc4e)) | ||
* button remains disabled ([f6c22ba](https://github.com/Commandos-app/Commandos/commit/f6c22ba29ce6a090b363fef72b02fa0acebe1129)), closes [#19](https://github.com/Commandos-app/Commandos/issues/19) | ||
* check fields for null ([2ceb87d](https://github.com/Commandos-app/Commandos/commit/2ceb87d7e382005d3938edac6315996d2d16acc9)) | ||
* cursor ([39d2444](https://github.com/Commandos-app/Commandos/commit/39d2444b0078df6c3ed3f462f224a0c32ad7a40b)) | ||
* loadingStates for buttons ([ef20fd6](https://github.com/Commandos-app/Commandos/commit/ef20fd618708e706e7c2f8357c52cfa88b5dbcb3)) | ||
* order ([7a7d6b1](https://github.com/Commandos-app/Commandos/commit/7a7d6b1bdb28e861ee23eb6b95ad67c235748480)) | ||
* publios,ymal ([ec12954](https://github.com/Commandos-app/Commandos/commit/ec12954a876a4523297831a415c5ca16cef689bf)) | ||
* refresh ahead/behind indicator ([943cd8c](https://github.com/Commandos-app/Commandos/commit/943cd8c865809e2ac6b3068eef663088712e1c95)), closes [#9](https://github.com/Commandos-app/Commandos/issues/9) | ||
* reload Ahead/Behind when pushing ([89bd12b](https://github.com/Commandos-app/Commandos/commit/89bd12bf1de1eab42c9adc9d9b62ec9bdd642af0)), closes [#9](https://github.com/Commandos-app/Commandos/issues/9) | ||
* startup heck of file ([0d7d6c1](https://github.com/Commandos-app/Commandos/commit/0d7d6c14943520ea9503c7a7b82c12a1930de763)) | ||
* swap back to tauri commands ([ae278f7](https://github.com/Commandos-app/Commandos/commit/ae278f72b1e53fb549d66fdfd9753f7a98005d49)) | ||
* typo ([5aa8143](https://github.com/Commandos-app/Commandos/commit/5aa8143ec057c733012f022a5e213e5daf811648)) | ||
* workflow, wrong attributes ([57bbb9b](https://github.com/Commandos-app/Commandos/commit/57bbb9b23967f2b0acc69cb6dfe8db57f327d7fc)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# Contributing | ||
|
||
When contributing to this repository, please first discuss the change you wish to make via issue, | ||
email, or any other method with the owners of this repository before making a change. | ||
|
||
Please note we have a [code of conduct](CODE_OFCONDUCT.md), please follow it in all your interactions with the project. | ||
|
||
|
||
|
||
## Commit guidelines | ||
We use [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) to ensure that our commits are in a consistent format. | ||
|
||
The commit message should be structured as follows: | ||
|
||
--- | ||
|
||
``` | ||
<type>[optional scope]: <description> | ||
[optional body] | ||
[optional footer(s)] | ||
``` | ||
--- | ||
|
||
|
||
The commit contains the following structural elements, to communicate intent to the | ||
consumers of your library: | ||
|
||
1. **fix:** a commit of the _type_ `fix` patches a bug in your codebase (this correlates with [`PATCH`](http://semver.org/#summary) in Semantic Versioning). | ||
1. **feat:** a commit of the _type_ `feat` introduces a new feature to the codebase (this correlates with [`MINOR`](http://semver.org/#summary) in Semantic Versioning). | ||
1. **BREAKING CHANGE:** a commit that has a footer `BREAKING CHANGE:`, or appends a `!` after the type/scope, introduces a breaking API change (correlating with [`MAJOR`](http://semver.org/#summary) in Semantic Versioning). | ||
A BREAKING CHANGE can be part of commits of any _type_. | ||
1. _types_ other than `fix:` and `feat:` are allowed, for example [@commitlint/config-conventional](https://github.com/conventional-changelog/commitlint/tree/master/%40commitlint/config-conventional) (based on the [the Angular convention](https://github.com/angular/angular/blob/22b96b9/CONTRIBUTING.md#-commit-message-guidelines)) recommends `build:`, `chore:`, | ||
`ci:`, `docs:`, `style:`, `refactor:`, `perf:`, `test:`, and others. | ||
1. _footers_ other than `BREAKING CHANGE: <description>` may be provided and follow a convention similar to | ||
[git trailer format](https://git-scm.com/docs/git-interpret-trailers). | ||
|
||
Additional types are not mandated by the Conventional Commits specification, and have no implicit effect in Semantic Versioning (unless they include a BREAKING CHANGE). | ||
|
||
A scope may be provided to a commit's type, to provide additional contextual information and is contained within parenthesis, e.g., `feat(parser): add ability to parse arrays`. | ||
|
||
|
||
|
||
|
||
## Pull Request Process | ||
|
||
1. Ensure any install or build dependencies are removed before the end of the layer when doing a | ||
build. | ||
2. Update the README.md with details of changes to the interface, this includes new environment | ||
variables, exposed ports, useful file locations and container parameters. | ||
3. Increase the version numbers in any examples files and the README.md to the new version that this | ||
Pull Request would represent. The versioning scheme we use is [SemVer](http://semver.org/). | ||
4. You may merge the Pull Request in once you have the sign-off of two other developers, or if you | ||
do not have permission to do that, you may request the second reviewer to merge it for you. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,48 @@ | ||
# Commandos | ||
Commandos is a new GIT client with a lot of nice features. | ||
One of the main features is to execute a git command in multiple repositories. | ||
Commandos is a GIT Client specialty for multi repositories. But works fine too with just one repository. | ||
It can execute a command on multiple repositories like creating a branch, merge a branch, or other commands. | ||
|
||
Commandos is currently only available on Windows, we plan to add macOS and Linux support when we release version 1.0. | ||
|
||
Commandos is currently in __Alpha__ version! | ||
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT) | ||
[![Conventional Commits](https://img.shields.io/badge/Conventional%20Commits-1.0.0-blue.svg)](https://conventionalcommits.org) | ||
|
||
|
||
> more comming soon | ||
## Table of Contents | ||
|
||
- [Installation](#installation) | ||
- [Contributing](#contributing) | ||
- [Support + Feedback](#support--feedback) | ||
- [License](#license) | ||
|
||
|
||
## Installation | ||
|
||
Use the prebuild binaries, or if you like to build it yourself: | ||
Follow the instruction to install rust: https://tauri.studio/en/docs/getting-started/intro | ||
|
||
After this, you can install all dependencies: | ||
```bash | ||
npm install | ||
``` | ||
To run the app, run these commands: | ||
```bash | ||
npm run tauri dev | ||
npm ng serve | ||
``` | ||
|
||
## Contributing | ||
|
||
We appreciate feedback and contribution to this repo! Before you get started, please see the following: | ||
|
||
- [Contribution guide](CONTRIBUTING.md) | ||
|
||
|
||
## Support + Feedback | ||
|
||
Use Github issues to report bugs, or to ask questions. | ||
|
||
|
||
## License | ||
|
||
Link to [MIT LICENSE](LICENSE) doc. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.