Skip to content

Commit

Permalink
Merge pull request #88 from minnek-digital-studio/release/3.1.0
Browse files Browse the repository at this point in the history
release/3.1.0 develop
  • Loading branch information
Isaac Martinez authored May 1, 2023
2 parents 978ac10 + a4bd98c commit 2464fa7
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 8 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# [3.1.0] - 2023-04-30

## Added
- [#84](https://github.com/minnek-digital-studio/cominnek/issues/84) Add sync branch

## Fixed
- [#83](https://github.com/minnek-digital-studio/cominnek/issues/83) skip-commit Flag not working for publish command

# [3.0.0] - 2023-03-27

## Added
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ Create commits & pull requests easily. `Cominnek` is based on [TAYO](https://mn

1. Download installer

[![Macos](https://img.shields.io/badge/mac%20os-0078D6?style=for-the-badge&logo=apple&logoColor=white)](https://github.com/Minnek-Digital-Studio/cominnek/releases/latest/download/cominnek-3.0.0.dmg) [![Windows](https://img.shields.io/badge/Windows-0078D6?style=for-the-badge&logo=windows&logoColor=white
)](https://github.com/Minnek-Digital-Studio/cominnek/releases/latest/download/cominnek-3.0.0.exe) [![Linux](https://img.shields.io/badge/Linux-0078D6?style=for-the-badge&logo=linux&logoColor=white)](https://github.com/Minnek-Digital-Studio/cominnek/releases/latest/download/cominnek-3.0.0.deb)
[![Macos](https://img.shields.io/badge/mac%20os-0078D6?style=for-the-badge&logo=apple&logoColor=white)](https://github.com/Minnek-Digital-Studio/cominnek/releases/latest/download/cominnek-3.1.0.dmg) [![Windows](https://img.shields.io/badge/Windows-0078D6?style=for-the-badge&logo=windows&logoColor=white
)](https://github.com/Minnek-Digital-Studio/cominnek/releases/latest/download/cominnek-3.1.0.exe) [![Linux](https://img.shields.io/badge/Linux-0078D6?style=for-the-badge&logo=linux&logoColor=white)](https://github.com/Minnek-Digital-Studio/cominnek/releases/latest/download/cominnek-3.1.0.deb)

2. Run installer ([See MAC Os steps](#how-to-install-on-mac))

Expand Down Expand Up @@ -397,7 +397,7 @@ $ cominnek push -m "Changes in home page" -F "home"
If you want to contribute to this project, please read the [contributing guide](/CONTRIBUTING.md)
Cominnek `V3.0.0`
Cominnek `V3.1.0`
> With ❤ by [isaacismaelx14](https://github.com/isaacismaelx14)
## About
Expand Down
2 changes: 1 addition & 1 deletion assets/windows/bin/setup.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
#include "environment.iss"
#define MyAppName "Cominnek"
#define MyAppVersion "3.0.0"
#define MyAppVersion "3.1.0"
#define MyAppPublisher "Minnek Digital Studio"
#define MyAppURL "https://github.com/Minnek-Digital-Studio/cominnek"
#define MyAppExeName "cominnek.exe"
Expand Down
2 changes: 1 addition & 1 deletion config/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ var cominnekPath = filepath.Join(userPath, ".cominnek")
var cominnekTempPath = filepath.Join(tempPath, ".cominnek")

var Public = IConfig{
Version: "v3.0.0",
Version: "v3.1.0",
KeyPath: filepath.Join(cominnekPath, "key.bin"),
TokenPath: filepath.Join(cominnekPath, "auth.bin"),
PRBody: filepath.Join(cominnekPath, "pr-body.md"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const Download = component$(() => {
</Title>
<Button.Group variant="inline" class={Styles.buttons}>
<Button
href="https://github.com/Minnek-Digital-Studio/cominnek/releases/latest/download/cominnek-3.0.0.dmg"
href="https://github.com/Minnek-Digital-Studio/cominnek/releases/latest/download/cominnek-3.1.0.dmg"
_target="_blank"
variant="dark"
class={Styles.button}
Expand All @@ -22,7 +22,7 @@ export const Download = component$(() => {
<i class={["fa-brands fa-apple", Styles.icon]}></i>
</Button>
<Button
href="https://github.com/Minnek-Digital-Studio/cominnek/releases/latest/download/cominnek-3.0.0.exe"
href="https://github.com/Minnek-Digital-Studio/cominnek/releases/latest/download/cominnek-3.1.0.exe"
_target="_blank"
variant="dark"
class={Styles.button}
Expand All @@ -31,7 +31,7 @@ export const Download = component$(() => {
<i class={["fa-brands fa-windows", Styles.icon]}></i>
</Button>
<Button
href="https://github.com/Minnek-Digital-Studio/cominnek/releases/latest/download/cominnek-3.0.0.deb"
href="https://github.com/Minnek-Digital-Studio/cominnek/releases/latest/download/cominnek-3.1.0.deb"
_target="_blank"
variant="dark"
class={Styles.button}
Expand Down

0 comments on commit 2464fa7

Please sign in to comment.