Compare commits

..

2 Commits
v1.0.0 ... main

Author SHA1 Message Date
4114575c31
1.1.0 2025-02-06 14:10:53 -08:00
38440c384d
feat: make it all blue 2025-02-06 14:10:38 -08:00
7 changed files with 17 additions and 264 deletions

View File

@ -1,69 +0,0 @@
name: 🐛 Bug Report
description: Something isn't working as expected? Let us know!
title: '[BUG] - '
labels:
- "🚦 status: awaiting triage"
body:
- type: checkboxes
id: attestations
attributes:
label: Attestations
description: "By checking the boxes below, I certify that:"
options:
- label: "I have read and agree to the [Code of Conduct](https://docs.nhcarrigan.com/community/coc/)"
validations:
required: true
- label: I have read and agree to the [Community Guidelines](https://docs.nhcarrigan.com/community/guide/).
validations:
required: true
- label: I have confirmed that the issue I am opening is unique, and has not already been reported (whether closed or not).
validations:
required: true
- label: I have reviewed the [Security Policy](https://docs.nhcarrigan.com/legal/security/) and have determined that this is not a security vulnerability.
validations:
required: true
- type: textarea
id: description
attributes:
label: "Describe your Issue:"
description: A clear and concise description of what the bug is.
validations:
required: true
- type: dropdown
id: reproduce
attributes:
label: Can you reproduce this issue?
options:
- Yes
- No
validations:
required: true
- type: textarea
id: reproduction
attributes:
label: "Steps to Reproduce:"
description: Steps to reproduce the behavior.
- type: input
id: os
attributes:
label: "Operating System:"
description: The operating system you are using, including the version/build number.
validations:
required: true
# Remove this section for non-web apps.
- type: input
id: browser
attributes:
label: "Browser:"
description: The browser you are using, including the version number.
validations:
required: true
- type: dropdown
attributes:
label: Are you willing and able to contribute a fix?
options:
- Yes
- No
validations:
required: true

View File

@ -1,5 +0,0 @@
blank_issues_enabled: false
contact_links:
- name: "Discord"
url: "https://chat.nhcarrigan.com"
about: "Chat with us directly."

View File

@ -1,46 +0,0 @@
name: 💭 Feature Proposal
description: Have an idea for how we can improve? Share it here!
title: '[FEAT] - '
labels:
- "🚦 status: awaiting triage"
body:
- type: checkboxes
id: attestations
attributes:
label: Attestations
description: "By checking the boxes below, I certify that:"
options:
- label: "I have read and agree to the [Code of Conduct](https://docs.nhcarrigan.com/community/coc/)"
validations:
required: true
- label: I have read and agree to the [Community Guidelines](https://docs.nhcarrigan.com/community/guide/).
validations:
required: true
- label: I have confirmed that the issue I am opening is unique, and has not already been reported (whether closed or not).
validations:
required: true
- label: I have reviewed the [Security Policy](https://docs.nhcarrigan.com/legal/security/) and have determined that this is not a security vulnerability.
validations:
required: true
- type: textarea
id: description
attributes:
label: "Describe your Idea:"
description: A clear and concise description of the feature you would like added.
validations:
required: true
- type: textarea
id: solution
attributes:
label: "What problem does this feature solve?"
description: Why are you requesting this feature? How would it improve your experience with the product?
validations:
required: true
- type: dropdown
attributes:
label: Are you willing and able to contribute this feature?
options:
- Yes
- No
validations:
required: true

View File

@ -1,34 +0,0 @@
name: ❓ Other Issue
description: I have something that is neither a bug nor a feature request.
title: '[OTHER] - '
labels:
- "🚦 status: awaiting triage"
body:
- type: checkboxes
id: attestations
attributes:
label: Attestations
description: "By checking the boxes below, I certify that:"
options:
- label: "I have read and agree to the [Code of Conduct](https://docs.nhcarrigan.com/community/coc/)"
validations:
required: true
- label: I have read and agree to the [Community Guidelines](https://docs.nhcarrigan.com/community/guide/).
validations:
required: true
- label: I have confirmed that the issue I am opening is unique, and has not already been reported (whether closed or not).
validations:
required: true
- label: I have reviewed the [Security Policy](https://docs.nhcarrigan.com/legal/security/) and have determined that this is not a security vulnerability.
validations:
required: true
- label: This is not a feature request or bug report that I am mis-filing to avoid the issue template.
validations:
required: true
- type: textarea
id: description
attributes:
label: "Share your thoughts:"
description: Why are you opening this issue?
validations:
required: true

View File

@ -1,93 +0,0 @@
name: "Pull Request Template"
about: "Template for pulls"
labels:
- "🔍 pull: ready for review"
body:
- type: textarea
id: explain
attributes:
label: "Explanation"
description: "Briefly explain WHY this pull request is necessary. Do not explain what it does, as that's evidenced in the changes."
validations:
required: true
- type: input
id: issue
attributes:
label: "Issue"
description: "My pull request relates to or resolves the following issue number:"
validations:
required: true
is_number: true
- type: checkboxes
id: attestations
attributes:
label: Attestations
description: "By checking the boxes below, I certify that:"
options:
- label: "I have read and agree to the [Code of Conduct](https://docs.nhcarrigan.com/community/coc/)"
validations:
required: true
- label: I have read and agree to the [Community Guidelines](https://docs.nhcarrigan.com/community/guide/).
validations:
required: true
- label: My contribution complies with the [Contributor Covenant](https://docs.nhcarrigan.com/dev/covenant/).
validations:
required: true
- type: checkboxes
id: dependencies
attributes:
label: Dependencies
description: "My pull request adds or updates dependencies, so:"
options:
- label: I have pinned the dependencies to a specific patch version.
validations:
required: false
- type: checkboxes
id: style
attributes:
label: Style
description: "My contribution adheres to the following style guidelines:"
options:
- label: I have run the linter and resolved any errors.
validations:
required: true
- label: My pull request uses an appropriate title, matching the conventional commit standards.
validations:
required: true
- label: My scope of feat/fix/chore/etc. correctly matches the nature of changes in my pull request.
validations:
required: true
- type: checkboxes
id: tests
attributes:
label: Tests
description: "My contribution includes the following tests:"
options:
- label: My contribution adds new code, and I have added tests to cover it.
validations:
required: false
- label: My contribution modifies existing code, and I have updated the tests to reflect these changes.
validations:
required: false
- label: All new and existing tests pass locally with my changes.
validations:
required: true
- label: Code coverage remains at or above the configured threshold.
validations:
required: true
- type: input
id: docs
attributes:
label: Documentation
description: "I have made the following PR to update the documentation site with my changes:"
validations:
required: true
- type: dropdown
id: version
attributes:
label: Versioning
description: "I believe my changes should be included in the following release:"
options:
- "Major - My pull request introduces a breaking change."
- "Minor - My pull request introduces a new non-breaking feature."
- "Patch - My pull request introduces bug fixes ONLY."

View File

@ -2,10 +2,10 @@
"name": "ocean-breeze", "name": "ocean-breeze",
"displayName": "Ocean Breeze", "displayName": "Ocean Breeze",
"icon": "icon.png", "icon": "icon.png",
"version": "1.0.0", "version": "1.1.0",
"description": "A soothing VSCode theme inspired by the aqua hues of the ocean.", "description": "A soothing VSCode theme inspired by the aqua hues of the ocean.",
"engines": { "engines": {
"vscode": "^1.95.2" "vscode": "^1.96.4"
}, },
"publisher": "nhcarrigan", "publisher": "nhcarrigan",
"categories": [ "categories": [

View File

@ -64,7 +64,7 @@
{ {
"scope": ["comment", "punctuation.definition.comment"], "scope": ["comment", "punctuation.definition.comment"],
"settings": { "settings": {
"foreground": "#7fedd6", "foreground": "#113c33",
"fontStyle": "italic" "fontStyle": "italic"
} }
}, },
@ -91,7 +91,7 @@
"support.constant" "support.constant"
], ],
"settings": { "settings": {
"foreground": "#ffd93d" "foreground": "#477f72"
} }
}, },
{ {
@ -117,7 +117,7 @@
"punctuation.decorator" "punctuation.decorator"
], ],
"settings": { "settings": {
"foreground": "#ff92df" "foreground": "#6eafa1"
} }
}, },
{ {
@ -130,7 +130,7 @@
"meta.function.dart" "meta.function.dart"
], ],
"settings": { "settings": {
"foreground": "#6bc5ff" "foreground": "#82c8b9"
} }
}, },
{ {
@ -158,13 +158,13 @@
"punctuation.definition.annotation" "punctuation.definition.annotation"
], ],
"settings": { "settings": {
"foreground": "#ffe074" "foreground": "#477f72"
} }
}, },
{ {
"scope": ["entity.name.tag", "punctuation.definition.tag"], "scope": ["entity.name.tag", "punctuation.definition.tag"],
"settings": { "settings": {
"foreground": "#ff92df" "foreground": "#6eafa1"
} }
}, },
{ {
@ -195,13 +195,13 @@
{ {
"scope": ["string.regexp", "constant.character.escape.regex"], "scope": ["string.regexp", "constant.character.escape.regex"],
"settings": { "settings": {
"foreground": "#ff8585" "foreground": "#7fedd6"
} }
}, },
{ {
"scope": ["markup.heading", "entity.name.section"], "scope": ["markup.heading", "entity.name.section"],
"settings": { "settings": {
"foreground": "#6bc5ff", "foreground": "#82c8b9",
"fontStyle": "bold" "fontStyle": "bold"
} }
}, },
@ -243,7 +243,7 @@
"keyword.operator.logical" "keyword.operator.logical"
], ],
"settings": { "settings": {
"foreground": "#ff92df" "foreground": "#6eafa1"
} }
}, },
{ {
@ -294,7 +294,7 @@
"source.rust keyword.operator.logical" "source.rust keyword.operator.logical"
], ],
"settings": { "settings": {
"foreground": "#ff92df" "foreground": "#6eafa1"
} }
}, },
{ {
@ -303,7 +303,7 @@
"source.python support.function.builtin.python" "source.python support.function.builtin.python"
], ],
"settings": { "settings": {
"foreground": "#6bc5ff" "foreground": "#82c8b9"
} }
}, },
{ {
@ -331,7 +331,7 @@
"source.prisma keyword.type" "source.prisma keyword.type"
], ],
"settings": { "settings": {
"foreground": "#ff92df" "foreground": "#6eafa1"
} }
}, },
{ {
@ -346,7 +346,7 @@
{ {
"scope": ["source.sql keyword.other", "source.sql storage.type"], "scope": ["source.sql keyword.other", "source.sql storage.type"],
"settings": { "settings": {
"foreground": "#ff92df" "foreground": "#6eafa1"
} }
}, },
{ {
@ -366,7 +366,7 @@
"meta.decorator.angular" "meta.decorator.angular"
], ],
"settings": { "settings": {
"foreground": "#ffe074" "foreground": "#477f72"
} }
} }
] ]