Skip to content

Commit

Permalink
chore: v0.1.18
Browse files Browse the repository at this point in the history
  • Loading branch information
zhanglun committed May 26, 2024
1 parent 1807367 commit e943d78
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lettura",
"version": "0.1.17",
"version": "0.1.18",
"private": true,
"scripts": {
"dev": "vite",
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 = "lettura"
version = "0.1.17"
version = "0.1.18"
description = "Your RSS reader"
authors = ["zhanglun1410@gmail.com"]
license = ""
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"package": {
"productName": "Lettura",
"version": "0.1.17"
"version": "0.1.18"
},
"tauri": {
"allowlist": {
Expand Down
1 change: 0 additions & 1 deletion src/components/Subscribes/index.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import React, { useCallback, useEffect, useRef } from "react";
import { NavLink, useMatch, useNavigate } from "react-router-dom";
import {
RefreshCw,
Coffee,
Haze,
FolderPlus,
Expand Down
6 changes: 3 additions & 3 deletions src/layout/Local/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,20 +70,20 @@ export function LocalPage() {
afterCancel={() => {}}
trigger={
<IconButton variant="ghost" size="2" color="gray" className="text-[var(--gray-12)]">
<FolderPlus size={18} strokeWidth={1.5} />
<FolderPlus size={14} />
</IconButton>
}
/>
<Tooltip content="Update">
<IconButton
size="2"
loading={refreshing}
variant={refreshing ? "soft" : "ghost"}
variant="ghost"
onClick={startRefresh}
color="gray"
className="text-[var(--gray-12)]"
>
<RotateCw size={18} strokeWidth={1.5} />
<RotateCw size={14} />
</IconButton>
</Tooltip>
</div>
Expand Down

0 comments on commit e943d78

Please sign in to comment.