Skip to content

Commit d09cb98

Browse files
committed
Basic grammer check of the README file
1 parent ff3c398 commit d09cb98

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ jobs:
1717
- name: Test Ubuntu
1818
run: docker build -f source/misc/docker/Dockerfile.Ubuntu22.04build . -t blockattack_test
1919
- name: Test Windows MXE
20-
run: docker build -f source/misc/docker/Dockerfile.WindoesBuild . -t blockattack_test
20+
run: docker build -f source/misc/docker/Dockerfile.WindowsBuild . -t blockattack_test

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@ A Tetris Attack Clone under the GPL.
55
Homepage: <https://blockattack.net><br/>
66
Source: <https://github.com/blockattack/blockattack-game>
77

8-
## Screen shot
8+
## Screenshot
99
![Block Attack - Rise of the Blocks](https://blockattack.github.io/images/screenshots/blockattack-2.3.0-3.png "Screen shot")
1010

1111
## Supported OS
1212

1313
### Linux
1414
Recent Linux version. Target is all current Ubuntu Desktop LTS versions (up to 5 years).
1515

16-
### Windoes
17-
Target is all official supported versions of windows for x86-64 that allows manually installed software. Currently Windows 10+.
16+
### Windows
17+
Target is all officially supported versions of Windows for x86-64 that allow manually installed software. Currently Windows 10+.
1818

1919
## Dependencies
2020
* A version of g++ with C++17 support. Tested on g++-11
@@ -28,7 +28,7 @@ Target is all official supported versions of windows for x86-64 that allows manu
2828
* libboost-program-options
2929

3030
## Building
31-
The only supported build method is using the CMake<br/>
31+
The only supported build method is using CMake<br/>
3232
To build do:
3333
```bash
3434
./packdata.sh
@@ -52,7 +52,7 @@ sudo make install
5252
Windows build uses MXE (mxe.cc) and Docker. See "Building with Docker".
5353

5454
## Building using Docker
55-
As getting a C++ project with many dependencies to compile can be a daunting task then I have provided a couple of Docker images that can perform a build. Both for Windows and Linux.
55+
Since getting a C++ project with many dependencies to compile can be a daunting task, I have provided a couple of Docker images that can perform a build. Both for Windows and Linux.
5656

5757
The project should at all time be able to compile on the oldest and latest supported version of Ubuntu. This is tested with Docker.
5858

@@ -62,7 +62,7 @@ docker build -f source/misc/docker/Dockerfile.Ubuntu18.04build . -t blockattack_
6262
```
6363
and
6464
```bash
65-
docker build -f source/misc/docker/Dockerfile.WindoesBuild . -t blockattack_test
65+
docker build -f source/misc/docker/Dockerfile.WindowsBuild . -t blockattack_test
6666
```
6767

6868
## Source Structure
@@ -85,7 +85,7 @@ This project is a bit unconventional because I didn't know any better at the tim
8585

8686
## Reporting bugs
8787
Please report bugs on github: <https://github.com/blockattack/blockattack-game/issues>
88-
If possible: Check if the bug is already fixed in master. But if you don't know how to check it then just report it.
88+
If possible: Check if the bug is already fixed in master. But if you don't know how to check it, then just report it.
8989

9090
## Contributions
9191
Contributions are welcome. See CONTRIBUTING.md for details.
File renamed without changes.

source/misc/scripts/update_version.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ sed -i "/SET(CPACK_PACKAGE_VERSION_PATCH /c\\SET(CPACK_PACKAGE_VERSION_PATCH \"$
2525

2626
sed -i -E "s/#define VERSION_NUMBER.*$/#define VERSION_NUMBER \"$FULLVERSION\"/" source/code/version.h
2727
sed -i -E "s/!define PRODUCT_VERSION .*$/!define PRODUCT_VERSION \"$FULLVERSION\"/" "windows installer/install_script.nsi"
28-
sed -i -E "s/#ENV BLOCKATTACK_VERSION .*$/#ENV BLOCKATTACK_VERSION $FULLVERSION/" source/misc/docker/Dockerfile.WindoesBuild
28+
sed -i -E "s/#ENV BLOCKATTACK_VERSION .*$/#ENV BLOCKATTACK_VERSION $FULLVERSION/" source/misc/docker/Dockerfile.WindowsBuild
2929

3030
make
3131
pushd man

0 commit comments

Comments
 (0)