Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion BUILD.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ This guide covers how to set up the development environment and build Dictx from
### 1. Clone the Repository

```bash
git clone git@github.com:0xNyk/dictx.git
git clone git@github.com:splitlabs/dictx.git
cd dictx
```

Expand Down
28 changes: 14 additions & 14 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Before you begin, ensure you have the following installed:
3. **Add upstream remote**:

```bash
git remote add upstream git@github.com:0xNyk/dictx.git
git remote add upstream git@github.com:splitlabs/dictx.git
```

4. **Install dependencies**:
Expand Down Expand Up @@ -88,8 +88,8 @@ For more details, see the Architecture section in [README.md](README.md) or [AGE

### Before Submitting a Bug Report

1. **Search existing issues** at [github.com/cjpais/Handy/issues](https://github.com/0xNyk/dictx/issues)
2. **Check discussions** at [github.com/cjpais/Handy/discussions](https://github.com/0xNyk/dictx/discussions)
1. **Search existing issues** at [github.com/cjpais/Handy/issues](https://github.com/splitlabs/dictx/issues)
2. **Check discussions** at [github.com/cjpais/Handy/discussions](https://github.com/splitlabs/dictx/discussions)
3. **Try the latest release** to see if the issue has been fixed
4. **Enable debug mode** (`Cmd/Ctrl+Shift+D`) to gather diagnostic information

Expand Down Expand Up @@ -121,14 +121,14 @@ We use GitHub Discussions for feature requests rather than issues. This keeps is

### Before Suggesting a Feature

1. **Search existing discussions** at [github.com/cjpais/Handy/discussions](https://github.com/0xNyk/dictx/discussions)
1. **Search existing discussions** at [github.com/cjpais/Handy/discussions](https://github.com/splitlabs/dictx/discussions)
2. **Check common feature requests**:
- [Post-processing / Editing Transcripts](https://github.com/0xNyk/dictx/discussions/168)
- [Keyboard Shortcuts / Hotkeys](https://github.com/0xNyk/dictx/discussions/211)
- [Post-processing / Editing Transcripts](https://github.com/splitlabs/dictx/discussions/168)
- [Keyboard Shortcuts / Hotkeys](https://github.com/splitlabs/dictx/discussions/211)

### Submitting a Feature Request

1. Go to [Discussions](https://github.com/0xNyk/dictx/discussions)
1. Go to [Discussions](https://github.com/splitlabs/dictx/discussions)
2. Click "New discussion"
3. Choose the appropriate category (Ideas, Feature Requests, etc.)
4. Describe your feature idea including:
Expand All @@ -144,14 +144,14 @@ We use GitHub Discussions for feature requests rather than issues. This keeps is
**This is critical:** Before writing any code, please do the following:

1. **Search existing issues and PRs** - Check both open AND closed issues and pull requests. Someone may have already addressed this, or there may be a reason it was closed.
- [Open issues](https://github.com/0xNyk/dictx/issues)
- [Closed issues](https://github.com/0xNyk/dictx/issues?q=is%3Aissue+is%3Aclosed)
- [Open PRs](https://github.com/0xNyk/dictx/pulls)
- [Closed PRs](https://github.com/0xNyk/dictx/pulls?q=is%3Apr+is%3Aclosed)
- [Open issues](https://github.com/splitlabs/dictx/issues)
- [Closed issues](https://github.com/splitlabs/dictx/issues?q=is%3Aissue+is%3Aclosed)
- [Open PRs](https://github.com/splitlabs/dictx/pulls)
- [Closed PRs](https://github.com/splitlabs/dictx/pulls?q=is%3Apr+is%3Aclosed)

2. **If something was previously closed** - If you want to revisit a closed issue or PR, you need to:
- Provide a strong argument for why it should be reconsidered
- Gather community feedback first via [Discussions](https://github.com/0xNyk/dictx/discussions)
- Gather community feedback first via [Discussions](https://github.com/splitlabs/dictx/discussions)
- Link to that discussion in your PR

3. **Get community feedback for features** - PRs with demonstrated community interest are **much more likely to be merged**. Start a discussion, get feedback, and link to it in your PR. This helps ensure Dictx stays focused and useful without becoming bloated.
Expand Down Expand Up @@ -209,7 +209,7 @@ We use GitHub Discussions for feature requests rather than issues. This keeps is
```

7. **Create a Pull Request**:
- Go to the [Dictx repository](https://github.com/0xNyk/dictx)
- Go to the [Dictx repository](https://github.com/splitlabs/dictx)
- Click "New Pull Request"
- Select your fork and branch
- Fill out the PR template completely, including:
Expand Down Expand Up @@ -303,7 +303,7 @@ Look for issues labeled `good first issue` or `help wanted` if you're new to the

## 📞 Getting Help

- **Discussions**: Ask questions in [GitHub Discussions](https://github.com/0xNyk/dictx/discussions)
- **Discussions**: Ask questions in [GitHub Discussions](https://github.com/splitlabs/dictx/discussions)

## 📜 License

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Built with [Tauri](https://tauri.app) (Rust + React/TypeScript). Forked from [Ha

## Installation

Download the latest release for your platform from the [Releases page](https://github.com/0xNyk/dictx/releases).
Download the latest release for your platform from the [Releases page](https://github.com/splitlabs/dictx/releases).

| Platform | Format |
| -------- | -------------------- |
Expand Down
4 changes: 2 additions & 2 deletions src-tauri/src/llm_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,11 @@ fn build_headers(provider: &PostProcessProvider, api_key: &str) -> Result<Header
headers.insert(CONTENT_TYPE, HeaderValue::from_static("application/json"));
headers.insert(
REFERER,
HeaderValue::from_static("https://github.com/0xNyk/dictx"),
HeaderValue::from_static("https://github.com/splitlabs/dictx"),
);
headers.insert(
USER_AGENT,
HeaderValue::from_static("Dictx/0.1 (+https://github.com/0xNyk/dictx)"),
HeaderValue::from_static("Dictx/0.1 (+https://github.com/splitlabs/dictx)"),
);
headers.insert("X-Title", HeaderValue::from_static("Dictx"));

Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
"plugins": {
"updater": {
"endpoints": [
"https://github.com/0xNyk/dictx/releases/latest/download/latest.json"
"https://github.com/splitlabs/dictx/releases/latest/download/latest.json"
],
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDRCQUM1NTdDMzFFNkI0MzQKUldRMHRPWXhmRldzUzdOVkpDTDZDMm45cEV5VENJTVc0YjhYbHJIRVFsU0NKK3VRLzVpYjJ5TzUK"
}
Expand Down
Loading