Skip to content
Merged
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
1 change: 0 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ jobs:
include:
- platform: windows-latest
- platform: ubuntu-22.04
- platform: macos-latest
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
Expand Down
Binary file added Screenshot 2026-06-25 225516.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "notiq",
"private": true,
"version": "0.3.0",
"version": "0.4.1",
"type": "module",
"scripts": {
"icons": "node scripts/sync-icons.mjs",
Expand Down
11 changes: 11 additions & 0 deletions scripts/sync-icons.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,17 @@ import { platform } from 'node:os'

const isLinux = platform() === 'linux'

// ── CI: committed icons are the source of truth ─────────────────────────────
// The generated icons (src-tauri/icons/**, including association.ico) are checked
// into git, but the .icon-hash / .assoc-icon-hash caches are gitignored. So on a
// fresh CI checkout every icon looks "changed" and we'd try to regenerate — which
// needs `tauri icon` plus Python+Pillow (png-to-ico.py) that the runners lack.
// Regeneration is a local dev concern: skip it on CI and build with what's committed.
if (process.env.CI) {
console.log('[sync-icons] CI detected — using committed icons, skipping regeneration')
process.exit(0)
}

// ── Helper: hash-based change detection ─────────────────────────────────────
function fileHash(path) {
return createHash('sha256').update(readFileSync(path)).digest('hex')
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "notiq"
version = "0.3.0"
version = "0.4.1"
description = "Notiq — a smart note-taking application"
authors = ["TrexoLab <trexolab@outlook.com>"]
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion 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": "Notiq",
"version": "0.3.0",
"version": "0.4.1",
"identifier": "com.trexolab.notiq",
"build": {
"beforeDevCommand": "bun run dev",
Expand Down
2 changes: 1 addition & 1 deletion src/config/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
// Web favicon is public/favicon.png (copy of logo.png)

export const APP_NAME = 'Notiq'
export const APP_VERSION = '0.3.0'
export const APP_VERSION = '0.4.1'
export const APP_DESCRIPTION = 'A smart note-taking application'
export const APP_IDENTIFIER = 'com.trexolab.notiq'

Expand Down
Loading