From fa4697781a56c565538eed465cc2d43db100d0c5 Mon Sep 17 00:00:00 2001 From: Abdulkaiz Khatri <24286590+ful1e5@users.noreply.github.com> Date: Tue, 12 Dec 2023 11:03:52 +0530 Subject: [PATCH] notice: Public downloads (cents x 3) --- README.md | 4 ++-- src/configs.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 3bf2c8c..6e8c188 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ Upon achieving my monthly sponsorship goal, the public download limit is lifted. - **Pro:** Unlimited Downloads - **Fresh SignIn:** 20 Free Downloads -- **Public Downloads:** Determined by (monthly sponsorship in cents x 10) +- **Public Downloads:** Determined by (monthly sponsorship in cents x 3) ## How to Upgrade to a "Pro" Account? @@ -40,11 +40,11 @@ To access the benefits of a "Pro" account, initiate sponsorship for [ful1e5](htt ## TODO: +- [ ] Landing page - [ ] Custom size component - [ ] Report issues with error stack when errors are generated while crafting cursor images - [ ] Download as PNGs. - [ ] Define Tailwind rules. -- [ ] Landing page - [ ] Admin Page - [ ] Docs - [ ] Write tests diff --git a/src/configs.ts b/src/configs.ts index 361f1c3..66dbfd8 100644 --- a/src/configs.ts +++ b/src/configs.ts @@ -40,6 +40,6 @@ export const DELAYS: Delays = { export const DB_SEEDS = { FRESH_SIGNUP_DOWNLOADS: 20, - DOWNLOAD_MULTIPLIER: 10, - DOWNLOADS_PER_CENTS: (cents: number) => cents * DB_SEEDS.DOWNLOAD_MULTIPLIER // 1000 public Downloads per dollar + DOWNLOAD_MULTIPLIER: 3, + DOWNLOADS_PER_CENTS: (cents: number) => cents * DB_SEEDS.DOWNLOAD_MULTIPLIER // 300 public Downloads per dollar };