Skip to content

Commit 2e6a3b5

Browse files
devin-ai-integration[bot]ComputelessComputergraphite-app[bot]
authored
web: update GitHub repo links from fastrepl/hyprnote to fastrepl/char (#3964)
* web: update GitHub repo links from fastrepl/hyprnote to fastrepl/char Co-Authored-By: john@hyprnote.com <john@hyprnote.com> * web: update remaining fastrepl/hyprnote GitHub links to fastrepl/char Co-Authored-By: john@hyprnote.com <john@hyprnote.com> * web: rename Hyprnote to Char across content, meta tags, and API configs Co-Authored-By: john@hyprnote.com <john@hyprnote.com> * Apply suggestion from @graphite-app[bot] Co-authored-by: graphite-app[bot] <96075541+graphite-app[bot]@users.noreply.github.com> * Fix directory name in setup instructions * web: update GithubCode regex to match both fastrepl/hyprnote and fastrepl/char Co-Authored-By: john@hyprnote.com <john@hyprnote.com> --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Co-authored-by: john@hyprnote.com <john@hyprnote.com> Co-authored-by: John Jeong <63365510+ComputelessComputer@users.noreply.github.com> Co-authored-by: graphite-app[bot] <96075541+graphite-app[bot]@users.noreply.github.com>
1 parent f06b15c commit 2e6a3b5

Some content is hidden

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

65 files changed

+127
-125
lines changed

apps/web/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# @hypr/web
22

3-
[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/fork/github/fastrepl/hyprnote/tree/main)
3+
[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/fork/github/fastrepl/char/tree/main)

apps/web/content-collections.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ async function embedGithubCode(content: string): Promise<string> {
1919
const [fullMatch, url] = match;
2020

2121
const repoMatch = url.match(
22-
/github\.com\/fastrepl\/hyprnote\/blob\/[^/]+\/(.+)/,
22+
/github\.com\/fastrepl\/(hyprnote|char)\/blob\/[^/]+\/(.+)/,
2323
);
2424
if (repoMatch) {
25-
const filePath = repoMatch[1];
25+
const filePath = repoMatch[2];
2626
const fileName = path.basename(filePath);
2727
const localPath = path.resolve(process.cwd(), "..", "..", filePath);
2828

@@ -162,7 +162,7 @@ const changelog = defineCollection({
162162
});
163163

164164
const version = document._meta.path.replace(/\.mdx$/, "");
165-
const baseUrl = `https://github.com/fastrepl/hyprnote/releases/download/desktop_v${version}`;
165+
const baseUrl = `https://github.com/fastrepl/char/releases/download/desktop_v${version}`;
166166
const downloads: Record<VersionPlatform, string> = {
167167
"dmg-aarch64": `${baseUrl}/hyprnote-macos-aarch64.dmg`,
168168
"appimage-x86_64": `${baseUrl}/hyprnote-linux-x86_64.AppImage`,

apps/web/content/articles/bot-free-ai-meeting-assistants.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ The game-changer here is Char's Smart Consent Management Package for enterprises
6767

6868
- Work in healthcare, legal, or finance where data sovereignty is critical
6969
- Need enterprise-grade consent management for compliance
70-
- Want to avoid vendor lock-in with open-source transparency ([GitHub](https://github.com/fastrepl/hyprnote))
70+
- Want to avoid vendor lock-in with open-source transparency ([GitHub](https://github.com/fastrepl/char))
7171
- Need offline functionality for air-gapped or secure environments
7272
- Got burned by cloud-based tools and want true data control
7373

apps/web/content/articles/hyprnote-weekly-2026-02-08.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
meta_title: "Hyprnote Weekly: Calendar Redesign, Backlink Mentions, and Undo Delete"
3-
display_title: "Hyprnote Weekly: February 8, 2026"
2+
meta_title: "Char Weekly: Calendar Redesign, Backlink Mentions, and Undo Delete"
3+
display_title: "Char Weekly: February 8, 2026"
44
meta_description: "This week we shipped v1.0.4 and v1.0.5 stable with a full calendar redesign, backlink mentions for notes and people, undo delete for notes, and a new hold-to-quit shortcut inspired by Chrome."
55
author: "John Jeong"
66
category: "Char Weekly"
@@ -29,7 +29,7 @@ We redesigned the Cmd+Q behavior, inspired by Chrome. Instead of immediately hid
2929

3030
## In-Meeting Reminder
3131

32-
There's a new experimental notification that lets you know when another app has been using your microphone for 3+ minutes while Hyprnote isn't listening. If you forgot to start recording, this nudge has your back. It's opt-in in the lab settings and still early, but we think it'll be useful.
32+
There's a new experimental notification that lets you know when another app has been using your microphone for 3+ minutes while Char isn't listening. If you forgot to start recording, this nudge has your back. It's opt-in in the lab settings and still early, but we think it'll be useful.
3333

3434
## Performance and Stability
3535

apps/web/content/articles/open-source-meeting-transcription-software.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ The code is open source (GPL-3.0), so you can verify exactly how your data is pr
161161

162162
Most importantly, it just works. No complex setup, no security warnings to bypass, no dependencies.
163163

164-
Ready to try it? [Download Char for macOS](/download) or [check out the source code on GitHub](https://github.com/fastrepl/hyprnote).
164+
Ready to try it? [Download Char for macOS](/download) or [check out the source code on GitHub](https://github.com/fastrepl/char).
165165

166166
## Frequently Asked Questions
167167

apps/web/content/changelog/AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@ done
3535
3. To actually see what's changed between two versions, you can use this.
3636

3737
```bash
38-
gh api repos/fastrepl/hyprnote/compare/<>...<> --jq '.commits'
38+
gh api repos/fastrepl/char/compare/<>...<> --jq '.commits'
3939
```

apps/web/content/docs/about/1.what-is-hyprnote.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ section: "About"
44
description: "Char is a privacy-first AI notepad for meetings. Think of it as the open-source version of Granola — except that we're cooler."
55
---
66

7-
Char is a privacy-first AI notepad for meetings. It's [open-source](https://github.com/fastrepl/hyprnote), runs [locally](/docs/about/why-local-first), and works without bots joining your calls.
7+
Char is a privacy-first AI notepad for meetings. It's [open-source](https://github.com/fastrepl/char), runs [locally](/docs/about/why-local-first), and works without bots joining your calls.
88

99
Key features:
1010
- Transcribe and summarize locally or with your own models

apps/web/content/docs/calendar/0.apple.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description: "Connect your Apple Calendar to see upcoming meetings in Char."
66

77
## Need help or want to report an issue?
88

9-
If you're experiencing issues with Apple Calendar integration or have suggestions for improvement, please [report it on GitHub](https://github.com/fastrepl/hyprnote/issues/new?labels=calendar%3Aapple).
9+
If you're experiencing issues with Apple Calendar integration or have suggestions for improvement, please [report it on GitHub](https://github.com/fastrepl/char/issues/new?labels=calendar%3Aapple).
1010

1111

1212
## How often does Char sync with Apple Calendar?

apps/web/content/docs/developers/0.setup.mdx

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,10 @@ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
3232
Clone the repository and install dependencies:
3333

3434
```bash
35-
git clone https://github.com/fastrepl/hyprnote.git
36-
cd hyprnote
35+
36+
git clone https://github.com/fastrepl/char.git
37+
cd char
38+
3739
pnpm install
3840
```
3941

@@ -70,8 +72,8 @@ This script installs all required system dependencies including GTK, PulseAudio,
7072
After running the setup script, clone the repository and install dependencies:
7173

7274
```bash
73-
git clone https://github.com/fastrepl/hyprnote.git
74-
cd hyprnote
75+
git clone https://github.com/fastrepl/char.git
76+
cd char
7577
pnpm install
7678
```
7779

apps/web/content/docs/developers/1.env.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ description: "Learn how to set environment variables for Char"
99
- We use `dotenvx` to load environment variables.
1010
- Char team uses [infisical](https://infisical.com/docs/cli/commands/login) to manage them.
1111

12-
<GithubCode url="https://github.com/fastrepl/hyprnote/blob/main/apps/web/AGENTS.md" />
12+
<GithubCode url="https://github.com/fastrepl/char/blob/main/apps/web/AGENTS.md" />
1313

1414
# Stripe
1515

0 commit comments

Comments
 (0)