Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions extensions/morse-code-reader/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules

# Raycast specific files
raycast-env.d.ts
.raycast-swift-build
.swiftpm
compiled_raycast_swift
compiled_raycast_rust

# misc
.DS_Store
4 changes: 4 additions & 0 deletions extensions/morse-code-reader/.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/morse-code-reader/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Learning Changelog

## [Initial Version] - {PR_MERGE_DATE}
Comment thread
arefur-rahman marked this conversation as resolved.
Outdated
52 changes: 52 additions & 0 deletions extensions/morse-code-reader/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
# 📟 Morse Code Reader

### *The sleekest way to transmit and decode secrets in Raycast.*

![Morse Code Banner](https://img.shields.io/badge/Raycast-Extension-FF605C?style=for-the-badge&logo=raycast)
![License](https://img.shields.io/badge/License-MIT-blue?style=for-the-badge)

---

## ✨ Why You'll Love It

The **Morse Code Reader** isn't just a translator—it's a smart companion for all your telegraphic needs. Whether you're decoding a mystery or sending one, this extension makes it effortless and stylish.

### 🚀 Smart Features
* **🖱️ Auto-Pickup**: Instantly grabs any text you've highlighted in your active window. No more copy-pasting!
* **🧠 Intelligence**: Automatically detects if your text is "Regular Human" or "Morse Code" and sets the mode for you.
* **🌐 Character Support**: Supports Letters, Numbers, and a huge range of special characters (`@`, `!`, `$`, `&`, etc.).
* **📋 One-Tap Copy**: Hit `Enter` to instantly copy your result to the clipboard with a beautiful success toast.

---

## 🛠️ How to Use

1. **Select** some text or Morse code anywhere on your Mac.
2. **Trigger** Raycast and search for `Morse Code Reader`.
3. **Vibe** with the result! It's already converted and ready to copy.

---

## 🎨 Under the Hood

Built with love using:
- [Raycast API](https://developers.raycast.com/)
- React & TypeScript
- A pinch of ✨ magic ✨

---

## 👤 Author

**md_arefur_rahman_khan**
*Learning Raycast extension development, one dot at a time.*

---

## 📄 License

This project is licensed under the MIT License.

---

> *Sent from my telegraph...* 📡 .--. . .- -.-. .
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions extensions/morse-code-reader/eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
const { defineConfig } = require("eslint/config");
const raycastConfig = require("@raycast/eslint-config");

module.exports = defineConfig([
...raycastConfig,
]);
Loading
Loading