Skip to content

Commit

Permalink
feat: v1.2.0: better searchbar + clickable tags on main page + new ex…
Browse files Browse the repository at this point in the history
…amples
  • Loading branch information
TayzenDev committed Nov 26, 2024
1 parent 07d8f0a commit 1681122
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 8 deletions.
19 changes: 15 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,30 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

### Changed

### Fixed

### Removed

## 1.2.0 - 2024-11-26

### Added

- New markdown examples
- Updating dates to keep important posts on top
- Better style for footnote backrefs
- Clickable tags on the index
- Reset button for the search field

### Changed

- Updating dates to keep important posts on top
- Better style for footnote backrefs
- Better style for the search field

### Fixed

- noArticlesMessage is no more displayed when the user has no result on his "enter-triggered search", "No results" instead

### Removed

## 1.1.5 - 2024-11-24

### Fixed
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ From this template you should change some settings in the `main.ts` file.
Create a new directory in your smallweb folder, add a `main.tsx` and paste this content in it:

```tsx
import { Smallblog } from "jsr:@tayzendev/smallblog@1.1.5";
import { Smallblog } from "jsr:@tayzendev/smallblog@1.2.0";

export default new Smallblog();
```
Expand Down Expand Up @@ -187,7 +187,7 @@ From this template you should change some settings in the `main.ts` file.
Minimal `main.tsx` to quick-start a project (as shown above):

```tsx
import { Smallblog } from "jsr:@tayzendev/smallblog@1.1.5";
import { Smallblog } from "jsr:@tayzendev/smallblog@1.2.0";

export default new Smallblog();
```
Expand All @@ -196,7 +196,7 @@ A `main.tsx` with more parameters:

```tsx
import { html } from "hono/html";
import { Smallblog } from "jsr:@tayzendev/smallblog@1.1.5";
import { Smallblog } from "jsr:@tayzendev/smallblog@1.2.0";

const customBodyScript = await html`<script
defer
Expand Down
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tayzendev/smallblog",
"version": "1.1.5",
"version": "1.2.0",
"exports": "./mod.ts",
"imports": {
"@libs/xml": "jsr:@libs/xml@^6.0.0",
Expand Down

0 comments on commit 1681122

Please sign in to comment.