-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add umami and minor improvements
- Loading branch information
1 parent
18308d1
commit f67a668
Showing
28 changed files
with
722 additions
and
458 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 |
---|---|---|
@@ -1 +1 @@ | ||
custom: ["blog.avneesh.tech/sponsor", "https://sponsor.avneesh.tech/"] | ||
custom: ["blog.avneesh.tech/sponsor", "https://sponsor.avneesh.tech/"] |
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,57 +1,25 @@ | ||
name: 🐛Bug Report | ||
description: File a bug report | ||
name: 🐛 Bug | ||
description: Report an issue to help improve the project. | ||
labels: ["bug"] | ||
body: | ||
- type: textarea | ||
id: bug-description | ||
id: description | ||
attributes: | ||
label: Describe the Bug | ||
placeholder: A clear and concise description of what the bug is. | ||
validation: | ||
required: true | ||
- type: textarea | ||
id: steps-to-reproduce | ||
attributes: | ||
label: Steps to Reproduce | ||
placeholder: | | ||
Steps to reproduce the behavior: | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
validation: | ||
required: true | ||
- type: textarea | ||
id: expected-behaviour | ||
attributes: | ||
label: Expected Behaviour | ||
placeholder: A clear and concise description of what you expected to happen. | ||
validation: | ||
label: Description | ||
description: A brief description of the question or issue, also include what you tried and what didn't work | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: screenshots | ||
attributes: | ||
label: Screenshots | ||
placeholder: If applicable, add screenshots to help explain your problem. Highlight this area and drag and drop any file to attach it. | ||
- type: textarea | ||
id: desktop | ||
attributes: | ||
label: Desktop (please complete the following information): | ||
value: | | ||
- OS [e.g. iOS]: | ||
- Browser [e.g. chrome, safari]: | ||
- Version [e.g. 22]: | ||
- type: textarea | ||
id: smartphone | ||
attributes: | ||
label: Smartphone (please complete the following information): | ||
value: | | ||
- Device: [e.g. iPhone6] | ||
- OS: [e.g. iOS8.1] | ||
- Browser [e.g. stock browser, safari] | ||
- Version [e.g. 22] | ||
description: Please add screenshots if applicable | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: additional-context | ||
id: extrainfo | ||
attributes: | ||
label: Additional Context | ||
placeholder: Add any other context about the problem here. | ||
|
||
label: Additional information | ||
description: Is there anything else we should know about this bug? | ||
validations: | ||
required: false |
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 @@ | ||
.next |
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,14 +1,15 @@ | ||
module.exports = { | ||
types: [ | ||
{ type: "feat", "section": "Features" }, | ||
{ type: "fix", "section": "Bug Fixes" }, | ||
{ type: "chore", "hidden": true }, | ||
{ type: "docs", "hidden": true }, | ||
{ type: "style", "hidden": true }, | ||
{ type: "refactor", "hidden": true }, | ||
{ type: "perf", "hidden": true }, | ||
{ type: "test", "hidden": true } | ||
{ type: "feat", section: "Features" }, | ||
{ type: "fix", section: "Bug Fixes" }, | ||
{ type: "chore", hidden: true }, | ||
{ type: "docs", hidden: true }, | ||
{ type: "style", hidden: true }, | ||
{ type: "refactor", hidden: true }, | ||
{ type: "perf", hidden: true }, | ||
{ type: "test", hidden: true }, | ||
], | ||
"commitUrlFormat": "https://github.com/avneesh0612/Portoflio/commits/{{hash}}", | ||
"compareUrlFormat": "https://github.com/avneesh0612/Portoflio/compare/{{previousTag}}...{{currentTag}}" | ||
} | ||
commitUrlFormat: "https://github.com/avneesh0612/Portoflio/commits/{{hash}}", | ||
compareUrlFormat: | ||
"https://github.com/avneesh0612/Portoflio/compare/{{previousTag}}...{{currentTag}}", | ||
}; |
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,57 +1,39 @@ | ||
# [1.5.0](https://github.com/avneesh0612/portfolio/compare/v1.4.2...v1.5.0) (2022-02-08) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* build and use link ([e8fc196](https://github.com/avneesh0612/portfolio/commit/e8fc1965d0f7d77fec6aecd0f0e8b8e8791f9312)) | ||
* typo ([3ea1146](https://github.com/avneesh0612/portfolio/commit/3ea11468f2aa841de16712e253a03c941ae77f85)) | ||
* use router instead of a tag ([d554049](https://github.com/avneesh0612/portfolio/commit/d554049f05bae4cde300afa6d152f7b39f45adeb)) | ||
|
||
- build and use link ([e8fc196](https://github.com/avneesh0612/portfolio/commit/e8fc1965d0f7d77fec6aecd0f0e8b8e8791f9312)) | ||
- typo ([3ea1146](https://github.com/avneesh0612/portfolio/commit/3ea11468f2aa841de16712e253a03c941ae77f85)) | ||
- use router instead of a tag ([d554049](https://github.com/avneesh0612/portfolio/commit/d554049f05bae4cde300afa6d152f7b39f45adeb)) | ||
|
||
### Features | ||
|
||
* changes on the 404 page ([eefac78](https://github.com/avneesh0612/portfolio/commit/eefac7857de018db1906f82d7cc1aef7204490bd)) | ||
|
||
|
||
- changes on the 404 page ([eefac78](https://github.com/avneesh0612/portfolio/commit/eefac7857de018db1906f82d7cc1aef7204490bd)) | ||
|
||
## [1.4.2](https://github.com/avneesh0612/portfolio/compare/v1.4.1...v1.4.2) (2022-01-30) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* add node types ([a77de92](https://github.com/avneesh0612/portfolio/commit/a77de92b4e04b87a2f5bc51d6c1c11a861716065)) | ||
|
||
|
||
- add node types ([a77de92](https://github.com/avneesh0612/portfolio/commit/a77de92b4e04b87a2f5bc51d6c1c11a861716065)) | ||
|
||
## [1.4.1](https://github.com/avneesh0612/portfolio/compare/v1.4.0...v1.4.1) (2022-01-22) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* og image ([117e68d](https://github.com/avneesh0612/portfolio/commit/117e68d7449a4f8bf1bf0bcd294b4dfa4b987b8a)) | ||
|
||
|
||
- og image ([117e68d](https://github.com/avneesh0612/portfolio/commit/117e68d7449a4f8bf1bf0bcd294b4dfa4b987b8a)) | ||
|
||
# [1.4.0](https://github.com/avneesh0612/portfolio/compare/v1.3.0...v1.4.0) (2022-01-16) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* formatting ([d53e93c](https://github.com/avneesh0612/portfolio/commit/d53e93c61261d9b5b1d2ca7942ff27f7bf08dba7)) | ||
|
||
- formatting ([d53e93c](https://github.com/avneesh0612/portfolio/commit/d53e93c61261d9b5b1d2ca7942ff27f7bf08dba7)) | ||
|
||
### Features | ||
|
||
* minor refactors, and improve via feedback ([b05cc88](https://github.com/avneesh0612/portfolio/commit/b05cc88a0f9dae698038db9587c49b23d91caf74)) | ||
|
||
|
||
- minor refactors, and improve via feedback ([b05cc88](https://github.com/avneesh0612/portfolio/commit/b05cc88a0f9dae698038db9587c49b23d91caf74)) | ||
|
||
# [1.3.0](https://github.com/avneesh0612/portfolio/compare/v1.2.2...v1.3.0) (2022-01-14) | ||
|
||
|
||
### Features | ||
|
||
* added google analytics ([ce861ad](https://github.com/avneesh0612/portfolio/commit/ce861ada8b76474979fd5fb866bee55d7b9acc7f)) | ||
|
||
|
||
|
||
- added google analytics ([ce861ad](https://github.com/avneesh0612/portfolio/commit/ce861ada8b76474979fd5fb866bee55d7b9acc7f)) |
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
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.
f67a668
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs: