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 CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ for reviews. Feature suggestions are subject to discussion via issues.

## Code style

Reference existing [AGENTS.md](https://github.com/sst/opentui/blob/main/AGENTS.md) or project conventions if applicable.
Reference existing [AGENTS.md](https://github.com/anomalyco/opentui/blob/main/AGENTS.md) or project conventions if applicable.

## Code of conduct

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<div align="center">
<a href="https://www.npmjs.com/package/@opentui/core"><img alt="npm" src="https://img.shields.io/npm/v/@opentui/core?style=flat-square" /></a>
<a href="https://github.com/sst/opentui/actions/workflows/build-core.yml"><img alt="Build status" src="https://img.shields.io/github/actions/workflow/status/sst/opentui/build-core.yml?style=flat-square&branch=main" /></a>
<a href="https://github.com/anomalyco/opentui/actions/workflows/build-core.yml"><img alt="Build status" src="https://img.shields.io/github/actions/workflow/status/anomalyco/opentui/build-core.yml?style=flat-square&branch=main" /></a>
<a href="https://github.com/msmps/awesome-opentui"><img alt="awesome opentui list" src="https://awesome.re/badge-flat.svg" /></a>
</div>

Expand Down Expand Up @@ -39,12 +39,12 @@ You can quickly try out OpenTUI examples without cloning the repository:
**For macOS, Linux, WSL, Git Bash:**

```bash
curl -fsSL https://raw.githubusercontent.com/sst/opentui/main/packages/core/src/examples/install.sh | sh
curl -fsSL https://raw.githubusercontent.com/anomalyco/opentui/main/packages/core/src/examples/install.sh | sh
```

**For Windows (PowerShell/CMD):**

Download the latest release directly from [GitHub Releases](https://github.com/sst/opentui/releases/latest)
Download the latest release directly from [GitHub Releases](https://github.com/anomalyco/opentui/releases/latest)

## Running Examples (from the repo root)

Expand Down
2 changes: 1 addition & 1 deletion packages/core/docs/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
## Setup

```bash
git clone https://github.com/sst/opentui.git
git clone https://github.com/anomalyco/opentui.git
cd opentui
bun install
```
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "OpenTUI is a TypeScript library for building terminal user interfaces (TUIs)",
"repository": {
"type": "git",
"url": "https://github.com/sst/opentui",
"url": "https://github.com/anomalyco/opentui",
"directory": "packages/core"
},
"types": "src/index.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/renderables/Box.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export class BoxRenderable extends Renderable {
}

private initializeBorder(): void {
// https://github.com/sst/opentui/issues/186
// https://github.com/anomalyco/opentui/issues/186
// Solid-js reconciler does not pass props to constructor on init,
// so we need to initialize the border when supporting properties are set.
// borderStyle, borderColor, focusedBorderColor
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/tests/renderer.useMouse.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { createTestRenderer } from "../testing/test-renderer"
// Tests avoid actually outputting to the terminal during test runs,
// to not mess up the terminal state.
// What actually gets written can be tested properly when
// https://github.com/sst/opentui/pull/238 is merged.
// https://github.com/anomalyco/opentui/pull/238 is merged.
describe("useMouse configuration", () => {
test("useMouse: true sets renderer.useMouse to true", async () => {
const { renderer } = await createTestRenderer({
Expand Down
2 changes: 1 addition & 1 deletion packages/react/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# @opentui/react

A React renderer for building terminal user interfaces using [OpenTUI core](https://github.com/sst/opentui). Create rich, interactive console applications with familiar React patterns and components.
A React renderer for building terminal user interfaces using [OpenTUI core](https://github.com/anomalyco/opentui). Create rich, interactive console applications with familiar React patterns and components.

## Installation

Expand Down
2 changes: 1 addition & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sst/opentui",
"url": "https://github.com/anomalyco/opentui",
"directory": "packages/react"
},
"module": "src/index.ts",
Expand Down
3 changes: 2 additions & 1 deletion packages/react/tests/link.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ describe("Link Rendering Tests", () => {
test("should render link inside text with other elements", async () => {
testSetup = await testRender(
<text>
Check out <a href="https://github.com/sst/opentui">GitHub</a> and <a href="https://opentui.com">our website</a>
Check out <a href="https://github.com/anomalyco/opentui">GitHub</a> and{" "}
<a href="https://opentui.com">our website</a>
</text>,
{
width: 60,
Expand Down
4 changes: 2 additions & 2 deletions packages/solid/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# @opentui/solid

Solid.js support for [OpenTUI](https://github.com/sst/opentui).
Solid.js support for [OpenTUI](https://github.com/anomalyco/opentui).

## Installation

Expand Down Expand Up @@ -37,7 +37,7 @@ render(() => <text>Hello, World!</text>)

4. Run with `bun index.tsx`.

5. To build use [Bun.build](https://bun.com/docs/bundler) ([source](https://github.com/sst/opentui/issues/122)):
5. To build use [Bun.build](https://bun.com/docs/bundler) ([source](https://github.com/anomalyco/opentui/issues/122)):

```ts
import solidPlugin from "@opentui/solid/bun-plugin"
Expand Down
2 changes: 1 addition & 1 deletion packages/solid/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "SolidJS renderer for OpenTUI",
"repository": {
"type": "git",
"url": "https://github.com/sst/opentui",
"url": "https://github.com/anomalyco/opentui",
"directory": "packages/solid"
},
"module": "index.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/solid/tests/link.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ describe("Link Rendering Tests", () => {
testSetup = await testRender(
() => (
<text>
Check out <a href="https://github.com/sst/opentui">GitHub</a> and{" "}
Check out <a href="https://github.com/anomalyco/opentui">GitHub</a> and{" "}
<a href="https://opentui.com">our website</a>
</text>
),
Expand Down
Loading