Skip to content

Commit

Permalink
Merge pull request #17 from yet-another-tool/release/v1.4.2
Browse files Browse the repository at this point in the history
Release/v1.4.2
  • Loading branch information
studiowebux authored Mar 19, 2023
2 parents e5bf1a6 + b4287b9 commit 7892e44
Show file tree
Hide file tree
Showing 36 changed files with 1,111 additions and 494 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
name: "Publish"

on:
- workflow_dispatch
- pull_request
workflow_dispatch:
pull_request:
branches:
- "release/v[0-9].[0-9].[0-9]"
types:
- closed

permissions:
contents: write
Expand Down
59 changes: 56 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,27 +140,80 @@ nano ~/onebtwoionec.config.json

## Changelog

### V1.2.0 - Added Github Actions - 2022-10-05

### V1.4.2 - Moved code to Vuex (#12) - 2023-01-15

- Implemented Vuex
- Split into smaller components
- Implemented views
- Code Cleanup

### V1.4.1 - Improved UX and Flow for the detect changes toggle (#14) - 2023-01-15

- Moved the detect changes logic, isolated it to update the pipeline only

<div align="center">
<img src="./docs/v141.png" alt="Detect Changes UX" width="333">
</div>

<details>
<summary>### V1.4.0 - Added new Features (#7 and #8) - 2023-01-08</summary>

- The Commit ID is clickable (Only github is supported for now.)
- You can toggle the "Detect Changes" for codepipeline directly
- You can fetch and see all the details about the pipeline

<div align="center">
<img src="./docs/v140-commit-link.png" alt="CodePipeline Commit Link Clickable" width="333">
<img src="./docs/v140-detect-changes.png" alt="CodePipeline Detect Changes" width="333">
<img src="./docs/v140-info.png" alt="CodePipeline Get More Information about pipeline" width="333">
</div>

</details>

<details>
<summary>### V1.3.0 - Improved Error/Success for the CodePipeline Source Action - 2023-01-04</summary>

- This way it can guide you and avoid using the AWS UI and see quickly what is wrong with the source.
<div align="center">
<img src="./docs/errorHandling.png" alt="CodePipeline Source Error Handling" width="333">
<img src="./docs/success.png" alt="CodePipeline Source Success" width="333">
</div>

</details>

<details>
<summary>### V1.2.0 - Added Github Actions - 2022-10-05</summary>

- Tested the whole Github Action Flow
- Tested on different systems (MacOS X64, M1 and Windows thanks @maxeber)
- Reviewed and improved UI
- Fixed bugs when CodePipeline response is not defined
- Fixed time ago integration

### V1.1.0 - Added Github Actions - 2022-10-01
</details>

<details>
<summary>### V1.1.0 - Added Github Actions - 2022-10-01</summary>

- Start Github Actions using the workflow_dispatch
- Added Github Personal Access Token
- Reworked the configuration file to implement multi providers
- Revamp the code structure
- Added Github Actions example

### V1.0.0 - CodePipeline - 2022-09-30
</details>

<details>
<summary>### V1.0.0 - CodePipeline - 2022-09-30</summary>

- Start CodePipeline
- Update CodePipeline Source Branch Name

</details>

---

## Contributing

1. Create a Feature Branch
Expand Down
Binary file added docs/errorHandling.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/success.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/v140-commit-link.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/v140-detect-changes.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/v140-info.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/v141.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>1 Button 2 Inputs 1 Configuration</title>
</head>
Expand Down
144 changes: 14 additions & 130 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 3 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@yetanothertool/onebtwoionec",
"private": true,
"version": "1.2.0",
"version": "1.4.2",
"type": "module",
"author": "Studio Webux",
"description": "A simple and configurable UI to Start and Update CodePipeline and/or Github Actions",
Expand All @@ -12,18 +12,16 @@
"tauri": "tauri"
},
"dependencies": {
"@aws-sdk/client-cloudformation": "^3.181.0",
"@aws-sdk/client-codepipeline": "^3.181.0",
"@aws-sdk/client-sts": "^3.181.0",
"@aws-sdk/credential-provider-ini": "^3.181.0",
"@aws-sdk/credential-providers": "^3.181.0",
"@octokit/rest": "^19.0.4",
"@popperjs/core": "^2.11.6",
"@tauri-apps/api": "^1.1.0",
"bootstrap": "^5.2.1",
"bootstrap-icons": "^1.9.1",
"vue": "^3.2.37",
"vue-timeago3": "^2.3.0"
"vue-timeago3": "^2.3.0",
"vuex": "^4.1.0"
},
"devDependencies": {
"@tauri-apps/cli": "^1.1.1",
Expand Down
21 changes: 20 additions & 1 deletion src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 7892e44

Please sign in to comment.