Skip to content
This repository was archived by the owner on Jun 15, 2026. It is now read-only.

Commit 1d5a40e

Browse files
committed
v0.2.5: fix openPath scope, make typst a hard dependency
opener:allow-open-path now has a wildcard path scope so the PDF viewer actually opens after export. typst moved from optdepends to depends.
1 parent a989306 commit 1d5a40e

4 files changed

Lines changed: 9 additions & 6 deletions

File tree

PKGBUILD

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# Maintainer: Omi <pprrottonn@gmail.com>
22
pkgname=qnote
3-
pkgver=0.2.4
3+
pkgver=0.2.5
44
pkgrel=1
55
pkgdesc="Minimal Tauri desktop note editor with Markdown support, PDF export, OCR, version history"
66
arch=('x86_64')
77
url="https://github.com/Omibranch/qnote"
88
license=('MIT')
99
depends=('gtk3' 'webkit2gtk-4.1' 'xdg-utils'
10-
'tesseract' 'tesseract-data-eng' 'tesseract-data-rus')
11-
optdepends=('typst: PDF export')
10+
'tesseract' 'tesseract-data-eng' 'tesseract-data-rus'
11+
'typst')
1212
source=("${pkgname}-${pkgver}::https://github.com/Omibranch/qnote/releases/download/v${pkgver}/qnote-linux-x86_64")
1313
sha256sums=('SKIP')
1414

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 = "qnote"
3-
version = "0.2.4"
3+
version = "0.2.5"
44
description = "A minimal, beautiful notepad for Arch Linux"
55
authors = ["Omi"]
66
edition = "2021"

src-tauri/capabilities/default.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@
66
"permissions": [
77
"core:default",
88
"opener:default",
9-
"opener:allow-open-path",
9+
{
10+
"identifier": "opener:allow-open-path",
11+
"allow": [{ "path": "**" }]
12+
},
1013
"dialog:default",
1114
"dialog:allow-open",
1215
"dialog:allow-save"

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://schema.tauri.app/config/2",
33
"productName": "qnote",
4-
"version": "0.2.4",
4+
"version": "0.2.5",
55
"identifier": "com.suicore.qnote",
66
"build": {
77
"beforeDevCommand": "pnpm dev",

0 commit comments

Comments
 (0)