Skip to content

Commit 8047bdf

Browse files
committed
refactor!: rebrand
1 parent f1fdf5b commit 8047bdf

File tree

12 files changed

+29
-76
lines changed

12 files changed

+29
-76
lines changed

Caddyfile

Lines changed: 0 additions & 18 deletions
This file was deleted.

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# N3P6 by Moeru AI
1+
# moeChat by Moeru AI
22

33
## About
44

@@ -10,22 +10,22 @@ This project is similar to AIRI with the following key differences:
1010
- Not interested in VTuber
1111
- No attempts to connect to other games or software
1212

13-
### Naming
13+
<!-- ### Naming
1414
1515
Ever heard of [Galatea](https://en.wikipedia.org/wiki/Galatea_(mythology))?
1616
1717
To avoid naming conflicts and make it unique,
18-
we named it after the satellite of the same name, [Neptune VI](https://en.wikipedia.org/wiki/Galatea_(moon)) (NEP6, E => 3).
18+
we named it after the satellite of the same name, [Neptune VI](https://en.wikipedia.org/wiki/Galatea_(moon)) (NEP6, E => 3). -->
1919

2020
## Development
2121

22-
> View the defined routes at [app/src/router.ts](https://github.com/moeru-ai/n3p6/blob/main/app/src/router.ts).
22+
> View the defined routes at [app/src/router.ts](https://github.com/moeru-ai/chat/blob/main/app/src/router.ts).
2323
2424
```bash
25-
git clone https://github.com/moeru-ai/n3p6.git
26-
cd n3p6
25+
git clone https://github.com/moeru-ai/chat.git
26+
cd chat
2727
pnpm i
28-
pnpm dev # @n3p6/app
28+
pnpm dev # @moeru-ai/chat
2929
```
3030

3131
## Supported Devices
@@ -42,7 +42,7 @@ MR mode requires some advanced features, so we have made a list of support:
4242
- **Vision Pro**: Untested, theoretically supported
4343
- **Pico 4 Ultra**: Untested, theoretically supported
4444

45-
If you'd like to help with testing, please give us feedback in the [discussions](https://github.com/moeru-ai/n3p6/discussions).
45+
If you'd like to help with testing, please give us feedback in the [discussions](https://github.com/moeru-ai/chat/discussions).
4646

4747
## License
4848

app/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
<meta charset="UTF-8" />
66
<link rel="icon" type="image/png" href="https://github.com/moeru-ai.png" />
77
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8-
<title>N3P6 by Moeru AI</title>
8+
<title>moeChat by Moeru AI</title>
99
</head>
1010

1111
<body>
1212
<div id="root"></div>
1313
<script type="module" src="/src/main.tsx"></script>
1414
</body>
1515

16-
</html>
16+
</html>

app/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
{
2-
"name": "@n3p6/app",
2+
"name": "@moeru-ai/chat",
33
"type": "module",
44
"version": "0.1.0-beta.1",
55
"private": true,
66
"scripts": {
7-
"assetpack": "assetpack -c assetpack.config.ts",
87
"build": "tsc -b && vite build",
98
"dev": "vite",
109
"preview": "vite preview"

app/src/components/ui/settings/layout.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export const SettingsLayout = ({ children, sidebar, title }: PropsWithChildren<S
2929
justifyContent="flex-start"
3030
variant="ghost"
3131
>
32-
<Text fontWeight={600}>N3P6 by Moeru AI</Text>
32+
<Text fontWeight={600}>moeChat by Moeru AI</Text>
3333
</Button>
3434
<Button disabled justifyContent="flex-start" marginBottom={-8} variant="ghost">
3535
<Text fontSize={12} fontWeight={600}>Settings</Text>
@@ -58,7 +58,7 @@ export const SettingsLayout = ({ children, sidebar, title }: PropsWithChildren<S
5858
gap={8}
5959
hover={{ backgroundColor: colors.card }}
6060
justifyContent="flex-start"
61-
onClick={() => window.open('https://github.com/moeru-ai/n3p6', '_blank', 'noopener')}
61+
onClick={() => window.open('https://github.com/moeru-ai/chat', '_blank', 'noopener')}
6262
variant="ghost"
6363
>
6464
<GithubIcon height={16} width={16} />

docker-compose.yml

Lines changed: 0 additions & 27 deletions
This file was deleted.

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,10 @@
44
"version": "0.1.0-beta.1",
55
"private": true,
66
"packageManager": "pnpm@10.10.0",
7-
"repository": "github:moeru-ai/n3p6",
87
"scripts": {
98
"build": "pnpm -r build",
109
"bump": "bumpp",
11-
"dev": "pnpm -rF @n3p6/app dev",
10+
"dev": "pnpm -rF @moeru-ai/chat dev",
1211
"lint": "eslint --cache .",
1312
"mixamo2vrma": "tsx scripts/mixamo2vrma.ts"
1413
},

packages/n3p6/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"version": "0.1.0-beta.1",
55
"author": "Moeru AI",
66
"license": "MIT",
7-
"homepage": "https://github.com/moeru-ai/n3p6",
7+
"homepage": "https://github.com/moeru-ai/chat",
88
"repository": {
99
"type": "git",
10-
"url": "git+https://github.com/moeru-ai/n3p6.git",
10+
"url": "git+https://github.com/moeru-ai/chat.git",
1111
"directory": "packages/n3p6"
1212
},
13-
"bugs": "https://github.com/moeru-ai/n3p6/issues",
13+
"bugs": "https://github.com/moeru-ai/chat/issues",
1414
"sideEffects": false,
1515
"exports": "./src/index.ts",
1616
"publishConfig": {

packages/orcust-automaton/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
"private": true,
66
"author": "Moeru AI",
77
"license": "MIT",
8-
"homepage": "https://github.com/moeru-ai/n3p6",
8+
"homepage": "https://github.com/moeru-ai/chat",
99
"repository": {
1010
"type": "git",
11-
"url": "git+https://github.com/moeru-ai/n3p6.git",
11+
"url": "git+https://github.com/moeru-ai/chat.git",
1212
"directory": "packages/orcust-automaton"
1313
},
14-
"bugs": "https://github.com/moeru-ai/n3p6/issues",
14+
"bugs": "https://github.com/moeru-ai/chat/issues",
1515
"sideEffects": [
1616
"./src/hooks/use-mixamo-animation.ts",
1717
"./src/hooks/use-vrm.ts",

packages/react-three-vrm/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"version": "0.1.0-beta.1",
55
"author": "Moeru AI",
66
"license": "MIT",
7-
"homepage": "https://github.com/moeru-ai/n3p6",
7+
"homepage": "https://github.com/moeru-ai/chat",
88
"repository": {
99
"type": "git",
10-
"url": "git+https://github.com/moeru-ai/n3p6.git",
10+
"url": "git+https://github.com/moeru-ai/chat.git",
1111
"directory": "packages/react-three-vrm"
1212
},
13-
"bugs": "https://github.com/moeru-ai/n3p6/issues",
13+
"bugs": "https://github.com/moeru-ai/chat/issues",
1414
"sideEffects": [
1515
"./src/hooks/use-mixamo-animation.ts",
1616
"./src/hooks/use-vrm.ts",

0 commit comments

Comments
 (0)