Skip to content

Commit

Permalink
Add reqbin-zip extension
Browse files Browse the repository at this point in the history
- Merge pull request raycast#7 from rupert648/raycast-extension
- feat: cleaned up details and added icons/screenshots
- chore: vercelignore to ignore raycast
- feat: created 2 raycast commands - create and copy
- Merge pull request raycast#6 from rupert648/minor-improvements
- feat: minor improvements! mainly phone css
- Merge pull request raycast#5 from rupert648/direct-api-route-to-create
- feat: direct APi routes to get/create paste
- Merge pull request raycast#4 from rupert648/options-styling
- feat: improved styling of options mdoal
- Merge pull request raycast#3 from rupert648/pastepage-timeouts
- feat: added timeouts
- Merge pull request raycast#2 from rupert648/404
- Updated README.md and removed example router
- shitty copied to clipboard popup
- enable ssr and redirrect to 404
- Created 404 page
- Merge pull request raycast#1 from rupert648/code-cleanup
- added favicon + generalised components
- moved components out of pages as was breaking things :)
- added loading icons + moved to planetscale
- made more responsive :)
- moved options modal
- refactor: use paste instead of curl
- made pretty :)
- curl request page uses formik
- shortcuts + formik
- refactored to use prisma
- first commit
  • Loading branch information
rupert648 committed Jul 9, 2023
1 parent 74521b7 commit 9a512ea
Show file tree
Hide file tree
Showing 16 changed files with 3,838 additions and 0 deletions.
4 changes: 4 additions & 0 deletions extensions/reqbin-zip/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"root": true,
"extends": ["@raycast"]
}
10 changes: 10 additions & 0 deletions extensions/reqbin-zip/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules

# Raycast specific files
raycast-env.d.ts

# misc
.DS_Store
4 changes: 4 additions & 0 deletions extensions/reqbin-zip/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"printWidth": 120,
"singleQuote": false
}
3 changes: 3 additions & 0 deletions extensions/reqbin-zip/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Reqbin.zip Changelog

## [Initial Version] - 2023-07-06
3 changes: 3 additions & 0 deletions extensions/reqbin-zip/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Reqbin.zip

Creates a reqbin.zip paste bin from the given contents, and copies the link to the clipboard
Binary file added extensions/reqbin-zip/assets/reqbin-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added extensions/reqbin-zip/metadata/reqbin-zip-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added extensions/reqbin-zip/metadata/reqbin-zip-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 9a512ea

Please sign in to comment.