Skip to content

Commit 7814d9a

Browse files
committed
fix: add updater permissions and bump to v0.2.3
- Add updater:default and process:allow-restart capabilities - Sync version to 0.2.3 across all config files - Remove empty tagName/releaseName from CI to prevent release conflicts - Add version marker in UI for update verification
1 parent df3c4e0 commit 7814d9a

6 files changed

Lines changed: 7 additions & 10 deletions

File tree

.github/workflows/release.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -82,11 +82,6 @@ jobs:
8282
TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY }}
8383
TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY_PASSWORD }}
8484
with:
85-
tagName: ""
86-
releaseName: ""
87-
releaseBody: ""
88-
releaseDraft: false
89-
prerelease: false
9085
args: --target ${{ matrix.target }}
9186

9287
- name: Upload signature artifact (Windows)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "doctorfill",
3-
"version": "0.2.0",
3+
"version": "0.2.3",
44
"description": "Remplissage intelligent de formulaires PDF medicaux via RAG + LLM",
55
"private": true,
66
"scripts": {

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "doctorfill"
3-
version = "0.1.0"
3+
version = "0.2.3"
44
description = "DoctorFill - Remplissage intelligent de formulaires PDF medicaux"
55
authors = ["DoctorFill"]
66
edition = "2021"

src-tauri/capabilities/default.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
"sidecar": true
1919
}
2020
]
21-
}
21+
},
22+
"updater:default",
23+
"process:allow-restart"
2224
]
2325
}

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://raw.githubusercontent.com/nicegui/tauri-v2/main/tauri.conf.schema.json",
33
"productName": "DoctorFill",
4-
"version": "0.2.2",
4+
"version": "0.2.3",
55
"identifier": "dev.doctorfill.desktop",
66
"build": {
77
"devUrl": "http://localhost:8000",

src/web/static/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -673,7 +673,7 @@
673673
<img src="icon.png" alt="DoctorFill">
674674
</div>
675675
<h1>DoctorFill</h1>
676-
<p>Configuration du fournisseur IA</p>
676+
<p>Configuration du fournisseur IA (v0.2.3)</p>
677677
</div>
678678
<div class="card-body">
679679

0 commit comments

Comments
 (0)