Skip to content

Commit 1981d4d

Browse files
committed
feature: initial commit
0 parents  commit 1981d4d

File tree

321 files changed

+25937
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

321 files changed

+25937
-0
lines changed

.github/CONTRIBUTING.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Contributing Guidelines
2+
3+
Contributions to this package are most welcome!
4+
5+
There is a test site in the solution to make working with this repository easier.

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
name: "Bug report"
2+
description: "File a bug report to help improve this package."
3+
labels: "bug"
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thanks for taking the time to report this issue as thoroughly as possible.
9+
- type: input
10+
id: "PackageVersion"
11+
attributes:
12+
label: "Which jcdcdev.Umbraco.PackageTemplate version are you using?"
13+
description: "Leave blank if you're not sure: the latest version will be assumed."
14+
validations:
15+
required: false
16+
- type: input
17+
id: "umbracoVersion"
18+
attributes:
19+
label: "Which Umbraco version are you using? For example: 10.4.0 - don't just write v10"
20+
description: "Use the help icon in the Umbraco backoffice to find the version you're using."
21+
validations:
22+
required: true
23+
- type: textarea
24+
id: "summary"
25+
attributes:
26+
label: "Bug summary"
27+
description: "Write a summary of the bug. Remember that you can format code and logs nicely with the `<>` button"
28+
placeholder: >
29+
Try to pinpoint it as much as possible.
30+
31+
Try to state the actual problem, and not just what you think the solution might be.
32+
validations:
33+
required: true
34+
- type: textarea
35+
attributes:
36+
label: "Steps to reproduce"
37+
id: "reproduction"
38+
description: "How can we reproduce the problem on a clean AdminOnlyPackage + Umbraco install?"
39+
placeholder: >
40+
Please include any links, screenshots, stack-traces, etc.
41+
validations:
42+
required: true
43+
- type: textarea
44+
attributes:
45+
label: "Expected result / actual result"
46+
id: "result"
47+
description: "What did you expect that would happen on your Umbraco site and what is the actual result of the above steps?"
48+
placeholder: >
49+
Describe the intended/desired outcome after you did the steps mentioned.
50+
51+
Describe the behaviour of the bug

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
blank_issues_enabled: false
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: "Feature request"
2+
description: "Suggest an idea for this package."
3+
labels: "enhancement"
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thanks for taking the time to suggest this feature request!
9+
- type: textarea
10+
id: "summary"
11+
attributes:
12+
label: "Feature summary"
13+
description: "Write a brief summary of the feature"
14+
validations:
15+
required: true
16+
- type: textarea
17+
id: "details"
18+
attributes:
19+
label: "Additional details"
20+
description: "Provide any additional details or comments about the feature you are suggesting"
21+
validations:
22+
required: false

.github/README.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# jcdcdev.Umbraco.ExtendedMarkdownEditor
2+
3+
[![Umbraco Version](https://img.shields.io/badge/Umbraco-10.4+-%233544B1?style=flat&logo=umbraco)](https://umbraco.com/products/umbraco-cms/)
4+
[![NuGet](https://img.shields.io/nuget/vpre/jcdcdev.Umbraco.ExtendedMarkdownEditor?color=0273B3)](https://www.nuget.org/packages/jcdcdev.Umbraco.ExtendedMarkdownEditor)
5+
[![GitHub license](https://img.shields.io/github/license/jcdcdev/jcdcdev.Umbraco.ExtendedMarkdownEditor?color=8AB803)](https://github.com/jcdcdev/jcdcdev.Umbraco.ExtendedMarkdownEditor/blob/main/LICENSE)
6+
[![Downloads](https://img.shields.io/nuget/dt/jcdcdev.Umbraco.ExtendedMarkdownEditor?color=cc9900)](https://www.nuget.org/packages/jcdcdev.Umbraco.ExtendedMarkdownEditor/)
7+
8+
Get more from the Umbraco Markdown editor. Provides access to the raw Markdown and transformed HTML. Adds data type configuration to control Markdown to HTML settings.
9+
10+
## Quick Start
11+
12+
## Configuration
13+
14+
## Extending
15+
16+
## Contributing
17+
18+
Contributions to this package are most welcome! Please read the [Contributing Guidelines](https://github.com/jcdcdev/jcdcdev.Umbraco.ExtendedMarkdownEditor/blob/main/.github/CONTRIBUTING.md).
19+
20+
## Acknowledgments (thanks!)
21+
22+
- LottePitcher - [opinionated-package-starter](https://github.com/LottePitcher/opinionated-package-starter)
23+
- jcdcdev - [jcdcdev.Umbraco.PackageTemplate](https://github.com/jcdcdev/jcdcdev.Umbraco.PackageTemplate)

.github/dependabot.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: nuget
4+
directory: "/"
5+
schedule:
6+
interval: "daily"
7+
time: "04:00"
8+
commit-message:
9+
prefix: "chore"
10+
include: "scope"
11+
target-branch: "dev"
12+
13+
- package-ecosystem: npm
14+
directory: "/"
15+
schedule:
16+
interval: "daily"
17+
time: "04:00"
18+
commit-message:
19+
prefix: "chore"
20+
include: "scope"
21+
target-branch: "dev"

.github/workflows/build.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: 🏗️ Build
2+
on:
3+
pull_request:
4+
branches: "*"
5+
workflow_dispatch:
6+
jobs:
7+
metadata:
8+
uses: jcdcdev/jcdcdev.Github.UmbracoSimpleDeploy/.github/workflows/generate-project-metadata.yml@main
9+
build:
10+
uses: jcdcdev/jcdcdev.Github.UmbracoSimpleDeploy/.github/workflows/build-template.yml@main
11+
needs:
12+
- metadata
13+
with:
14+
project-name: ${{ needs.metadata.outputs.project-name }}
15+
project-path: ${{ needs.metadata.outputs.project-path }}

.github/workflows/release.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: 🚀 Release
2+
on:
3+
workflow_dispatch:
4+
jobs:
5+
metadata:
6+
uses: jcdcdev/jcdcdev.Github.UmbracoSimpleDeploy/.github/workflows/generate-project-metadata.yml@main
7+
build:
8+
uses: jcdcdev/jcdcdev.Github.UmbracoSimpleDeploy/.github/workflows/build-template.yml@main
9+
needs:
10+
- metadata
11+
with:
12+
project-name: ${{ needs.metadata.outputs.project-name }}
13+
project-path: ${{ needs.metadata.outputs.project-path }}
14+
release:
15+
needs:
16+
- build
17+
permissions:
18+
contents: write
19+
uses: jcdcdev/jcdcdev.Github.UmbracoSimpleDeploy/.github/workflows/release-template.yml@main
20+
with:
21+
artifact-name: ${{ needs.build.outputs.artifact-name }}
22+
version: ${{ needs.build.outputs.version }}
23+
secrets:
24+
nuget-api-key: ${{ secrets.NUGET_API_KEY }}
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: 📄 Update Releases
2+
on:
3+
workflow_dispatch:
4+
inputs:
5+
start-version:
6+
required: true
7+
default: '0.1.0'
8+
end-version:
9+
required: true
10+
default: '999.999.999'
11+
jobs:
12+
update-releases:
13+
uses: jcdcdev/jcdcdev.Github.UmbracoSimpleDeploy/.github/workflows/update-all-releases.yml@main
14+
permissions:
15+
contents: write
16+
with:
17+
start-version: ${{ inputs.start-version}}
18+
end-version: ${{ inputs.end-version}}

0 commit comments

Comments
 (0)