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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ All notable changes to SearchMob Desktop are documented here. The version scheme

## [Unreleased]

## 26.06.07 — 2026-06-19

### Fixed
- **Searching for a site or tool by name now keeps its official page on the first screen.** Two
ranking steps could bury the official site even after it had been ranked first: the freshness
Expand Down
7 changes: 5 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@ dependencies = [
"uvicorn[standard]>=0.34",
"typer>=0.15",
"rich>=14",
"cryptography>=45",
# Upper-bounded for the macOS universal2 package: cryptography 49.0.0 ships no x86_64 macOS
# wheel, which breaks Briefcase's Intel slice (the lock pins 48.0.0). Lift the cap once 49+
# publishes x86_64 macOS wheels (or the macOS build drops the Intel slice).
"cryptography>=45,<49",
"argon2-cffi>=24",
"platformdirs>=4",
"keyring>=25",
Expand Down Expand Up @@ -109,7 +112,7 @@ follow_imports = "skip"
[tool.briefcase]
project_name = "SearchMob Desktop"
bundle = "com.flintwave"
version = "26.06.06"
version = "26.06.07"
url = "https://github.com/FlintWave/SearchMob-Desktop"
author = "FlintWave"
author_email = "flintwave@tuta.com"
Expand Down
2 changes: 1 addition & 1 deletion src/searchmob_desktop/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
# Ubuntu-style scheme matching the Android app: YY.MM.VV (two-digit year,
# month, and per-month build). First desktop release is 26.05.00. Bump
# manually each release; hatchling reads __version__ from this file.
__version__ = "26.06.06"
__version__ = "26.06.07"