Skip to content

Commit

Permalink
feat: Add two new types of links & use semantic versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
GabsEdits committed Apr 30, 2024
1 parent fb09ccd commit edb052c
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@

- Migrate all `pixel` values to `rem` values for better accessibility

- Add two new types of links (`external` and `internal`) with different icons at the end of the link

## 1.3.3 (2024-04-27)

### Feature(s)
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@ You can check the next steps by looking at the [Guide](https://aplos.gxbs.me/gui

Now that Aplós is an NPM Package, a release cycle is required. There is a new version every Saturday at 04:00 GMT for regular small updates (if there are changes), and for more critical updates every time there is a need.

### Versioning

Aplós uses [Semantic Versioning](https://semver.org/), so you can understand the changes by looking at the version number (using the `major.minor.patch` format).

It might be possible that the pre-release versions start as a patch version and end up becoming a minor version (e.g: `2.1.3-1` -> `2.2.0-2`).

## Thanks ❤ & Credits️

- [Duckquill](https://daudix.codeberg.page/duckquill), from where I got inspired to create this project (and many ideas are from there)
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.3.4-2",
"version": "1.3.4-3",
"description": "A sleek, contemporary, and purposefully designed VitePress theme",
"main": "index.ts",
"keywords": [
Expand Down
14 changes: 14 additions & 0 deletions styles/common.scss
Original file line number Diff line number Diff line change
Expand Up @@ -393,4 +393,18 @@ button {

abbr {
cursor: help;
}

.external-link a {
&::after {
content: "";
font-size: inherit;
}
}

.internal-link a {
&::after {
content: "";
font-size: 0.75rem;
}
}

0 comments on commit edb052c

Please sign in to comment.