Skip to content

Commit d65f36b

Browse files
Moved some more things around
1 parent 3c07fd2 commit d65f36b

File tree

38 files changed

+90
-181
lines changed

38 files changed

+90
-181
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
*.obj
88
*.elf
99
obj/
10+
release/
1011

1112
# Precompiled Headers
1213
*.gch

changelog.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,28 @@
22

33
## [Unreleased](https://github.com/CE-Programming/toolchain/tree/HEAD)
44

5-
[Full commit list](https://github.com/CE-Programming/toolchain/compare/v6.95...HEAD)
5+
[Full commit list](https://github.com/CE-Programming/toolchain/compare/v7.0...HEAD)
6+
7+
# [v7.0](https://github.com/CE-Programming/toolchain/releases/tag/v7.0) (2017-02-17)
8+
9+
[Full commit list](https://github.com/CE-Programming/toolchain/compare/v6.95...v7.0)
10+
11+
### Toolchain
12+
- Rework entire toolchain setup and hierarchy ([`559dd1c`](https://github.com/CE-Programming/toolchain/commit/559dd1c) - [MattWaltz](https://github.com/MattWaltz))
13+
- Doxygen header files ([`4402637`](https://github.com/CE-Programming/toolchain/commit/4402637) - [MattWaltz](https://github.com/MattWaltz))
14+
15+
### Libraries
16+
17+
#####  GRAPHX
18+
- Added gfx_FloodFill ([`60006ac`](https://github.com/CE-Programming/toolchain/commit/60006ac) - [MattWaltz](https://github.com/MattWaltz))
19+
- Added gfx_ScaleSprite ([`7618598`](https://github.com/CE-Programming/toolchain/commit/7618598) - [MattWaltz](https://github.com/MattWaltz))
20+
- Added gfx_SetFontHeight ([`4402637`](https://github.com/CE-Programming/toolchain/commit/4402637) - [MattWaltz](https://github.com/MattWaltz))
21+
- Optimized ClipDraw helper function ([`82e5d5a`](https://github.com/CE-Programming/toolchain/commit/82e5d5a) - [MattWaltz](https://github.com/MattWaltz))
22+
- Optimized gfx_AllocSprite ([`2c12310`](https://github.com/CE-Programming/toolchain/commit/2c12310) - [Runer112](https://github.com/Runer112))
23+
24+
# [v6.999](https://github.com/CE-Programming/toolchain/releases/tag/v6.999) (2017-02-17)
25+
26+
[Full commit list](https://github.com/CE-Programming/toolchain/compare/v6.95...v6.999)
627

728
### Toolchain
829
- Add scripts to build/clean libraries and examples easily ([`61d915f`](https://github.com/CE-Programming/toolchain/commit/61d915f) - [MattWaltz](https://github.com/MattWaltz))

examples/fileio_detect/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#include <string.h>
1212

1313
/* Shared library headers -- depends on which ones you wish to use */
14-
#include <libs/fileioc.h>
14+
#include <lib/fileioc.h>
1515

1616
/* Function prototypes */
1717
void printText(int8_t xpos, int8_t ypos, const char *text);

examples/fileio_factorize/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#include <string.h>
1212

1313
/* Shared library headers - depends on which ones you wish to use */
14-
#include <libs/fileioc.h>
14+
#include <lib/fileioc.h>
1515

1616
void prime_factors(unsigned int n);
1717

examples/fileio_os_vars/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#include <string.h>
1212

1313
/* Shared library headers - depends on which ones you wish to use */
14-
#include <libs/fileioc.h>
14+
#include <lib/fileioc.h>
1515

1616
/* Some function prototypes. Maybe in the future these functions will become a library */
1717
cplx_t Int24sToCplx(int real, int imag);

examples/fileio_read_write/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#include <string.h>
1212

1313
/* Shared library headers -- depends on which ones you wish to use */
14-
#include <libs/fileioc.h>
14+
#include <lib/fileioc.h>
1515

1616
/* Declare some strings and variables */
1717
const char nameAppVar[] = "AppVar";

examples/fileio_tokens/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#include <string.h>
1212

1313
/* Shared library headers -- depends on which ones you wish to use */
14-
#include <libs/fileioc.h>
14+
#include <lib/fileioc.h>
1515

1616
/* Declare some strings and variables */
1717
const char prgmName[] = "ABC";

examples/gfx_buffered_cube/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#include <string.h>
1212

1313
/* Shared libraries */
14-
#include <libs/graphx.h>
14+
#include <lib/graphx.h>
1515

1616
/* Put function prototypes here */
1717
void rotate(void);

examples/gfx_buffering/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#include <string.h>
1212

1313
/* Shared libraries */
14-
#include <libs/graphx.h>
14+
#include <lib/graphx.h>
1515

1616
/*
1717
* This tutorial is meant to be played around with to get a feeling for how buffering works

examples/gfx_char/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#include <string.h>
1212

1313
/* Shared libraries */
14-
#include <libs/graphx.h>
14+
#include <lib/graphx.h>
1515

1616
/* Use some random color as the transparent one */
1717
#define TRANSPARENT_COLOR 10

0 commit comments

Comments
 (0)