s-alad / toofake

View friends BeReals without posting or them knowing. Post custom BeReal's whenever. Add custom realmojis
https://toofake.lol/
MIT License
152 stars 33 forks source link

Added exporting all memories as .zip #39

Closed rian-kh closed 1 year ago

rian-kh commented 1 year ago

All changes are seen on the /memories page.

Lets you save all memories into a zip, and you can choose to have each memory as separate primary/secondary images or as one merged "BeReal-style" image.

image image

New packages needed (run npm install in new/client after cloning):

Some notes:

Bugs:

image
vercel[bot] commented 1 year ago

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
toofake ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jul 1, 2023 6:13pm
s-alad commented 1 year ago

Will take a look soon! Thank you for the PR

s-alad commented 1 year ago

@rian-kh Do these lines fail without a Proxy and just a normal get request?

let primary = await fetch("https://api.codetabs.com/v1/proxy?quest=" + memory.primary).then((result) => result.blob()) let secondary = await fetch("https://api.codetabs.com/v1/proxy?quest=" + memory.secondary).then((result) => result.blob())

rian-kh commented 1 year ago

It fails for me, just throws the standard CORS error on Google Chrome, macOS:

image image

After using the proxy, it works fine.

s-alad commented 1 year ago

It fails for me, just throws the standard CORS error on Google Chrome, macOS: image image

After using the proxy, it works fine.

Can you try it with: https://toofake-cors-proxy-4fefd1186131.herokuapp.com/

rian-kh commented 1 year ago

Works perfectly!

image image
s-alad commented 1 year ago

Works perfectly! image image

Ty, will merge when I get back.