Skip to content

Commit a09ee2e

Browse files
committed
release: v4.0.2
1 parent cc2185e commit a09ee2e

Some content is hidden

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

59 files changed

+1348
-1290
lines changed

.github/CONTRIBUTING.md

Lines changed: 27 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,25 @@
1-
# Contributing to CoreUI Free Bootstrap Admin Template
1+
# Contributing to CoreUI
22

3-
Looking to contribute something to CoreUI Free Bootstrap Admin Template? **Here's how you can help.**
3+
Looking to contribute something to CoreUI? **Here's how you can help.**
44

55
Please take a moment to review this document in order to make the contribution process easy and effective for everyone involved.
66

7-
Following these guidelines helps to communicate that you respect the time of the developers managing and developing this open source project. In return, they should reciprocate that respect in addressing your issue or assessing patches and features.
7+
Following these guidelines helps to communicate that you respect the time of the developers managing and developing this open source project. In return, they should reciprocate that respect in addressing your issue or assessing
8+
patches and features.
89

910
## Using the issue tracker
1011

11-
The [issue tracker](https://github.com/coreui/coreui-free-bootstrap-admin-template/issues) is the preferred channel for [bug reports](#bug-reports), [features requests](#feature-requests) and [submitting pull requests](#pull-requests), but please respect the following restrictions:
12+
The [issue tracker](https://github.com/coreui/coreui-free-bootstrap-admin-template/issues) is
13+
the preferred channel for [bug reports](#bug-reports), [features requests](#feature-requests)
14+
and [submitting pull requests](#pull-requests), but please respect the following
15+
restrictions:
1216

1317
* Please **do not** use the issue tracker for personal support requests.
1418

1519
* Please **do not** post comments consisting solely of "+1" or ":thumbsup:".
1620
Use [GitHub's "reactions" feature](https://github.com/blog/2119-add-reactions-to-pull-requests-issues-and-comments)
1721
instead.
1822

19-
* Please **do not** open issues or pull requests regarding the code in [`@coreui/coreui`](https://github.com/coreui/coreui) (open them in their respective repositories).
20-
2123
## Bug reports
2224

2325
A bug is a _demonstrable problem_ that is caused by the code in the repository.
@@ -29,7 +31,7 @@ Guidelines for bug reports:
2931

3032
1. **Use the GitHub issue search** — check if the issue has already been reported.
3133

32-
2. **Check if the issue has been fixed** — try to reproduce it using the latest `main` or development branch in the repository.
34+
2. **Check if the issue has been fixed** — try to reproduce it using the latest `master` or development branch in the repository.
3335

3436
3. **Isolate the problem** — ideally create a [reduced test case](https://css-tricks.com/reduced-test-cases/) and a live example. [This JS Bin](http://jsbin.com/lefey/1/edit?html,output) is a helpful template.
3537

@@ -61,10 +63,11 @@ Example:
6163
6264
## Feature requests
6365

64-
Feature requests are welcome. Before opening a feature request, please take a moment to find out whether your idea
65-
fits with the scope and aims of the project. It's up to *you* to make a strong
66-
case to convince the project's developers of the merits of this feature. Please
67-
provide as much detail and context as possible.
66+
Feature requests are welcome. Before opening a feature request, please take a
67+
moment to find out whether your idea fits with the scope and aims of the
68+
project. It's up to *you* to make a strong case to convince the project's
69+
developers of the merits of this feature. Please provide as much detail
70+
and context as possible.
6871

6972

7073
## Pull requests
@@ -86,18 +89,18 @@ included in the project:
8689

8790
```bash
8891
# Clone your fork of the repo into the current directory
89-
git clone https://github.com/<your-username>/free-bootstrap-admin-template.git
92+
git clone https://github.com/<your-username>/coreui.git
9093
# Navigate to the newly cloned directory
91-
cd free-bootstrap-admin-template
94+
cd coreui
9295
# Assign the original repo to a remote called "upstream"
93-
git remote add upstream https://github.com/coreui/coreui-free-bootstrap-admin-template.git
96+
git remote add upstream https://github.com/coreui/coreui.git
9497
```
9598

9699
2. If you cloned a while ago, get the latest changes from upstream:
97100

98101
```bash
99-
git checkout main
100-
git pull upstream main
102+
git checkout master
103+
git pull upstream master
101104
```
102105

103106
3. Create a new topic branch (off the main project development branch) to
@@ -116,7 +119,7 @@ included in the project:
116119
5. Locally merge (or rebase) the upstream development branch into your topic branch:
117120

118121
```bash
119-
git pull [--rebase] upstream main
122+
git pull [--rebase] upstream master
120123
```
121124

122125
6. Push your topic branch up to your fork:
@@ -125,13 +128,17 @@ included in the project:
125128
git push origin <topic-branch-name>
126129
```
127130

128-
7. [Open a Pull Request](https://help.github.com/articles/using-pull-requests/) with a clear title and description against the `main` branch.
131+
7. [Open a Pull Request](https://help.github.com/articles/using-pull-requests/)
132+
with a clear title and description against the `master` branch.
129133

130-
**IMPORTANT**: By submitting a patch, you agree to allow the project owners to license your work under the terms of the [MIT License](LICENSE).
134+
**IMPORTANT**: By submitting a patch, you agree to allow the project owners to
135+
license your work under the terms of the [MIT License](LICENSE).
131136

132137
### Semantic Git commit messages
133138

134-
Inspired by Sparkbox's awesome article on [semantic commit messages](http://seesparkbox.com/foundry/semantic_commit_messages). Please use following commit message format.
139+
Inspired by Sparkbox's awesome article on
140+
[semantic commit messages](http://seesparkbox.com/foundry/semantic_commit_messages).
141+
Please use following commit message format.
135142

136143
* chore (updating npm tasks etc; no production code change) -> ```git test -m 'chore: commit-message-here'```
137144
* docs (changes to documentation) -> ```git commit -m 'docs: commit-message-here'```
@@ -141,7 +148,6 @@ Inspired by Sparkbox's awesome article on [semantic commit messages](http://sees
141148
* style (formatting, missing semi colons, etc; no code change) -> ```git commit -m 'style: commit-message-here'```
142149
* test (adding missing tests, refactoring tests; no production code change) -> ```git test -m 'refactor: commit-message-here'```
143150

144-
145151
## Code guidelines
146152

147153
### HTML

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Bug report
3+
about: Tell us about a bug you may have identified in CoreUI.
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
Before opening:
11+
12+
- [Search for duplicate or closed issues](https://github.com/coreui/coreui-free-bootstrap-admin-template/issues?utf8=%E2%9C%93&q=is%3Aissue)
13+
- [Validate](https://html5.validator.nu/) any HTML to avoid common problems
14+
- Read the [contributing guidelines](https://github.com/coreui/coreui-free-bootstrap-admin-template/blob/main/.github/CONTRIBUTING.md)
15+
16+
Bug reports must include:
17+
18+
- Operating system and version (Windows, macOS, Android, iOS)
19+
- Browser and version (Chrome, Firefox, Safari, Microsoft Edge, Opera, Android Browser)
20+
- A [reduced test case](https://css-tricks.com/reduced-test-cases/) or suggested fix using [CodePen](https://codepen.io/) or [JS Bin](https://jsbin.com/)

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
contact_links:
2+
- name: Ask a question
3+
url: https://community.coreui.io/
4+
about: Ask and discuss questions with other CoreUI community members
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for a new feature in CoreUI.
4+
title: ''
5+
labels: feature
6+
assignees: ''
7+
8+
---
9+
10+
Before opening:
11+
12+
- [Search for duplicate or closed issues](https://github.com/coreui/coreui-free-bootstrap-admin-template/issues?utf8=%E2%9C%93&q=is%3Aissue)
13+
- Read the [contributing guidelines](https://github.com/coreui/coreui-free-bootstrap-admin-template/blob/main/.github/CONTRIBUTING.md)
14+
15+
Feature requests must include:
16+
17+
- As much detail as possible for what we should add and why it's important to Bootstrap
18+
- Relevant links to prior art, screenshots, or live demos whenever possible

.github/SUPPORT.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
### Bug reports
2+
3+
See the [contributing guidelines](CONTRIBUTING.md) for sharing bug reports.
4+
5+
### How-to
6+
7+
For general troubleshooting or help getting started:
8+
9+
- Join [the official community](https://community.coreui.io/).
10+
- Ask and explore Stack Overflow with the [`coreui`](https://stackoverflow.com/questions/tagged/coreui) tag.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@coreui/coreui-free-bootstrap-admin-template",
3-
"version": "4.0.1",
3+
"version": "4.0.2",
44
"description": "Free Bootstrap Admin Template",
55
"keywords": [
66
"admin",

src/js/charts.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
/**
44
* --------------------------------------------------------------------------
5-
* CoreUI Boostrap Admin Template (v4.0.1): main.js
5+
* CoreUI Boostrap Admin Template (v4.0.2): main.js
66
* Licensed under MIT (https://coreui.io/license)
77
* --------------------------------------------------------------------------
88
*/

src/js/colors.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
/**
44
* --------------------------------------------------------------------------
5-
* CoreUI Boostrap Admin Template (v4.0.1): colors.js
5+
* CoreUI Boostrap Admin Template (v4.0.2): colors.js
66
* Licensed under MIT (https://coreui.io/license)
77
* --------------------------------------------------------------------------
88
*/

src/js/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
/**
44
* --------------------------------------------------------------------------
5-
* CoreUI Boostrap Admin Template (v4.0.1): main.js
5+
* CoreUI Boostrap Admin Template (v4.0.2): main.js
66
* Licensed under MIT (https://coreui.io/license)
77
* --------------------------------------------------------------------------
88
*/

src/js/popovers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
/**
44
* --------------------------------------------------------------------------
5-
* CoreUI Free Boostrap Admin Template (v4.0.1): popovers.js
5+
* CoreUI Free Boostrap Admin Template (v4.0.2): popovers.js
66
* Licensed under MIT (https://coreui.io/license)
77
* --------------------------------------------------------------------------
88
*/

0 commit comments

Comments
 (0)