Skip to content

Commit 5e97f79

Browse files
committed
v0.1.0
1 parent 5a7e7b8 commit 5e97f79

File tree

5 files changed

+31
-2
lines changed

5 files changed

+31
-2
lines changed

.github/actions/release.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ async function run() {
7777
repo: 'gitification',
7878
tag_name: packageJSON.version.toString(),
7979
name: packageJSON.version.toString(),
80+
body: 'Click to view [CHANGELOG](https://github.com/Gitification-App/gitification/blob/main/CHANGELOG.md).',
8081
})
8182

8283
octokit.rest.repos.uploadReleaseAsset({

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2022-present, Kadir Yazıcı
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gitification",
3-
"version": "0.0.1",
3+
"version": "0.1.0",
44
"type": "module",
55
"scripts": {
66
"dev": "run-p vite:dev devtools",

src-tauri/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
### 0.1.0
2+
- Added sidebar to landing page and a button to allow users to modify settings.
3+
- Added a back button to sidebar, removed bell icon. Now users can navigate back from settings.
4+
- Now notification title shows image of repository instead of a dummy image.
5+
6+
## Actions
7+
- Now release action adds a link to release to navigate users to changelog.

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
},
99
"package": {
1010
"productName": "Gitification",
11-
"version": "0.0.1"
11+
"version": "0.1.0"
1212
},
1313
"tauri": {
1414
"systemTray": {

0 commit comments

Comments
 (0)