Skip to content

Commit

Permalink
release: 1.4.1
Browse files Browse the repository at this point in the history
Critical Release
  • Loading branch information
GabsEdits committed May 5, 2024
1 parent 8f50a6a commit 8f77c45
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
## 1.4.1 (unreleased)
## 1.4.1 (2024-05-05)

> This release is important to fix the build process of the project, so update as soon as possible.
### Fix(es)

- Not building because of `MastodonComments` component
- Disable ActivityPub comments (for now, till I find a fix for the errors on the build process)

### Work in Progress Element(s)

- A full rework of how ActivityPub comments are handled (to avoid errors on build)

## 1.4.0 (2024-05-04)

Expand Down
6 changes: 3 additions & 3 deletions components/BlogFooter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@
JavaScript.</small
></noscript
>
<MastodonComments
<!-- <MastodonComments
v-if="frontmatter.comments === 'activitypub'"
></MastodonComments>
></MastodonComments> -->
<Giscus v-if="frontmatter.comments === 'giscus'"></Giscus>
<br />
<hr />
Expand Down Expand Up @@ -58,7 +58,7 @@
<script setup lang="ts">
import { useData } from "vitepress";
import Giscus from "./GiscusComments.vue";
import MastodonComments from "./MastodonComments.vue";
/* import MastodonComments from "./MastodonComments.vue"; */
const { frontmatter } = useData();
</script>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aplos",
"version": "1.4.1-7",
"version": "1.4.1",
"type": "module",
"description": "A sleek, contemporary, and purposefully designed VitePress theme",
"main": "index.ts",
Expand Down

0 comments on commit 8f77c45

Please sign in to comment.