diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index a253ac8..650e498 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -2,4 +2,4 @@ github: [eamodio] patreon: eamodio -custom: https://gitlens.amod.io/#support-gitlens +custom: https://gitlens.amod.io/#sponsor diff --git a/BACKERS.md b/BACKERS.md index e825430..81afbce 100644 --- a/BACKERS.md +++ b/BACKERS.md @@ -1,21 +1,11 @@

Sponsors & Backers

-To my incredible backers — thank you so much for your contributions. I am truly humbled by your generosity and support. Please know that your support plays an important role in helping me realize GitLens' potential in making developer's lives easier. - -If you'd like to join in supporting GitLens, please consider: - -- [Become a backer or sponsor on Patreon](https://www.patreon.com/eamodio) -- [PayPal donations](https://www.paypal.me/eamodio) -- [Cash App donations](https://www.paypal.me/eamodio) +💖 To my incredible sponsors — thank you so much for your contributions. I am truly humbled by your generosity and support. If you'd like to join in sponsoring GitLens, please [click here](https://gitlens.amod.io/#sponsor).

Gold Sponsors ($100+)

- CodeStream Logo -

- -

- Crésus Logo + CodeStream — The World's Best Code Discussion Tool

Silver Sponsors ($50+)

diff --git a/README.md b/README.md index 70218c1..faf23b9 100644 --- a/README.md +++ b/README.md @@ -11,18 +11,14 @@ > GitLens **supercharges** the Git capabilities built into Visual Studio Code. It helps you to **visualize code authorship** at a glance via Git blame annotations and code lens, **seamlessly navigate and explore** Git repositories, **gain valuable insights** via powerful comparison commands, and so much more. -## Support GitLens +## Sponsor GitLens -| Sponsored by | -| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -|

[![](https://alt-images.codestream.com/codestream_logo_gitlens_vscmarket.png)](https://codestream.com/?utm_source=vscmarket&utm_medium=banner&utm_campaign=gitlens 'Try CodeStream')
Discuss, review, and share code with your team in VS Code. Links discussions about code to your code. Integrates w/ Slack, Jira, Trello, and Live Share. **[Try it free](https://codestream.com/?utm_source=vscmarket&utm_medium=banner&utm_campaign=gitlens 'Try CodeStream')**

| - -While GitLens is generously offered to everyone free of charge, if you find it useful, please consider [**supporting**](https://gitlens.amod.io/#support-gitlens) it. - -- [**Become a Sponsor**](https://www.patreon.com/eamodio 'Become a sponsor on Patreon') — join the growing group of generous [backers](https://github.com/eamodio/vscode-gitlens/blob/master/BACKERS.md) -- [**Donate via PayPal**](https://www.paypal.me/eamodio 'Donate via PayPal') or [**Donate via Cash App**](https://cash.me/$eamodio 'Donate via Cash App') +

Sponsored by

+

+ CodeStream — The World's Best Code Discussion Tool +

-Also please [write a review](https://marketplace.visualstudio.com/items?itemName=eamodio.gitlens#review-details 'Write a review'), [star me on GitHub](https://github.com/eamodio/vscode-gitlens 'Star me on GitHub'), and [follow me on Twitter](https://twitter.com/eamodio 'Follow me on Twitter') +While GitLens is generously offered to everyone free of charge, if you find it useful, please consider [**sponsoring**](https://gitlens.amod.io/#sponsor) it. Also please [write a review](https://marketplace.visualstudio.com/items?itemName=eamodio.gitlens#review-details 'Write a review'), [star me on GitHub](https://github.com/eamodio/vscode-gitlens 'Star me on GitHub'), and [follow me on Twitter](https://twitter.com/eamodio 'Follow me on Twitter') # What's new in GitLens 10 diff --git a/package.json b/package.json index 54cf5f4..3f36988 100644 --- a/package.json +++ b/package.json @@ -2069,7 +2069,7 @@ "commands": [ { "command": "gitlens.supportGitLens", - "title": "Support GitLens ❤", + "title": "Sponsor GitLens ❤", "category": "GitLens", "icon": { "dark": "images/dark/icon-heart.svg", diff --git a/src/messages.ts b/src/messages.ts index 610e906..49f942a 100644 --- a/src/messages.ts +++ b/src/messages.ts @@ -97,15 +97,11 @@ export class Messages { } static async showSupportGitLensMessage() { - const actions: MessageItem[] = [ - { title: 'Become a Sponsor' }, - { title: 'Donate via PayPal' }, - { title: 'Donate via Cash App' } - ]; + const actions: MessageItem[] = [{ title: 'Sponsor GitLens' }]; const result = await Messages.showMessage( 'info', - 'While GitLens is offered to everyone for free, if you find it useful, please consider [supporting](https://gitlens.amod.io/#support-gitlens) it. Thank you! ❤', + 'While GitLens is offered to everyone for free, if you find it useful, please consider [sponsoring](https://gitlens.amod.io/#sponsor) it. Thank you! ❤', undefined, null, ...actions @@ -114,11 +110,7 @@ export class Messages { if (result != null) { let uri; if (result === actions[0]) { - uri = Uri.parse('https://www.patreon.com/eamodio'); - } else if (result === actions[1]) { - uri = Uri.parse('https://www.paypal.me/eamodio'); - } else if (result === actions[2]) { - uri = Uri.parse('https://cash.me/$eamodio'); + uri = Uri.parse('https://gitlens.amod.io/#sponsor'); } if (uri !== undefined) { @@ -146,7 +138,7 @@ export class Messages { } else if (result === actions[1]) { await env.openExternal(Uri.parse('https://github.com/eamodio/vscode-gitlens/blob/master/CHANGELOG.md')); } else if (result === actions[2]) { - await env.openExternal(Uri.parse('https://gitlens.amod.io/#support-gitlens')); + await env.openExternal(Uri.parse('https://gitlens.amod.io/#sponsor')); } } } diff --git a/src/webviews/apps/settings/index.html b/src/webviews/apps/settings/index.html index 535b7c1..d29e7dc 100644 --- a/src/webviews/apps/settings/index.html +++ b/src/webviews/apps/settings/index.html @@ -3273,8 +3273,8 @@ diff --git a/src/webviews/apps/welcome/index.html b/src/webviews/apps/welcome/index.html index c48d725..54b0cf6 100644 --- a/src/webviews/apps/welcome/index.html +++ b/src/webviews/apps/welcome/index.html @@ -60,13 +60,13 @@
Support GitLens ❤Sponsor GitLens ❤

While GitLens is generously offered to everyone free of charge, if you find it useful, - please consider supporting it. + please consider sponsoring it.

@@ -509,36 +509,32 @@