Skip to content

Commit

Permalink
The second coming
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperIlu committed Feb 17, 2019
1 parent db0bc0a commit 832ff3a
Show file tree
Hide file tree
Showing 38 changed files with 4,678 additions and 1,553 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Expand Up @@ -27,10 +27,16 @@ DOjS
*.hex

JSLOG.TXT
TEST.TXT
stderr.txt
stdout.txt
grx249/bin/fnt2c
grx249/bin/bin2c
grx249/bin/xmodetest
grx249/src/systag.002
grx249/src/systag.004

jsboot/fonts
todo
upx
cylindrix
19 changes: 19 additions & 0 deletions .vscode/c_cpp_properties.json
@@ -0,0 +1,19 @@
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**",
"${workspaceFolder}/grx249/include/**",
"${workspaceFolder}/grx249/addons/bmp/**",
"${workspaceFolder}/mujs-1.0.5/**"
],
"defines": [],
"compilerPath": "/usr/bin/gcc",
"cStandard": "c11",
"cppStandard": "c++17",
"intelliSenseMode": "clang-x64"
}
],
"version": 4
}
11 changes: 11 additions & 0 deletions .vscode/settings.json
@@ -0,0 +1,11 @@
{
"files.associations": {
"Makefile.unix": "makefile",
"sbsound.h": "c",
"stdbool.h": "c"
},
"editor.formatOnSave": true,
"editor.tabSize": 8,
"editor.insertSpaces": false,
"C_Cpp.clang_format_style": "{ BasedOnStyle: Google, ColumnLimit: 180, IndentWidth: 4 }",
}
18 changes: 18 additions & 0 deletions CHANGELOG.md
@@ -0,0 +1,18 @@
**Version 0.6 (the 2nd coming)**
* Added CHANGELOG
* Now linking with DJGPP FPU emulation (`-lemu`)
* Added support for file reading/writing (see `Read()` and `File()`)
* Fixed Makefile.unix
* Reformated the whole code. I didn't notice my notebook had different settings in VSCode when releasing v0.5
* added `Read()` and `Require()`
* Finally some stack traces in the logfile in case of errors
* improved logfile output for detected hardware
* switched to new script format with `Setup()` and `Loop()`
* Added `MouseSetCursorMode()`
* Fixed object creation
* Added MIDI playing
* Added IPX networking

**Version 0.5 (first release)**
* Initial release
* Binary release no longer available because of the old script format

0 comments on commit 832ff3a

Please sign in to comment.