Skip to content
This repository was archived by the owner on Feb 10, 2024. It is now read-only.

Commit f9c97dd

Browse files
committed
Update readme + pipeline
1 parent 9f77b76 commit f9c97dd

File tree

2 files changed

+21
-26
lines changed

2 files changed

+21
-26
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
steps:
1515
- name: Checkout
1616
uses: actions/checkout@v2
17-
- name: Verify commit exists in origin/master
17+
- name: Verify commit exists in origin/main
1818
run: |
1919
git fetch --no-tags --prune --depth=1 origin +refs/heads/*:refs/remotes/origin/*
20-
git branch --remote --contains | grep origin/master
20+
git branch --remote --contains | grep origin/main
2121
- name: Set VERSION variable from tag
2222
run: echo "VERSION=${GITHUB_REF/refs\/tags\/v/}" >> $GITHUB_ENV
2323
- name: Build

README.md

Lines changed: 19 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,21 @@
33
[![NuGet release](https://img.shields.io/nuget/v/Our.Umbraco.DocTypeGridEditor.svg)](https://www.nuget.org/packages/Our.Umbraco.DocTypeGridEditor)
44
[![Our Umbraco project page](https://img.shields.io/badge/our-umbraco-orange.svg)](https://our.umbraco.org/projects/backoffice-extensions/doc-type-grid-editor)
55

6-
76
A grid editor for Umbraco that allows you to use Doc Types as a blue print for grid-cell data.
87

9-
108
## Getting Started
119

1210
### Installation
1311

14-
> *Note:* Doc Type Grid Editor has been developed against Umbraco since v7 supports different versions of Umbraco:
15-
12+
> _Note:_ Doc Type Grid Editor has been developed against Umbraco since v7 supports different versions of Umbraco:
1613
1714
DTGE is compatible with the following Umbraco versions:
1815
Umbraco 7.1-7.5: DocTypeGridEditor 0.5.0
1916
Umbraco 7.6-7.x: DocTypeGridEditor 0.6.0
2017
Umbraco 8.1-8.5: DocTypeGridEditor 1.1.0
2118
Umbraco 8.5-8.x: DocTypeGridEditor 1.2.7
2219
Umbraco 9.0-9.x: DocTypeGridEditor 2.0.0
20+
Umbraco 10.0-10.x: DocTypeGridEditor 10.0.0
2321

2422
Doc Type Grid Editor can be installed from either Our Umbraco package repository, or NuGet. From version 2.0.0 only NuGet can be used to install the package.
2523

@@ -33,58 +31,55 @@ To install from Our Umbraco, please download the package from:
3331

3432
To [install from NuGet](https://www.nuget.org/packages/Our.Umbraco.DocTypeGridEditor), you can run the following command from within Visual Studio:
3533

36-
PM> Install-Package Our.Umbraco.DocTypeGridEditor
34+
PM> Install-Package Our.Umbraco.DocTypeGridEditor
3735

3836
---
3937

4038
## Developers Guide
4139

4240
For details on how to use the Doc Type Grid Editor package, please refer to our documentation.
4341

44-
* [Doc Type Grid Editor - Developers Guide, v1.2.x](docs/developers-guide-v1.md)
45-
* [Doc Type Grid Editor - Developers Guide, v2.x.x](docs/developers-guide-v2.md)
42+
- [Doc Type Grid Editor - Developers Guide, v1.2.x](docs/developers-guide-v1.md)
43+
- [Doc Type Grid Editor - Developers Guide, v2.x.x & v10.x.x](docs/developers-guide-v2.md)
4644

4745
---
4846

4947
## Known Issues
5048

5149
Please be aware that not all property-editors will work within Doc Type Grid Editor. The following Umbraco core property-editors are known to have compatibility issues:
5250

53-
* Image Cropper
54-
* Macro Container
55-
* Tags
56-
* Upload
51+
- Image Cropper
52+
- Macro Container
53+
- Tags
54+
- Upload
5755

5856
---
5957

6058
## Contributing to this project
6159

6260
Anyone and everyone is welcome to contribute. Please take a moment to review the [guidelines for contributing](CONTRIBUTING.md).
6361

64-
* [Bug reports](CONTRIBUTING.md#bugs)
65-
* [Feature requests](CONTRIBUTING.md#features)
66-
* [Pull requests](CONTRIBUTING.md#pull-requests)
67-
62+
- [Bug reports](CONTRIBUTING.md#bugs)
63+
- [Feature requests](CONTRIBUTING.md#features)
64+
- [Pull requests](CONTRIBUTING.md#pull-requests)
6865

6966
## Contact
7067

7168
Have a question?
7269

73-
* [Doc Type Grid Editor Forum](https://our.umbraco.org/projects/backoffice-extensions/doc-type-grid-editor/doc-type-grid-editor-feedback/) on Our Umbraco
74-
* [Raise an issue](https://github.com/skttl/umbraco-doc-type-grid-editor/issues) on GitHub
75-
70+
- [Doc Type Grid Editor Forum](https://our.umbraco.org/projects/backoffice-extensions/doc-type-grid-editor/doc-type-grid-editor-feedback/) on Our Umbraco
71+
- [Raise an issue](https://github.com/skttl/umbraco-doc-type-grid-editor/issues) on GitHub
7672

7773
## Dev Team
7874

79-
* [Søren Kottal](https://github.com/skttl)
75+
- [Søren Kottal](https://github.com/skttl)
8076

8177
### Special thanks
8278

83-
* Thanks to [Matt Brailsford](https://github.com/mattbrailsford) and [Lee Kelleher](https://github.com/leekelleher) for building this great package.
84-
* Thanks to [Jeavon Leopold](https://github.com/Jeavon) for being a rockstar and adding AppVeyor & NuGet support.
85-
* Thanks to [Dave Woestenborghs](https://github.com/dawoe) for helping solve showstopper issues.
86-
* Thanks to [Arnold Visser](https://github.com/ArnoldV) and [Bjarne Fyrstenborg](https://github.com/bjarnef) for help with porting the package to Umbraco 8.
87-
79+
- Thanks to [Matt Brailsford](https://github.com/mattbrailsford) and [Lee Kelleher](https://github.com/leekelleher) for building this great package.
80+
- Thanks to [Jeavon Leopold](https://github.com/Jeavon) for being a rockstar and adding AppVeyor & NuGet support.
81+
- Thanks to [Dave Woestenborghs](https://github.com/dawoe) for helping solve showstopper issues.
82+
- Thanks to [Arnold Visser](https://github.com/ArnoldV) and [Bjarne Fyrstenborg](https://github.com/bjarnef) for help with porting the package to Umbraco 8.
8883

8984
## License
9085

0 commit comments

Comments
 (0)