Skip to content

Commit

Permalink
Merge #10: #9 The downloaded torrent filename is the torrent title in…
Browse files Browse the repository at this point in the history
…stead of the original torrent file name

3e28d76 feat: release v0.3.0 (MMelchor)
f6dd423 feat: [#9] the downloaded torrent filename is the title instead of the name (MMelchor)

Pull request description:

  Resolves #9

ACKs for top commit:
  josecelano:
    ACK 3e28d76

Tree-SHA512: 36c0cfb8387d97bc0dd3b9a62f19756bdfe99cabe6c14fbbf60ab2e6d6a5c96d1f641c28c0584a41a1ed4600bbefdf324fbcc3c0134155d47992a6ef1e729264
  • Loading branch information
josecelano committed Sep 4, 2023
2 parents 3a345ae + 3e28d76 commit 7241783
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "torrust-index-types-lib",
"version": "0.2.0",
"version": "0.3.0",
"description": "Contains common types for the Torrust project.",
"repository": "https://github.com/torrust/torrust-index-types-lib",
"license" : "SEE LICENSE IN COPYRIGHT",
Expand Down
2 changes: 2 additions & 0 deletions src/types/torrent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ export type TorrentResponse = {
trackers: Array<string>
magnet_link: string
tags: Array<TorrentTag>
name: string
}

export type TorrentListing = {
Expand All @@ -29,6 +30,7 @@ export type TorrentListing = {
file_size: number
leechers: number
seeders: number
name: string
}

export type TorrentFile = {
Expand Down

0 comments on commit 7241783

Please sign in to comment.