Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jaywcjlove committed Mar 23, 2024
0 parents commit 81a3985
Show file tree
Hide file tree
Showing 9 changed files with 120 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
custom: https://jaywcjlove.github.io/#/sponsor
53 changes: 53 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
name: CI/CD
on:
push:
branches:
- main

jobs:
build-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: 'https://registry.npmjs.org'

- name: Create idoc config.
run: |
cat > idoc.yml << EOF
site: "RegexMate"
description: RegexMate is a beautifully designed regex app built exclusively for macOS. With a clean and intuitive interface, it empowers you to craft and test regular expressions with ease.
keywords: regex,expression,pattern matching,developer tools,productivity
favicon: assets/logo.png
logo: ./assets/logo.png
openSource: https://github.com/jaywcjlove/regex-mate
tocs: false
element:
wrapper: style=max-width:720px;
menus:
Home: index.html
Apps:
url: https://wangchujiang.com/#/app
target: __blank
About:
url: https://wangchujiang.com/#/about
target: __blank
footer: |
<a href="https://wangchujiang.com/#/app" target="_blank">App</a> •
<a href="https://wangchujiang.com/#/projects" target="_blank">Projects</a> •
<a href="https://wangchujiang.com/#/sponsor" target="_blank">Sponsor</a> •
<a href="https://wangchujiang.com/#/app" target="_blank">More Apps</a><br /><br />
Generated by <a href="https://github.com/jaywcjlove/idoc" target="_blank">idoc</a> v{{idocVersion}}
EOF
- run: npm install idoc@1 -g
- run: idoc

- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
commit_message: ${{ github.event.head_commit.message }}
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist
19 changes: 19 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
dist

.DS_Store
.cache
.vscode
.idea

*.bak
*.tem
*.temp
#.swp
*.*~
~*.*

# IDEA
*.iml
*.ipr
*.iws
.idea/
47 changes: 47 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
<div align="center">
<br />
<br />
<img src="./assets/logo.png" alt="DevHub LOGO" width="160" height="160">
<p>
<a href="https://apps.apple.com/app/devhub/id6479819388">AppStore</a> •
<a href="https://wangchujiang.com/#/contact">Contact & Support</a>
</p>
<h1>RegexMate</h1>
<!--rehype:style=border: 0;-->
<p>
<a target="_blank" href="https://apps.apple.com/app/devhub/id6479819388" title="DevHub AppStore"><img alt="DevHub AppStore" src="https://tools.applemediaservices.com/api/badges/download-on-the-mac-app-store/black/en-us?size=250x83&amp;releaseDate=1705968000" height="51">
</a>
</p>
</div>

RegexMate is a beautifully designed regex app built exclusively for macOS. With a clean and intuitive interface, it empowers you to craft and test regular expressions with ease.

![DevHub screenshots-1](./assets/screenshots-1.png)

### Key Features:

### Minimalist UI

![DevHub screenshots-2](./assets/screenshots-2.png)

Forget buttons and menus. Simply type your pattern, test your expression, and see the results instantly.

### Reference Table

![DevHub screenshots-3](./assets/screenshots-3.png)

An always-available reference guide with example tutorials in both English and Chinese. Never forget regex syntax again!

### Live Preview

See your results update as you type. Input your pattern and watch the results, modify and test your expression to check its validity.

### Expression Library

Save your frequently used expressions for quick access and reference at any time.

### Light & Dark Mode

![DevHub screenshots-4](./assets/screenshots-3.png)

Love the dark aesthetic? RegexMate has you covered. But if you're craving a fresh look, switch to Light mode anytime.
Binary file added assets/logo.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 assets/screenshots-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 assets/screenshots-2.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 assets/screenshots-3.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 assets/screenshots-4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 81a3985

Please sign in to comment.