Skip to content

Commit b73a8c2

Browse files
committed
feat: add GitHub Sponsors integration
- Enable GitHub Sponsors in FUNDING.yml - Update all in-app sponsor messages to prioritize GitHub Sponsors - Add sponsor badge to README - Update support section with both GitHub Sponsors and Buy Me a Coffee options
1 parent b1885c0 commit b73a8c2

5 files changed

Lines changed: 10 additions & 9 deletions

File tree

.github/FUNDING.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
# These are supported funding model platforms for gh-manager-cli
33

44
# GitHub Sponsors (preferred platform for recurring sponsorships)
5-
# Commented out until approved by GitHub
6-
# github: wiiiimm
5+
github: wiiiimm
76

87
# Ko-fi (Buy Me Coffee alternative) - popular micro-donation platform
98
# Uncomment and add your Ko-fi username when ready:

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
88
[![Node.js Version](https://img.shields.io/node/v/gh-manager-cli.svg)](https://nodejs.org)
99
[![GitHub Stars](https://img.shields.io/github/stars/wiiiimm/gh-manager-cli.svg)](https://github.com/wiiiimm/gh-manager-cli/stargazers)
10+
[![GitHub Sponsors](https://img.shields.io/badge/Sponsor-%E2%9D%A4-pink)](https://github.com/sponsors/wiiiimm)
1011
[![Context Engineered with Claude Opus 4.1](https://img.shields.io/badge/Context%20Engineered%20with-Claude%20Opus%204.1-blue)](https://www.anthropic.com)
1112
[![Context Engineered with Codex GPT-5](https://img.shields.io/badge/Context%20Engineered%20with-Codex%20GPT--5-green)](https://openai.com)
1213

@@ -529,7 +530,8 @@ Highlights on deck:
529530

530531
If you find gh-manager-cli useful, consider supporting its development:
531532

532-
**[Buy Me a Coffee](https://buymeacoffee.com/wiiiimm)** - Support with coffee donations
533+
💖 **[GitHub Sponsors](https://github.com/sponsors/wiiiimm)** - Support directly through GitHub
534+
**[Buy Me a Coffee](https://buymeacoffee.com/wiiiimm)** - One-time coffee donations
533535

534536
Your support helps maintain and improve this project. Thank you! 🙏
535537

src/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,10 +88,10 @@ const showSponsorshipMessage = () => {
8888
console.log('\n💚 Thank you for using gh-manager-cli!\n');
8989
console.log('If this app saved you time, please consider supporting');
9090
console.log('the development of more open-source projects like this:\n');
91-
console.log(' ☕ Buy Me a Coffee: https://buymeacoffee.com/wiiiimm');
91+
console.log(' 💖 Sponsor on GitHub: https://github.com/sponsors/wiiiimm');
9292
console.log(' 🚀 Visit my site: https://wiiiimm.codes');
9393
console.log(' 💬 Leave feedback: https://github.com/wiiiimm/gh-manager-cli');
94-
console.log('\nYour support and contributions make a difference! 🙏\n');
94+
console.log('\nYour support keeps this project alive! 🙏\n');
9595
console.log('─'.repeat(60) + '\n');
9696
};
9797

src/ui/components/modals/InfoModal.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ export default function InfoModal({ repo, terminalWidth, onClose }: InfoModalPro
5353
<Box height={1}><Text> </Text></Box>
5454
<Box flexDirection="column" borderStyle="single" borderColor="yellow" paddingX={1} marginY={1}>
5555
<Text color="yellow">💚 Enjoying gh-manager-cli?</Text>
56-
<Text color="gray">Support the project at:</Text>
57-
<Text color="cyan">buymeacoffee.com/wiiiimm</Text>
56+
<Text color="gray">Sponsor on GitHub:</Text>
57+
<Text color="cyan">github.com/sponsors/wiiiimm</Text>
5858
</Box>
5959
<Text color="gray">Press Esc or I to close</Text>
6060
</Box>

src/ui/views/RepoList.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1889,7 +1889,7 @@ export default function RepoList({ token, maxVisibleRows, onLogout, viewerLogin,
18891889
<Box flexDirection="column" alignItems="center">
18901890
<Text color="yellow">💚 Thanks for using gh-manager-cli!</Text>
18911891
<Text color="gray">Your support helps craft more open-source tools</Text>
1892-
<Text color="cyan">☕ buymeacoffee.com/wiiiimm</Text>
1892+
<Text color="cyan">💖 github.com/sponsors/wiiiimm</Text>
18931893
</Box>
18941894
</Box>
18951895
</Box>
@@ -2498,7 +2498,7 @@ export default function RepoList({ token, maxVisibleRows, onLogout, viewerLogin,
24982498
{/* Line 5: Sponsorship */}
24992499
<Box width={terminalWidth} justifyContent="center" marginTop={1}>
25002500
<Text color="yellow" dimColor={modalOpen ? true : undefined}>
2501-
💚 Support the project: buymeacoffee.com/wiiiimm
2501+
💖 Sponsor on GitHub: github.com/sponsors/wiiiimm
25022502
</Text>
25032503
</Box>
25042504
</Box>

0 commit comments

Comments
 (0)