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: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pullread",
"version": "0.5.0",
"version": "0.5.1",
"description": "Sync Drafty bookmarks to markdown files",
"main": "src/index.ts",
"scripts": {
Expand Down
12 changes: 12 additions & 0 deletions site/releases.html
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,18 @@ <h1>What's New</h1>
<!-- Releases -->
<div class="releases">

<div class="release-card reveal" id="v0.5.1">
<div class="release-header">
<span class="release-version">0.5.1</span>
<span class="release-subtitle">"Picture Perfect"</span>
</div>
<div class="release-date">August 2026</div>
<ul>
<li>Article images are back &mdash; a bug in duplicate-image cleanup was removing the hero image at the top of articles, most visibly after using &ldquo;Fetch full content.&rdquo; Top images now render and survive a re-fetch.</li>
<li>Pull Read now opens on Explore &mdash; the sidebar highlighted &ldquo;All Items&rdquo; on launch even though the Explore home view was showing. The navigation now matches what you see.</li>
</ul>
</div>

<div class="release-card reveal" id="v0.5.0">
<div class="release-header">
<span class="release-version">0.5.0</span>
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 = "pullread"
version = "0.5.0"
version = "0.5.1"
description = "Sync articles from RSS feeds, bookmarks, and newsletters to searchable markdown files"
authors = ["PullRead"]
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": "Pull Read",
"version": "0.5.0",
"version": "0.5.1",
"identifier": "com.pullread.desktop",
"build": {
"beforeBuildCommand": "bun run scripts/embed-viewer.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/viewer-html.ts

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion viewer/03-settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -957,7 +957,7 @@ function showSettingsPage(scrollToSection) {
html += '</div>';
html += '<div style="display:flex;gap:12px;flex-wrap:wrap;padding:8px 0">';
html += '<a href="https://pullread.com" target="_blank" rel="noopener" style="font-size:13px;color:var(--link)">pullread.com</a>';
html += '<a href="#" onclick="prOpenExternal(\'https://pullread.com/releases#v\' + (window._prCurrentVersion || \'0.5.0\'));return false" style="font-size:13px;color:var(--link)">What\'s New</a>';
html += '<a href="#" onclick="prOpenExternal(\'https://pullread.com/releases#v\' + (window._prCurrentVersion || \'0.5.1\'));return false" style="font-size:13px;color:var(--link)">What\'s New</a>';
html += '<a href="/api/log" target="_blank" style="font-size:13px;color:var(--link)">View Logs</a>';
html += '<button style="font-size:13px;padding:6px 16px;background:var(--bg);color:var(--fg);border:1px solid var(--border);border-radius:6px;cursor:pointer;font-family:inherit" onclick="showTour()">Show Tour</button>';
html += '</div>';
Expand Down
Loading