Skip to content

Commit d6c7689

Browse files
authored
chore: rename GitHub username (#82)
1 parent c0cfdaf commit d6c7689

3 files changed

Lines changed: 16 additions & 14 deletions

File tree

.github/FUNDING.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Thanks for any donations! :)
22

3-
github: DeveloperPaul123
3+
github: ptsouchlos

README.md

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,22 @@
22
thread-pool
33
</h1>
44

5-
[![say thanks](https://img.shields.io/badge/Say%20Thanks-👍-1EAEDB.svg)](https://github.com/DeveloperPaul123/thread-pool/stargazers)
5+
[![say thanks](https://img.shields.io/badge/Say%20Thanks-👍-1EAEDB.svg)](https://github.com/ptsouchlos/thread-pool/stargazers)
66
[![Discord](https://img.shields.io/discord/652515194572111872?logo=Discord)](https://discord.gg/CX2ybByRnt)
7-
![License](https://img.shields.io/github/license/DeveloperPaul123/thread-pool?color=blue)
8-
![Release](https://img.shields.io/github/v/release/DeveloperPaul123/thread-pool)
9-
![Documentation](https://img.shields.io/website?label=docs&url=https%3A%2F%2Fdeveloperpaul123.github.io%2Fthread-pool%2F)
7+
![License](https://img.shields.io/github/license/ptsouchlos/thread-pool?color=blue)
8+
![Release](https://img.shields.io/github/v/release/ptsouchlos/thread-pool)
9+
![Documentation](https://img.shields.io/website?label=docs&url=https%3A%2F%2Fptsouchlos.github.io%2Fthread-pool%2F)
1010

11-
[![Ubuntu](https://github.com/DeveloperPaul123/thread-pool/actions/workflows/ubuntu.yml/badge.svg)](https://github.com/DeveloperPaul123/thread-pool/actions/workflows/ubuntu.yml)
12-
[![Windows](https://github.com/DeveloperPaul123/thread-pool/actions/workflows/windows.yml/badge.svg)](https://github.com/DeveloperPaul123/thread-pool/actions/workflows/windows.yml)
13-
[![Style](https://github.com/DeveloperPaul123/thread-pool/actions/workflows/style.yml/badge.svg)](https://github.com/DeveloperPaul123/thread-pool/actions/workflows/style.yml)
14-
[![Install](https://github.com/DeveloperPaul123/thread-pool/actions/workflows/install.yml/badge.svg)](https://github.com/DeveloperPaul123/thread-pool/actions/workflows/install.yml)
15-
[![codecov](https://codecov.io/github/DeveloperPaul123/thread-pool/branch/feature/codecov/graph/badge.svg?token=Y47HDBRVR3)](https://codecov.io/github/DeveloperPaul123/thread-pool)
11+
[![Ubuntu](https://github.com/ptsouchlos/thread-pool/actions/workflows/ubuntu.yml/badge.svg)](https://github.com/ptsouchlos/thread-pool/actions/workflows/ubuntu.yml)
12+
[![Windows](https://github.com/ptsouchlos/thread-pool/actions/workflows/windows.yml/badge.svg)](https://github.com/ptsouchlos/thread-pool/actions/workflows/windows.yml)
13+
[![Style](https://github.com/ptsouchlos/thread-pool/actions/workflows/style.yml/badge.svg)](https://github.com/ptsouchlos/thread-pool/actions/workflows/style.yml)
14+
[![Install](https://github.com/ptsouchlos/thread-pool/actions/workflows/install.yml/badge.svg)](https://github.com/ptsouchlos/thread-pool/actions/workflows/install.yml)
15+
[![codecov](https://codecov.io/github/ptsouchlos/thread-pool/branch/feature/codecov/graph/badge.svg?token=Y47HDBRVR3)](https://codecov.io/github/ptsouchlos/thread-pool)
1616

1717
A simple, *fast* and functional thread pool implementation using pure C++20.
1818

19+
> **Note:** The GitHub account for this project was renamed from `DeveloperPaul123` to `ptsouchlos`. Repository ownership and history are unchanged.
20+
1921
## Features
2022

2123
* Built entirely with C++20
@@ -49,7 +51,7 @@ Alternatively, you can use something like [CPM](https://github.com/TheLartians/C
4951
```cmake
5052
CPMAddPackage(
5153
NAME thread-pool
52-
GITHUB_REPOSITORY DeveloperPaul123/thread-pool
54+
GITHUB_REPOSITORY ptsouchlos/thread-pool
5355
GIT_TAG 0.6.0 # change this to latest commit or release tag
5456
OPTIONS
5557
"TP_BUILD_TESTS OFF"
@@ -188,7 +190,7 @@ See [Format.cmake](https://github.com/TheLartians/Format.cmake) for details.
188190

189191
### Build the documentation
190192

191-
The documentation is automatically built and [published](https://developerpaul123.github.io/thread-pool) whenever a [GitHub Release](https://help.github.com/en/github/administering-a-repository/managing-releases-in-a-repository) is created.
193+
The documentation is automatically built and [published](https://ptsouchlos.github.io/thread-pool) whenever a [GitHub Release](https://help.github.com/en/github/administering-a-repository/managing-releases-in-a-repository) is created.
192194
To manually build documentation, call the following command.
193195

194196
```bash
@@ -210,5 +212,5 @@ The project is licensed under the MIT license. See [LICENSE](LICENSE) for more d
210212

211213
## Author
212214

213-
| [<img src="https://avatars0.githubusercontent.com/u/6591180?s=460&v=4" width="100"><br><sub>@DeveloperPaul123</sub>](https://github.com/DeveloperPaul123) |
215+
| [<img src="https://avatars0.githubusercontent.com/u/6591180?s=460&v=4" width="100"><br><sub>@ptsouchlos</sub>](https://github.com/ptsouchlos) |
214216
|:----:|

examples/mandelbrot/source/fractal.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ void save_ppm(const unsigned int& width, const unsigned int& height, std::span<r
2222
std::ofstream output_ppm(file_name.data(), std::ios::binary);
2323
// output header
2424
output_ppm << "P6 " << new_line;
25-
output_ppm << "# created by DeveloperPaul123/thread-pool mandelbrot sample.\n";
25+
output_ppm << "# created by ptsouchlos/thread-pool mandelbrot sample.\n";
2626
output_ppm << width << " " << height << " " << 255 << new_line;
2727

2828
output_ppm.write(reinterpret_cast<char*>(colors.data()), width * height * 3);

0 commit comments

Comments
 (0)