1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-21 17:34:25 +04:00

changelog update

This commit is contained in:
codecalm
2022-01-22 01:21:32 +01:00
parent 6cddaa60d5
commit 9fc3435a52
6 changed files with 170 additions and 7 deletions

74
CHANGELOG.md Normal file
View File

@@ -0,0 +1,74 @@
# Changelog
All notable changes to this project will be documented in this file.
## `1.0.0-beta` - 2021-02-17
**Initial beta release of Tabler v1.0! Lots more coming soon though 😁**
- update Bootstrap to 5.0.0-beta2
- update other dependencies.
## `1.0.0-beta2` - 2021-03-29
- update dependencies
- `li` marker fix
- page wrapper, nav fixes
- scripts optimize, remove `capture_once`
- `page-body` fixes
- layout navbar fix
- typography fix
- ribbon fix
- charts label fixes
- charts docs
## `1.0.0-beta3` - 2021-05-08
- upgrade Bootstrap to 5.0
- upgrade dependencies
- change `$border-radius-pill` variable
- badge vertical align fix
## `1.0.0-beta4` - 2021-10-24
- upgrade required node.js version to 14
- upgrade Bootstrap to 5.1
- upgrade dependencies
- fix #775 litepicker not initializing
- fix `nouislider` import in dev
## `1.0.0-beta5` - 2021-12-07
**Tabler has finally lived to see dark mode! 🌝🌚**
- **Dark mode enabled!**
- add more cursors (#947)
- fix #892 - Media queries need to be nested when negating
- update `@tabler/icons` to newest version
- move optional dependencies to peerDependencies (#924)
- move deployment to Github Actions (#934)
- table border fixes
- antialiased fix
- update `@tabler/icons` to version 1.42
- change default font to 'Inter'
- colors unify
- add `tom-select` and remove `choices.js`
## `1.0.0-beta6` - 2021-01-18
- pricing cards fix
- fix bug `fw-...`, `.fs-...` is missed (#987)
- avatar class fix
- fix bug #903 `litepicker` with date range not having correct border
- page wrapper fix
- fix #900 `is-invalid-lite` class is not working under `was-validated` form class
- update `@tabler/icons` to version 1.48
- fix #960 - Badges not honoring font sizes
- fix #959 - `node-sass` does not properly compile nested media queries
- update package dependencies to newest version

View File

@@ -99,6 +99,34 @@ gulp.task('svg-icons', (cb) => {
cb() cb()
}) })
/**
* Generate CHANGELOG.md
*/
gulp.task('changelog', (cb) => {
const content = YAML.parse(fs.readFileSync('./src/pages/_data/changelog.yml', 'utf8'))
let readme = `# Changelog
All notable changes to this project will be documented in this file.\n`
content.forEach((change) => {
readme += `\n\n## \`${change.version}\` - ${change.date}\n\n`
if(change.description) {
readme += `**${change.description}**\n\n`
}
change.changes.forEach((line) => {
readme += `- ${line}\n`
})
console.log(change.version);
})
fs.writeFileSync('CHANGELOG.md', readme)
cb()
})
/** /**
* Check unused Jekyll partials * Check unused Jekyll partials
*/ */

View File

@@ -1,6 +1,68 @@
- version: 1.0.0-beta - version: 1.0.0-beta
date: 2021-02-17 date: 2021-02-17
description: Initial release of Tabler v1.0! Lots more coming soon though 😁 description: Initial beta release of Tabler v1.0! Lots more coming soon though 😁
changes: changes:
- Updated to Bootstrap v5.0.0-beta2 - update Bootstrap to 5.0.0-beta2
- Updated other dependencies. - update other dependencies.
- version: 1.0.0-beta2
date: 2021-03-29
changes:
- update dependencies
- "`li` marker fix"
- page wrapper, nav fixes
- scripts optimize, remove `capture_once`
- "`page-body` fixes"
- layout navbar fix
- typography fix
- ribbon fix
- charts label fixes
- charts docs
- version: 1.0.0-beta3
date: 2021-05-08
changes:
- upgrade Bootstrap to 5.0
- upgrade dependencies
- change `$border-radius-pill` variable
- badge vertical align fix
- version: 1.0.0-beta4
date: 2021-10-24
changes:
- upgrade required node.js version to 14
- upgrade Bootstrap to 5.1
- upgrade dependencies
- "fix #775 litepicker not initializing"
- fix `nouislider` import in dev
- version: 1.0.0-beta5
date: 2021-12-07
description: Tabler has finally lived to see dark mode! 🌝🌚
changes:
- "**Dark mode enabled!**"
- add more cursors (#947)
- "fix #892 - Media queries need to be nested when negating"
- update `@tabler/icons` to newest version
- move optional dependencies to peerDependencies (#924)
- move deployment to Github Actions (#934)
- table border fixes
- antialiased fix
- update `@tabler/icons` to version 1.42
- change default font to 'Inter'
- colors unify
- add `tom-select` and remove `choices.js`
- version: 1.0.0-beta6
date: 2021-01-18
changes:
- pricing cards fix
- "fix bug `fw-...`, `.fs-...` is missed (#987)"
- avatar class fix
- "fix bug #903 `litepicker` with date range not having correct border"
- page wrapper fix
- "fix #900 `is-invalid-lite` class is not working under `was-validated` form class"
- update `@tabler/icons` to version 1.48
- "fix #960 - Badges not honoring font sizes"
- "fix #959 - `node-sass` does not properly compile nested media queries"
- update package dependencies to newest version

View File

@@ -12,13 +12,13 @@ layout: docs
</div> </div>
{% if version.description %} {% if version.description %}
<p>{{ version.description }}</p> <p class="strong">{{ version.description }}</p>
{% endif %} {% endif %}
{% if version.changes %} {% if version.changes %}
<ul> <ul>
{% for change in version.changes %} {% for change in version.changes %}
<li>{{ change }}</li> <li>{{ change | markdownify | replace_regex: '</p>\s+$', '' | replace_regex: '^<p>', '' }}</li>
{% endfor %} {% endfor %}
</ul> </ul>
{% endif %} {% endif %}

View File

@@ -208,7 +208,7 @@ $border-radius-lg: 8px !default;
$border-radius-pill: 100rem !default; $border-radius-pill: 100rem !default;
// Code // Code
$code-color: $primary !default; $code-color: $text-muted !default;
$code-font-size: $small-font-size !default; $code-font-size: $small-font-size !default;
$code-line-height: 1.25rem !default; $code-line-height: 1.25rem !default;

View File

@@ -9,7 +9,6 @@
font-weight: $headings-font-weight; font-weight: $headings-font-weight;
letter-spacing: .04em; letter-spacing: .04em;
vertical-align: bottom; vertical-align: bottom;
text-transform: uppercase;
@at-root a#{&} { @at-root a#{&} {
color: $white; color: $white;