Skip to content
This repository has been archived by the owner on May 2, 2019. It is now read-only.

Commit

Permalink
Update to v0.4.0
Browse files Browse the repository at this point in the history
## [0.4.0] - 2015-09-10
### Updated
* Makefile

### Fixed
* Some buttons not working because of a copy paste error

### Changed
* Buttons are now a structure so I can put them into an array to check
them.
* Buttons are now an array so it is easier to loop through them all

### Added
* Namespaces

### Removed
* Button Class (really doesn't need to be a class yet)
  • Loading branch information
Patrick Rye committed Sep 10, 2015
1 parent 11fe310 commit da45643
Show file tree
Hide file tree
Showing 8 changed files with 235 additions and 302 deletions.
17 changes: 16 additions & 1 deletion Documentation/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,39 @@
All notable changes to this project will be documented here.
This project adheres to [Semantic Versioning](http://semver.org/)

## UNRELEASED [0.4.0] - 2015-09-09
## [0.4.0] - 2015-09-10
### Updated
* Makefile

### Fixed
* Some buttons not working because of a copy paste error

### Changed
* Buttons are now a structure so I can put them into an array to check them.
* Buttons are now an array so it is easier to loop through them all

### Added
* Namespaces

### Removed
* Button Class (really doesn't need to be a class yet)


## [0.3.0] - 2015-09-09
### Changed
* How buttons are made.

### Added
* You can now change the map
* You can now change your tile


## [0.2.0] - 2015-09-09
### Added
* Toolbox rendering
* Quick event handling


## [0.1.0] - 2015-09-08
### Notes
* Inital
8 changes: 7 additions & 1 deletion Documentation/Credits.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,13 @@
We would like to thank the following people for their work and support (knowingly or not) towards this project.

```
[Daniele De Santis] (http://www.danieledesantis.net/) for his icon that is currently being used for the project.
[PelFusion] (http://www.pelfusion.com/) for his icon that is currently being used for the project.
[Sandro Pereira] (http://sandrodcpereira.deviantart.com/?rnrd=50936) for his Coin image that is used.
[Hopstarter](http://hopstarter.deviantart.com/) for the error image that is used.
[SpoonGraphics](http://blog.spoongraphics.co.uk/) for the monster image that is used.
The Developers of the [SDL Library] (https://www.libsdl.org/credits.php)
Expand Down
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ all: $(OBJ) $(HEAD)
@echo "link $(EXE)"
@$(CC) $(OBJ) $(CFLAGS) $(LNFLAGS) -o$(EXE)

source/main.o: source/main.cpp source/version.h source/main.h source/button.h
source/button.o: source/button.cpp source/button.h source/main.h
source/main.o: source/main.cpp source/version.h source/main.h

clean:
rm -f source/*.o
Expand Down
41 changes: 0 additions & 41 deletions Source/button.cpp

This file was deleted.

23 changes: 0 additions & 23 deletions Source/button.h

This file was deleted.

Loading

0 comments on commit da45643

Please sign in to comment.