Skip to content

Commit d69b78c

Browse files
committed
📝 docs: Add changelog and update save functionality in popup (main)
- Introduced a CHANGELOG.md file adhering to 'Keep a Changelog' format. - Fixed issue with save button in the popup window not saving content to Recally. - Increased package version from 0.0.3 to 0.0.4. - Added "type" field set to "bookmark" in the SaveBookmarkRequest within App.tsx.
1 parent 38a21a7 commit d69b78c

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [0.0.4] - 2025-02-09
9+
10+
### Fixed
11+
- Fixed an issue where clicking the save button in popup window did not save content to Recally

entrypoints/popup/App.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ export default function App() {
100100

101101
const request: SaveBookmarkRequest = {
102102
url: currentUrl,
103+
type: "bookmark",
103104
article,
104105
markdownContent,
105106
tags,

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "recally-clipper",
33
"description": "manifest.json description",
44
"private": true,
5-
"version": "0.0.3",
5+
"version": "0.0.4",
66
"type": "module",
77
"scripts": {
88
"lint": "biome format --write",

0 commit comments

Comments
 (0)