Skip to content

Commit 2b2e8a0

Browse files
dinwwwhCopilot
andauthored
chore: unnoq to dinwwwh (#1461)
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent a16ca72 commit 2b2e8a0

File tree

69 files changed

+145
-145
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+145
-145
lines changed

.github/FUNDING.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# These are supported funding model platforms
22

3-
github: [unnoq] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
3+
github: [dinwwwh] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
44
patreon: # Replace with a single Patreon username
55
open_collective: # Replace with a single Open Collective username
66
ko_fi: # Replace with a single Ko-fi username

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,8 +201,8 @@ This is a quick overview of how to use oRPC. For more details, please refer to t
201201
## Sponsors
202202

203203
<p align="center">
204-
<a href="https://cdn.jsdelivr.net/gh/unnoq/unnoq/sponsors.svg">
205-
<img src='https://cdn.jsdelivr.net/gh/unnoq/unnoq/sponsors.svg'/>
204+
<a href="https://cdn.jsdelivr.net/gh/dinwwwh/dinwwwh/sponsors.svg">
205+
<img src='https://cdn.jsdelivr.net/gh/dinwwwh/dinwwwh/sponsors.svg'/>
206206
</a>
207207
</p>
208208

apps/content/.vitepress/config.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ export default withMermaid(defineConfig({
5656
socialLinks: [
5757
{ icon: 'github', link: 'https://github.com/middleapi/orpc' },
5858
{ icon: 'discord', link: 'https://discord.gg/TXEbwRBvQn' },
59-
{ icon: 'x', link: 'https://x.com/unnoqcom' },
60-
{ icon: 'bluesky', link: 'https://bsky.app/profile/unnoq.com' },
59+
{ icon: 'x', link: 'https://x.com/middleapi' },
60+
{ icon: 'bluesky', link: 'https://bsky.app/profile/middleapi.com' },
6161
],
6262
editLink: {
6363
pattern: 'https://github.com/middleapi/orpc/blob/main/apps/content/:path',
@@ -76,7 +76,7 @@ export default withMermaid(defineConfig({
7676
text: 'More',
7777
items: [
7878
{ text: 'Discussions', link: 'https://github.com/middleapi/orpc/discussions' },
79-
{ text: 'Sponsor', link: 'https://github.com/sponsors/unnoq' },
79+
{ text: 'Sponsor', link: 'https://github.com/sponsors/dinwwwh' },
8080
{ text: 'Releases', link: 'https://github.com/middleapi/orpc/releases' },
8181
{ text: 'LLM Context', link: '/llms.txt' },
8282
{ text: 'LLM Context (Full)', link: '/llms-full.txt' },

apps/content/.vitepress/theme/components/AsideSponsors.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ const smallSponsors = computed(() => sponsors.value.filter(s => s.rideSidebarSiz
1414

1515
<template>
1616
<div ref="container" class="aside-container">
17-
<a class="aside-sponsors-title" href="https://github.com/sponsors/unnoq" target="_blank" rel="noopener">SPONSORS</a>
17+
<a class="aside-sponsors-title" href="https://github.com/sponsors/dinwwwh" target="_blank" rel="noopener">SPONSORS</a>
1818

1919
<div class="aside-sponsors-list">
2020
<a v-for="sponsor in normalSponsors" :key="sponsor.login" class="aside-sponsor" target="_blank" :href="sponsor.rideSidebarLink">
2121
<img :src="sponsor.rightSidebarLogo" :alt="sponsor.name">
2222
</a>
2323

24-
<a v-if="normalSponsors.length < 3" class="aside-sponsor" href="https://github.com/sponsors/unnoq" target="_blank" rel="noopener">
24+
<a v-if="normalSponsors.length < 3" class="aside-sponsor" href="https://github.com/sponsors/dinwwwh" target="_blank" rel="noopener">
2525
<span class="aside-sponsor-text">Become a sponsor</span>
2626
</a>
2727

apps/content/.vitepress/theme/components/FullSponsors.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
</h2>
66

77
<div class="full-sponsors">
8-
<a href="https://cdn.jsdelivr.net/gh/unnoq/unnoq/sponsors.svg" target="_blank" rel="noopener noreferrer">
8+
<a href="https://cdn.jsdelivr.net/gh/dinwwwh/dinwwwh/sponsors.svg" target="_blank" rel="noopener noreferrer">
99
<img
1010
crossorigin="anonymous"
1111
inline-block
1212
width="768" height="1464"
1313
class="resizable-img"
1414
loading="lazy"
15-
src="https://cdn.jsdelivr.net/gh/unnoq/unnoq/sponsors.svg"
16-
alt="Anthony Fu's sponsors"
15+
src="https://cdn.jsdelivr.net/gh/dinwwwh/dinwwwh/sponsors.svg"
16+
alt="dinwwwh's sponsors"
1717
>
1818
</a>
1919
</div>

apps/content/.vitepress/theme/composables/sponsors.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export function useSponsors(visible?: Ref<boolean>): { sponsors: Ref<JSONSponsor
2727

2828
status.value = 'updating'
2929

30-
fetch('https://cdn.jsdelivr.net/gh/unnoq/unnoq/sponsors.json')
30+
fetch('https://cdn.jsdelivr.net/gh/dinwwwh/dinwwwh/sponsors.json')
3131
.then(res => res.json())
3232
.then((value) => {
3333
sponsors.value = value

apps/content/blog/v1-announcement.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,10 +125,10 @@ In this long journey, I specially thank all my sponsors, they help me to keep go
125125
- [Robbe95](https://github.com/Robbe95)
126126
- And my first sponsor (private) to start my story
127127

128-
If you're interesting in sponsoring oRPC, you can do it [here](https://github.com/sponsors/unnoq).
128+
If you're interested in sponsoring oRPC, you can do it [here](https://github.com/sponsors/dinwwwh).
129129

130130
<p align="center">
131-
<a href="https://cdn.jsdelivr.net/gh/unnoq/unnoq/sponsors.svg">
132-
<img src='https://cdn.jsdelivr.net/gh/unnoq/unnoq/sponsors.svg'/>
131+
<a href="https://cdn.jsdelivr.net/gh/dinwwwh/dinwwwh/sponsors.svg">
132+
<img src='https://cdn.jsdelivr.net/gh/dinwwwh/dinwwwh/sponsors.svg'/>
133133
</a>
134134
</p>

apps/content/public/_redirects

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
/docs /docs/getting-started 301
22
/docs/openapi /docs/openapi/getting-started 301
3-
/sponsor https://github.com/sponsors/unnoq 301
3+
/sponsor https://github.com/sponsors/dinwwwh 301
44
/docs/integrations/nextjs /docs/integrations/next 301

packages/ai-sdk/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ The [AI SDK](https://ai-sdk.dev/) integration for oRPC.
7171
## Sponsors
7272

7373
<p align="center">
74-
<a href="https://cdn.jsdelivr.net/gh/unnoq/unnoq/sponsors.svg">
75-
<img src='https://cdn.jsdelivr.net/gh/unnoq/unnoq/sponsors.svg'/>
74+
<a href="https://cdn.jsdelivr.net/gh/dinwwwh/dinwwwh/sponsors.svg">
75+
<img src='https://cdn.jsdelivr.net/gh/dinwwwh/dinwwwh/sponsors.svg'/>
7676
</a>
7777
</p>
7878

packages/arktype/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,8 @@ const specFromRouter = await openAPIGenerator.generate(router, {
100100
## Sponsors
101101

102102
<p align="center">
103-
<a href="https://cdn.jsdelivr.net/gh/unnoq/unnoq/sponsors.svg">
104-
<img src='https://cdn.jsdelivr.net/gh/unnoq/unnoq/sponsors.svg'/>
103+
<a href="https://cdn.jsdelivr.net/gh/dinwwwh/dinwwwh/sponsors.svg">
104+
<img src='https://cdn.jsdelivr.net/gh/dinwwwh/dinwwwh/sponsors.svg'/>
105105
</a>
106106
</p>
107107

0 commit comments

Comments
 (0)