You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+47-22Lines changed: 47 additions & 22 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,29 +2,54 @@
2
2
3
3
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
5
-
###0.2.1 (2025-04-17)
5
+
## 0.3.1 (2025-04-20)
6
6
7
+
### Features
8
+
9
+
* build(deps-dev): bump typescript from 5.6.3 to 5.8.3 by @dependabot in https://github.com/devbyray/circle-camera/pull/4
10
+
* Fix/release action by @devbyray in https://github.com/devbyray/circle-camera/pull/21
11
+
* Fix/release pipeline by @devbyray in https://github.com/devbyray/circle-camera/pull/22
12
+
* Docs/v0.3.1 update by @devbyray in https://github.com/devbyray/circle-camera/pull/23
13
+
* Feature/improve update and signing by @devbyray in https://github.com/devbyray/circle-camera/pull/24
*[#6](https://github.com/devbyray/circle-camera/issues/6) add .env.example for environment variable configuration and update .gitignore to include .env file ([8df4497](https://github.com/devbyray/circle-camera/commit/8df44971c15c050f6125d3c5854ff60e3a94bb80))
11
-
*[#6](https://github.com/devbyray/circle-camera/issues/6) add GitHub Actions workflow for automated build and release process ([f4f1fff](https://github.com/devbyray/circle-camera/commit/f4f1fff2e1215ff31ec079d0f397f23a6662a474))
12
-
*[#6](https://github.com/devbyray/circle-camera/issues/6) add update overlay component and integrate update handling in WebcamContainer ([dd57510](https://github.com/devbyray/circle-camera/commit/dd57510c819fc39f2a47011ce29038bc5add3dcb))
13
-
*[#6](https://github.com/devbyray/circle-camera/issues/6) enhance UpdateChecker component with simulated update version generation and improved TypeScript typing ([ea18f34](https://github.com/devbyray/circle-camera/commit/ea18f340551b9bc0252be39f541bdf6a697415a8))
14
-
*[#6](https://github.com/devbyray/circle-camera/issues/6) implemented basic update meganism with Tauri ([5e32c82](https://github.com/devbyray/circle-camera/commit/5e32c82de3674d7002ba18921ede229e68d2b84f))
15
-
* add window drag functionality and close command integration ([5b47e1e](https://github.com/devbyray/circle-camera/commit/5b47e1e5b1a28cd3371b41f68cb8cdd9484eb5e4))
16
-
* enhance documentation and setup instructions for Windows and MacOS; add Product Hunt links and recommendations ([d934943](https://github.com/devbyray/circle-camera/commit/d934943acf5bff6251dfb79d8f1db53a00b4d20c))
17
-
* enhance GitHub Actions workflow with Rust toolchain installation and caching for PNPM ([a301773](https://github.com/devbyray/circle-camera/commit/a301773cb6b6df010d41c904d75b4812ff553191))
18
-
* enhance window drag functionality and update permissions in configuration ([ee8bec2](https://github.com/devbyray/circle-camera/commit/ee8bec2dd24e707ea8a01d98220497ce65326d89))
19
-
* initialize Circle Camera Tauri application with camera access ([bf3e2cf](https://github.com/devbyray/circle-camera/commit/bf3e2cfcaed5bc9bf966fc01d3a74508ceb584a4))
20
-
* initialize Circle Camera Tauri application with camera functionality ([f46adb5](https://github.com/devbyray/circle-camera/commit/f46adb57e8eafeb646af097ba2394ea24e696da5))
21
-
* remove Windows build steps and assets from release workflow as Windows is not officially supported ([5123e92](https://github.com/devbyray/circle-camera/commit/5123e9247a032e440eda2878967ab6505fcfcc9c))
22
-
* update .gitignore to include installers directory and enhance README with installation and development instructions ([6e2c996](https://github.com/devbyray/circle-camera/commit/6e2c9965651d965be47e4fbc36b348147ff8cf85))
23
-
* update download section with version 0.2.0 and new DMG link ([#9](https://github.com/devbyray/circle-camera/issues/9)) ([433bd74](https://github.com/devbyray/circle-camera/commit/433bd74afa60cf26e53cf4e48462ccbaeb0e7c85))
24
-
* update license to EUPL and add Vercel analytics integration ([#1](https://github.com/devbyray/circle-camera/issues/1)) ([ce24ab0](https://github.com/devbyray/circle-camera/commit/ce24ab055054c266d6e6cf8fe0e7b693537e1052))
25
-
26
-
27
-
### Bug Fixes
28
-
29
-
*[#6](https://github.com/devbyray/circle-camera/issues/6) dynamically determine development mode for update simulation ([5c9837a](https://github.com/devbyray/circle-camera/commit/5c9837ac4f057c74438f40717a14f8669ed3d54e))
30
-
* correct image path in features documentation ([5ee911d](https://github.com/devbyray/circle-camera/commit/5ee911d46b75b4eb924da1eda8f7cd4990cf4f5f))
37
+
* update download section with version 0.2.0 and new DMG link by @devbyray in https://github.com/devbyray/circle-camera/pull/9
38
+
39
+
* Docs/update v0.2.0 download by @devbyray in https://github.com/devbyray/circle-camera/pull/10
# Script to update CHANGELOG.md with the latest GitHub releases
4
+
# Usage: ./scripts/update-changelog.sh
5
+
6
+
set -e
7
+
8
+
# Repository information
9
+
REPO_OWNER="devbyray"
10
+
REPO_NAME="circle-camera"
11
+
12
+
# File paths
13
+
CHANGELOG_FILE="CHANGELOG.md"
14
+
TEMP_FILE="/tmp/changelog_temp.md"
15
+
16
+
echo"Fetching latest releases from GitHub..."
17
+
18
+
# Get all releases from GitHub in a more detailed format that's easier to parse
19
+
LATEST_RELEASES=$(gh release list --repo ${REPO_OWNER}/${REPO_NAME} --limit 10 --json tagName,publishedAt,name,isLatest)
20
+
21
+
if [ $?-ne 0 ];then
22
+
echo"Error: Failed to fetch releases from GitHub. Make sure you're authenticated with 'gh auth login'."
23
+
exit 1
24
+
fi
25
+
26
+
# Create the header of the CHANGELOG
27
+
cat >$TEMP_FILE<<EOF
28
+
# Changelog
29
+
30
+
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
31
+
32
+
EOF
33
+
34
+
# Sort releases by publishedAt in descending order (newest first)
0 commit comments