]> git.lizzy.rs Git - nothing.git/blobdiff - README.md
Remove TODO(#822)
[nothing.git] / README.md
index 1cf1aa14c8b7ff95cdf983937ec9e23b4d5b99cb..b99fe69e9b829b8a0a0a9ec768549d1df9b9f280 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,4 +1,5 @@
 [![Build Status](https://travis-ci.org/tsoding/nothing.svg?branch=master)](https://travis-ci.org/tsoding/nothing)
+[![Build status](https://ci.appveyor.com/api/projects/status/gxfgojq4ko98e0g0/branch/master?svg=true)](https://ci.appveyor.com/project/rexim/nothing/branch/master)
 
 # Nothing
 
@@ -7,11 +8,8 @@
 
 ## Dependencies
 
-<!-- TODO: README deps are outdated -->
-
 - [gcc]
 - [cmake]
-- [python3]
 - [libsdl2-dev]
 - [libsdl2-mixer-dev]
 - [inotify-tools]
 ### Ubuntu
 
 ```console
-$ sudo apt-get install gcc cmake libsdl2-dev libsdl2-mixer-dev python3 inotify-tools
+$ sudo apt-get install gcc cmake libsdl2-dev libsdl2-mixer-dev inotify-tools libxml2-dev
+```
+
+### MacOS
+
+```console
+$ brew install gcc cmake sdl2 sdl2_mixer
 ```
 
 ### NixOS
 
 For [NixOS] we have a development environment defined in [default.nix]
 with all of the required dependencies. You can enter the environment
-`nix-shell` command:
+with `nix-shell` command:
 
 ```console
 $ nix-shell
 ```
 
+### Arch Linux
+
+```console
+$ sudo pacman -S gcc cmake sdl2 sdl2_mixer inotify-tools libxml2
+```
+
 ### Windows
 
 See [Build on Windows][build-on-windows] section.
@@ -43,7 +53,7 @@ $ mkdir build
 $ cd build/
 $ cmake ..
 $ make
-$ ./nothing ../levels/level-01.txt
+$ ./nothing ../levels/
 $ ./nothing_test
 ```
 
@@ -87,10 +97,10 @@ Generally creating a level looks like:
 SVG File -> Custom Level File -> Game
 ```
 
-To convert SVG to the level file and run [svg2rects.py] script:
+To convert SVG to the level file and run svg2level program:
 
 ```console
-$ python3 ./devtools/svg2rects.py -i <svg-file> -o <level-file>
+$ ./build/svg2level compile <svg-file> <level-file>
 ```
 
 All of the levels reside in the [./levels/] folder. Use
@@ -172,7 +182,6 @@ You can support my work via
 [cmake]: https://cmake.org/
 [libsdl2-dev]: https://www.libsdl.org/
 [libsdl2-mixer-dev]: https://www.libsdl.org/projects/SDL_mixer/
-[python3]: https://www.python.org/
 [NixOS]: https://nixos.org/
 [default.nix]: ./default.nix
 [build-on-windows]: #build-on-windows