diff --git a/README.md b/README.md index ea8001c..99ac6f4 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -![DrBrainf-ck](./logo.png) +![DrBrainf-ck](./imgs/logo_small.png) # DrBrainf\*ck @@ -22,16 +22,11 @@ More documentation of this command is avaliable using the `-h` flag. - Editor supports basic syntax highlighting; - Batch input through `,` supported through GUI. -## Bugs +## Documentation -- No validation or user-friendly error handling. +Please find more documentation in the file `README.pdf`. -## Feedback +## Changes from proposal -### Add documentation about the language for someone that doesn't know it. How does it work? What are the instructions? What do they do? Example programs? - -WIP - -### In your "running" section explain how to run the interpreter without the GUI. - -Done with `cli.rkt`. +Please find the document regarding changes from the original proposal in the +file `changes.pdf`. diff --git a/build.sh b/build.sh index 72b866d..986df9e 100755 --- a/build.sh +++ b/build.sh @@ -1,6 +1,6 @@ #!/bin/sh ln -s gui.rkt DrBrainf-ck.rkt -raco exe --ico logo.ico --icns logo.icns --gui DrBrainf-ck.rkt +raco exe --ico imgs/logo.ico --icns imgs/logo.icns --gui DrBrainf-ck.rkt rm DrBrainf-ck.rkt diff --git a/add.bf b/examples/add.bf similarity index 100% rename from add.bf rename to examples/add.bf diff --git a/hello.bf b/examples/hello.bf similarity index 100% rename from hello.bf rename to examples/hello.bf diff --git a/logo.icns b/imgs/logo.icns similarity index 100% rename from logo.icns rename to imgs/logo.icns diff --git a/logo.ico b/imgs/logo.ico similarity index 100% rename from logo.ico rename to imgs/logo.ico diff --git a/logo.png b/imgs/logo.png similarity index 100% rename from logo.png rename to imgs/logo.png diff --git a/imgs/logo_small.png b/imgs/logo_small.png new file mode 100644 index 0000000..439a33e Binary files /dev/null and b/imgs/logo_small.png differ