Skip to content

Commit 558b7db

Browse files
committed
v0.13.0
1 parent fe66283 commit 558b7db

File tree

8 files changed

+66
-18
lines changed

8 files changed

+66
-18
lines changed

app/linux/packaging/com.pikatorrent.PikaTorrent.metainfo.xml

Lines changed: 26 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</developer>
77

88
<name>PikaTorrent</name>
9-
<summary>The Torrent app for the 21st century ⚡</summary>
9+
<summary>Just pick a Torrent, stream and download</summary>
1010

1111
<url type="homepage">https://www.pikatorrent.com</url>
1212
<url type="bugtracker">https://github.com/G-Ray/pikatorrent/issues</url>
@@ -24,14 +24,20 @@
2424
</supports>
2525

2626
<description>
27-
<p>An easy to use Torrent app for everyone.</p>
27+
<p>Stream and download torrents on all your devices.</p>
2828

2929
<ul>
30-
<li>A modern and clean user interface, with dark mode support</li>
31-
<li>Low cpu and memory usage</li>
30+
<li>Stream torrents, with subtitles support</li>
31+
<li>Share torrents with your friends</li>
32+
<li>Available on Windows, Linux, MacOS, Android and iOS</li>
33+
<li>A modern and
34+
clean user interface, with dark mode support</li>
3235
<li>Add tags to your torrents</li>
33-
<li>Select files to download or to pause</li>
36+
<li>Select
37+
files to download or to pause</li>
3438
<li>Browse and open files included in your torrents</li>
39+
<li>Based
40+
on Transmission for low cpu and memory usage</li>
3541
</ul>
3642
</description>
3743

@@ -53,9 +59,24 @@
5359
<caption>Mobile dark screenshot</caption>
5460
<image>https://www.pikatorrent.com/mobile-dark.png</image>
5561
</screenshot>
62+
<screenshot>
63+
<caption>Desktop player screenshot</caption>
64+
<image>https://www.pikatorrent.com/desktop-player.png</image>
65+
</screenshot>
66+
5667
</screenshots>
5768

5869
<releases>
70+
<release version="0.13.0" date="2025-05-13">
71+
<description>
72+
<ul>
73+
<li>PikaTorrent now runs in the background, with tray icon support.</li>
74+
<li>Display a notification when a download completes.</li>
75+
<li>Display a warning when network is detected as unavailable.</li>
76+
<li>Select wanted files with checkboxes</li>
77+
</ul>
78+
</description>
79+
</release>
5980
<release version="0.12.0" date="2025-04-10">
6081
<description>
6182
<ul>

app/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ publish_to: "none" # Remove this line if you wish to publish to pub.dev
1616
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
1717
# In Windows, build-name is used as the major, minor, and patch parts
1818
# of the product and file versions while build-number is used as the build suffix.
19-
version: 0.12.0+4
19+
version: 0.13.0+5
2020

2121
environment:
2222
sdk: ^3.5.3

docs/release.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
1. Increase version field in `app/pubspec.yaml`. Increase build number by `+1`.
44
1. Update `app/linux/packaging/metainfo.xml` to add a release note entry.
5-
1. Update `app/metadata` to add a release note entry and screenshots.
5+
1. Update `metadata/` to add a release note entry and screenshots for Android.
66
1. Update APP_VERSION in site/.env. Update screenshots and features.
77
1. Create commit & tag with format `vx.y.z`.
88
1. `git push && git push origin tag vx.y.z`
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
- PikaTorrent now runs in the background, with tray icon support
2+
- Display a notification when a download completes
3+
- Display a warning when network is detected as unavailable
4+
- Select wanted files with checkboxes
Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
Features:
22
- Stream torrents, with subtitles support
33
- Share torrents with your friends
4-
- Available on Windows, Linux, Android, and soon on MacOs & iOS !
4+
- Available on Windows, Linux, MacOS, Android and iOS !
55
- A modern and clean user interface, with dark mode support
66
- Add tags to your torrents
77
- Select files to download or to pause
88
- Browse and open files included in your torrents
9-
- Based on Transmission for low cpu & memory usage
10-
- Open Source software
9+
- Based on Transmission for low cpu and memory usage

site/.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
NEXT_PUBLIC_APP_VERSION=0.12.0
1+
NEXT_PUBLIC_APP_VERSION=0.13.0

site/components/DownloadLinks.tsx

Lines changed: 27 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -112,12 +112,22 @@ export const DownloadLinks = () => {
112112
MacOS
113113
</Paragraph>
114114
<Link
115-
href={`${downloadLinkPrefix}-macos-universal-experimental.app.zip`}
115+
href={`${downloadLinkPrefix}-macos.dmg`}
116+
style={{ textDecoration: "none" }}
117+
>
118+
<Button
119+
size="$3"
120+
iconAfter={Download}
121+
borderColor={"$purple9"}
122+
w="100%"
123+
>
124+
.dmg
125+
</Button>
126+
</Link>
127+
<Link
128+
href={`${downloadLinkPrefix}-macos.app.zip`}
116129
style={{ textDecoration: "none" }}
117130
>
118-
<Paragraph textAlign="center">
119-
Experimental, unsigned binary
120-
</Paragraph>
121131
<Button
122132
size="$3"
123133
iconAfter={Download}
@@ -170,7 +180,19 @@ export const DownloadLinks = () => {
170180
<Paragraph textAlign="center" fontSize={"$6"}>
171181
iOS
172182
</Paragraph>
173-
<Paragraph textAlign="center">Soon...</Paragraph>
183+
<Link
184+
href={`${downloadLinkPrefix}-ios.ipa`}
185+
style={{ textDecoration: "none" }}
186+
>
187+
<Button
188+
size="$3"
189+
iconAfter={Download}
190+
borderColor={"$purple9"}
191+
w="100%"
192+
>
193+
.ipa
194+
</Button>
195+
</Link>
174196
</YStack>
175197
</XStack>
176198

site/components/Features.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export const Features = () => {
3030
<XStack gap="$2">
3131
<MonitorSmartphone style={{ flexShrink: 0 }} />
3232
<Paragraph>
33-
Available on Windows, Linux, Android, and soon on MacOs & iOS !
33+
Available on Windows, Linux, MacOS, Android and iOS !
3434
</Paragraph>
3535
</XStack>
3636
<Separator />
@@ -58,7 +58,9 @@ export const Features = () => {
5858
<Separator />
5959
<XStack gap="$2">
6060
<Zap style={{ flexShrink: 0 }} />
61-
<Paragraph>Based on Transmission for low cpu & memory usage</Paragraph>
61+
<Paragraph>
62+
Based on Transmission for low cpu and memory usage
63+
</Paragraph>
6264
</XStack>
6365
<Separator />
6466
<XStack gap="$2">

0 commit comments

Comments
 (0)