Skip to content

Commit

Permalink
🔖 preparing release v1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
chrede88 committed Oct 26, 2024
1 parent d3cf207 commit f03814c
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 19 deletions.
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).

## [Unreleased]

# [1.4.0] - 2024-10-26

### Added
- Added support for Table of Content for blog posts.
Set `toc: true` in frontmatter to display the Table of Content.

- Added default `ai.txt`. The default is to disallow LLM training on anything.
Change this by adding a `./static/ai.txt` file to your repo.

### Hugo
- Bumped to v0.136.5

# [1.3.2] - 2024-10-16

### Fixed
Expand Down Expand Up @@ -134,7 +146,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
## [1.0.0] - 2023-11-25
- Initial release

[unreleased]: https://github.com/chrede88/qubt/compare/v1.3.2...HEAD
[unreleased]: https://github.com/chrede88/qubt/compare/v1.4.0...HEAD
[1.4.0]: https://github.com/chrede88/qubt/releases/compare/v1.3.2...v1.4.0
[1.3.2]: https://github.com/chrede88/qubt/releases/compare/v1.3.1...v1.3.2
[1.3.1]: https://github.com/chrede88/qubt/releases/compare/v1.3.0...v1.3.1
[1.3.0]: https://github.com/chrede88/qubt/releases/compare/v1.2.10...v1.3.0
Expand Down
14 changes: 2 additions & 12 deletions assets/css/compiled/main.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! Qubt v1.3.2 | MIT License | https://github.com/Chrede88/qubt */
/*! Qubt v1.4.0 | MIT License | https://github.com/Chrede88/qubt */

*, ::before, ::after {
--tw-border-spacing-x: 0;
Expand Down Expand Up @@ -1891,11 +1891,6 @@ video {
color: rgb(99 102 241 / var(--tw-text-opacity));
}

.hover\:text-slate-600:hover {
--tw-text-opacity: 1;
color: rgb(71 85 105 / var(--tw-text-opacity));
}

.hover\:text-slate-500:hover {
--tw-text-opacity: 1;
color: rgb(100 116 139 / var(--tw-text-opacity));
Expand Down Expand Up @@ -1967,11 +1962,6 @@ video {
}

@media (hover: hover) and (pointer: fine) {
.hover\:dark\:text-slate-300:is(.dark *):hover {
--tw-text-opacity: 1;
color: rgb(203 213 225 / var(--tw-text-opacity));
}

.hover\:dark\:text-slate-400:is(.dark *):hover {
--tw-text-opacity: 1;
color: rgb(148 163 184 / var(--tw-text-opacity));
Expand Down Expand Up @@ -2014,4 +2004,4 @@ video {
.lg\:grid-cols-2 {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
}
10 changes: 5 additions & 5 deletions assets/css/main.css
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
/*! Qubt v1.3.2 | MIT License | https://github.com/Chrede88/qubt */
/*! Qubt v1.4.0 | MIT License | https://github.com/Chrede88/qubt */

@tailwind base;
@tailwind components;
@tailwind utilities;

.link {
@apply w-10 h-10 m-1 bg-transparent transform hover:scale-125 transition ease-out duration-300;
@apply m-1 h-10 w-10 transform bg-transparent transition duration-300 ease-out hover:scale-125;
}

.link_svg {
@apply rounded-full fill-slate-700 dark:fill-slate-50
@apply rounded-full fill-slate-700 dark:fill-slate-50;
}

.toggle-btn {
@apply [&>div::before]:translate-y-0 [&>div::before]:rotate-45 [&>div::after]:translate-y-0 [&>div::after]:-rotate-45 [&>div]:bg-transparent [&>div]:rotate-[720deg]
}
@apply [&>div::after]:translate-y-0 [&>div::after]:-rotate-45 [&>div::before]:translate-y-0 [&>div::before]:rotate-45 [&>div]:rotate-[720deg] [&>div]:bg-transparent;
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Qubt",
"version": "1.3.2",
"version": "1.4.0",
"description": "Qubt blog theme for Hugo",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit f03814c

Please sign in to comment.