movizone 1.1.1 → 1.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +10 -0
  2. package/index.ts +14 -0
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -176,6 +176,16 @@ Filter by genre and sort order, with pagination:
176
176
 
177
177
  - [Bun](https://bun.sh) v1.0+ (or Node.js 18+ via npx)
178
178
 
179
+ ## Disclaimer
180
+
181
+ > **This is a hobby project built for educational and informational purposes only.**
182
+ >
183
+ > The developers of Movizone do not host, store, distribute, or endorse any copyrighted content. This tool interfaces with publicly available third-party APIs; the developers have no control over the content indexed by those services.
184
+ >
185
+ > Torrent magnet links may point to copyrighted material. Downloading copyrighted content without proper authorization may be illegal in your jurisdiction. **You are solely responsible** for ensuring that your use of this tool complies with all applicable laws and regulations.
186
+ >
187
+ > This project is not intended to facilitate or encourage copyright infringement. The developers assume no liability for how this tool is used. Use at your own risk.
188
+
179
189
  ## License
180
190
 
181
191
  MIT
package/index.ts CHANGED
@@ -28,6 +28,13 @@ function renderHeader(): string {
28
28
  });
29
29
  }
30
30
 
31
+ const DISCLAIMER = chalk.yellow("Disclaimer: ") + chalk.dim(
32
+ "This is a hobby project for educational purposes only. " +
33
+ "The developers do not host, distribute, or endorse any copyrighted content. " +
34
+ "Downloading copyrighted material without authorization may be illegal in your jurisdiction. " +
35
+ "You are solely responsible for ensuring your use complies with applicable laws."
36
+ );
37
+
31
38
  function stripAnsi(str: string): string {
32
39
  return str.replace(/\x1b\[[0-9;]*m/g, "");
33
40
  }
@@ -527,6 +534,7 @@ async function downloadTorrent(magnet: string, movieTitle: string, torrentInfo?:
527
534
  padding: { top: 0, bottom: 0, left: 1, right: 1 },
528
535
  }));
529
536
 
537
+ console.log(chalk.yellow(" Note: ") + chalk.dim("Ensure you have the right to download this content in your jurisdiction."));
530
538
  downloadManager.startDownload(magnet, movieTitle, torrentInfo);
531
539
  console.log(chalk.green("\n Download started in background!"));
532
540
  console.log(chalk.dim(" Check progress from the Downloads menu.\n"));
@@ -1077,6 +1085,12 @@ async function main(): Promise<void> {
1077
1085
  console.log();
1078
1086
  console.log(renderHeader());
1079
1087
  console.log(chalk.dim(` Downloads: ${DOWNLOAD_DIR}`));
1088
+ console.log(boxen(DISCLAIMER, {
1089
+ borderStyle: "round",
1090
+ borderColor: "yellow",
1091
+ dimBorder: true,
1092
+ padding: { top: 0, bottom: 0, left: 1, right: 1 },
1093
+ }));
1080
1094
  console.log();
1081
1095
 
1082
1096
  let running = true;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "movizone",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "Movie torrent explorer CLI with fuzzy search and in-terminal downloads",
5
5
  "type": "module",
6
6
  "bin": {