Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.9.1"
".": "0.10.0"
}
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

All notable changes to Recrest are documented here. Format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/); versioning follows [SemVer](https://semver.org/spec/v2.0.0.html).

## [0.10.0](https://github.com/SoftVentures/Recrest/compare/recrest-v0.9.1...recrest-v0.10.0) (2026-06-11)


### Features

* **landing:** Enhanced live demonstration & landing page overhaul ([a4c03c7](https://github.com/SoftVentures/Recrest/commit/a4c03c79ef362676094b29992d74a68d40d8db80))
* **landing:** privacy, accessibility & imprint legal compliance ([848d855](https://github.com/SoftVentures/Recrest/commit/848d85501d8cf280a004cb2361ee162ef6bbb3b5))

## [0.9.1] — 2026-06-10

Patch release on top of `0.9.0`: fixes a Windows-only regression in the packaged build and finishes the Windows installer branding.
Expand Down
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@recrest/app",
"version": "0.9.1",
"version": "0.10.0",
"private": true,
"type": "module",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion app/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "recrest"
version = "0.9.1" # x-release-please-version
version = "0.10.0" # x-release-please-version
description = "Recrest — A lightweight developer dashboard"
authors = ["SoftVentures"]
edition = "2021"
Expand Down
35 changes: 27 additions & 8 deletions app/src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "Recrest",
"version": "0.9.1",
"version": "0.10.0",
"identifier": "eu.softventures.recrest",
"build": {
"beforeDevCommand": "yarn dev",
Expand Down Expand Up @@ -34,13 +34,17 @@
"plugins": {
"deep-link": {
"desktop": {
"schemes": ["recrest"]
"schemes": [
"recrest"
]
}
},
"updater": {
"active": true,
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDRCQjM4QkRDQUNBQzc3N0IKUldSN2Q2eXMzSXV6UzA5dVFUZDhaWWl3UGR4TTh6YzFMWEltcXdPbDlsMllLL3dUcXlMMFo1NVoK",
"endpoints": ["https://github.com/SoftVentures/Recrest/releases/latest/download/latest.json"],
"endpoints": [
"https://github.com/SoftVentures/Recrest/releases/latest/download/latest.json"
],
"dialog": false
}
},
Expand All @@ -63,7 +67,10 @@
"windows": {
"nsis": {
"displayLanguageSelector": true,
"languages": ["English", "German"],
"languages": [
"English",
"German"
],
"installerIcon": "icons/windows/icon.ico",
"headerImage": "installer-assets/build/nsis-header.bmp",
"sidebarImage": "installer-assets/build/nsis-sidebar.bmp"
Expand All @@ -76,15 +83,27 @@
"macOS": {
"minimumSystemVersion": "10.15",
"dmg": {
"appPosition": { "x": 180, "y": 170 },
"applicationFolderPosition": { "x": 480, "y": 170 },
"windowSize": { "width": 660, "height": 400 },
"appPosition": {
"x": 180,
"y": 170
},
"applicationFolderPosition": {
"x": 480,
"y": 170
},
"windowSize": {
"width": 660,
"height": 400
},
"background": "installer-assets/build/dmg-background.png"
}
},
"linux": {
"deb": {
"depends": ["libwebkit2gtk-4.1-0", "libgtk-3-0"],
"depends": [
"libwebkit2gtk-4.1-0",
"libgtk-3-0"
],
"section": "devel",
"files": {
"/usr/bin/recrest-launcher": "resources/recrest-launcher.sh",
Expand Down
2 changes: 1 addition & 1 deletion landingpage/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@recrest/landingpage",
"version": "0.9.1",
"version": "0.10.0",
"private": true,
"type": "module",
"description": "Recrest — marketing landingpage, deployed to GitHub Pages.",
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": "recrest",
"version": "0.9.1",
"version": "0.10.0",
"private": true,
"description": "Recrest — A lightweight developer dashboard built with Tauri.",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion shared/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@recrest/shared",
"version": "0.9.1",
"version": "0.10.0",
"private": true,
"type": "module",
"main": "dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion tests/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@recrest/tests",
"version": "0.9.1",
"version": "0.10.0",
"private": true,
"type": "module",
"scripts": {
Expand Down