Skip to content

Commit 394d15f

Browse files
committed
chore: Rename PartBotter to PartBot
1 parent 936957f commit 394d15f

8 files changed

Lines changed: 16 additions & 16 deletions

File tree

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Contributing to PartBot
22

33
I welcome all contributors to PartBot! Technical contributors can refer to the documentation below, while non-technical
4-
contributors are welcome to check out the [Suggestions, Bug Reports, and Feedback](https://github.com/PartMan7/PartBotter/tree/main/docs/SUGGESTIONS.md)
4+
contributors are welcome to check out the [Suggestions, Bug Reports, and Feedback](https://github.com/PartMan7/PartBot/tree/main/docs/SUGGESTIONS.md)
55
docs.
66

77
---
@@ -13,7 +13,7 @@ PartBot requires Node.js v16+ (untested on lower versions) to run, and uses `npm
1313
To install, clone this repository and install dependencies.
1414

1515
```bash
16-
$ git clone https://github.com/PartMan7/PartBotter.git PartBot
16+
$ git clone https://github.com/PartMan7/PartBot.git PartBot
1717
$ cd PartBot
1818
$ npm install
1919
```
@@ -44,4 +44,4 @@ automatically run on every pull request.
4444

4545
---
4646

47-
For details about the structure of PartBot (globals, types, layouts, etc.) please refer to the [structure documentation](https://github.com/PartMan7/PartBotter/tree/main/docs/STRUCTURE.md).
47+
For details about the structure of PartBot (globals, types, layouts, etc.) please refer to the [structure documentation](https://github.com/PartMan7/PartBot/tree/main/docs/STRUCTURE.md).

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ This might take a while...
1111

1212
- Cloning and Installing
1313
- Developing
14-
- [Planned Features](https://github.com/PartMan7/PartBotter/labels/enhancement)
15-
- [Known Issues](https://github.com/PartMan7/PartBotter/labels/bug)
16-
- [Suggestions, Bug Reports, and Feedback](https://github.com/PartMan7/PartBotter/tree/main/docs/SUGGESTIONS.md)
14+
- [Planned Features](https://github.com/PartMan7/PartBot/labels/enhancement)
15+
- [Known Issues](https://github.com/PartMan7/PartBot/labels/bug)
16+
- [Suggestions, Bug Reports, and Feedback](https://github.com/PartMan7/PartBot/tree/main/docs/SUGGESTIONS.md)
1717
- [Credits](#Credits)
1818

1919
## Credits

docs/SUGGESTIONS.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Hi! If you're looking to contribute to PartBot (as a non-developer), you've come
66

77
## Suggestions
88

9-
Suggestions are tracked in the [Issues Tracker](https://github.com/PartMan7/PartBotter/issues). New suggestions go in the [discussion thread](https://github.com/PartMan7/PartBotter/discussions/categories/ideas),
9+
Suggestions are tracked in the [Issues Tracker](https://github.com/PartMan7/PartBot/issues). New suggestions go in the [discussion thread](https://github.com/PartMan7/PartBot/discussions/categories/ideas),
1010
while accepted suggestions go into the thread as a feature. Feel free to make suggestions even if you're not sure how
1111
implementable they are - I'll respond accordingly.
1212

@@ -29,12 +29,12 @@ Some things to keep in mind while making a suggestion:
2929

3030
## Bug Reports
3131

32-
If you've found a bug, please [report it on the Issues tracker](https://github.com/PartMan7/PartBotter/issues/new?labels=bug) with the
32+
If you've found a bug, please [report it on the Issues tracker](https://github.com/PartMan7/PartBot/issues/new?labels=bug) with the
3333
`bug` label! Make sure to include details such as when and where the bug happened, any relevant logs, and if possible,
3434
whether the bug is reproducible (and if so, the steps to reproduce it). I'll investigate as soon as I can!
3535

3636
---
3737

3838
## Feedback
3939

40-
For other feedback, feel free to drop a message in the [Discussions thread](https://github.com/PartMan7/PartBotter/discussions/new?category=general)!
40+
For other feedback, feel free to drop a message in the [Discussions thread](https://github.com/PartMan7/PartBot/discussions/new?category=general)!

src/ps/commands/git.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ export const command: PSCommand = {
77
syntax: 'CMD',
88
categories: ['utility'],
99
async run({ broadcast }) {
10-
broadcast('https://github.com/PartMan7/PartBotter' as NoTranslate);
10+
broadcast('https://github.com/PartMan7/PartBot' as NoTranslate);
1111
},
1212
};

src/ps/commands/help.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ export const command: PSCommand = {
158158
commands
159159
</Button>{' '}
160160
you can use? {/* TODO: Move this to PartBot! */}
161-
Alternatively, you can take a look at my <a href="https://github.com/PartMan7/PartBotter">source code</a>.
161+
Alternatively, you can take a look at my <a href="https://github.com/PartMan7/PartBot">source code</a>.
162162
</p>
163163
</div>
164164
</center>

src/web/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Web
22

3-
PartBotter's Web module handles networks and routing, including a CDN and a filehost.
3+
PartBot's Web module handles networks and routing, including a CDN and a filehost.
44

55
The production deployment uses the NGINX configs defined in `@/web/configs`, which are build through the `build-configs`
66
script. This may be safely ignored if you do not plan on using an NGINX configuration.

src/web/configs/cdn.conf.base

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ server {
66
error_page 404 /not_found.html;
77
charset utf-8;
88

9-
location = /partbotter {
9+
location = /partbot {
1010
try_files /index.html =404;
1111
}
1212

13-
location /partbotter/ {
14-
rewrite ^/partbotter/(.*)$ /$1 break;
13+
location /partbot/ {
14+
rewrite ^/partbot/(.*)$ /$1 break;
1515
try_files $uri $uri.html =404;
1616
}
1717

src/web/configs/partbot.conf.base

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
server {
22
listen 80;
3-
server_name partbotter.partman.dev;
3+
server_name partbot.partman.dev;
44
location / {
55
proxy_pass http://localhost:{{PORT}};
66
proxy_http_version 1.1;

0 commit comments

Comments
 (0)