Skip to content

Commit

Permalink
Version 1.4.0 (The curly conglomerate)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ilu committed Jan 22, 2021
1 parent 36ccd32 commit 8704589
Show file tree
Hide file tree
Showing 6,856 changed files with 1,744,743 additions and 148,735 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
57 changes: 49 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@
*.elf
*.exe
*.EXE
*.dxe
*.DXE
*.out
*.app
*.i*86
*.x86_64
*.hex

# Libraries
*.lib
Expand All @@ -17,16 +24,9 @@
*.so.*
*.dylib

# Executables
*.exe
*.out
*.app
*.i*86
*.x86_64
*.hex

# dependencies
*.d
*.undef

# other files
edi.js
Expand All @@ -44,6 +44,7 @@ CWSDPMI.SWP
stderr.txt
stdout.txt
miktest.c
dexport.c

# other dirs
doc/html/
Expand Down Expand Up @@ -76,3 +77,43 @@ DOjS-cppcheck-build-dir/
lpng1636/pnglibconf.h
dzcomm/obj/djgpp/asmdef.s
JSBOOT.ZIP
cacert.pem
curl-7.74.0/lib/curl_config.h
openssl-1.1.1i/libcrypto.pc
openssl-1.1.1i/libssl.pc
openssl-1.1.1i/openssl.pc
openssl-1.1.1i/crypto/buildinf.h
openssl-1.1.1i/crypto/bf/bf-586.s
openssl-1.1.1i/crypto/bn/bn-586.s
openssl-1.1.1i/crypto/bn/co-586.s
openssl-1.1.1i/crypto/bn/x86-gf2m.s
openssl-1.1.1i/crypto/bn/x86-mont.s
openssl-1.1.1i/crypto/camellia/cmll-x86.s
openssl-1.1.1i/crypto/cast/cast-586.s
openssl-1.1.1i/crypto/chacha/chacha-x86.s
openssl-1.1.1i/crypto/des/crypt586.s
openssl-1.1.1i/crypto/des/des-586.s
openssl-1.1.1i/crypto/ec/ecp_nistz256-x86.s
openssl-1.1.1i/crypto/md5/md5-586.s
openssl-1.1.1i/crypto/modes/ghash-x86.s
openssl-1.1.1i/crypto/poly1305/poly1305-x86.s
openssl-1.1.1i/crypto/rc4/rc4-586.s
openssl-1.1.1i/crypto/ripemd/rmd-586.s
openssl-1.1.1i/crypto/sha/sha1-586.s
openssl-1.1.1i/crypto/sha/sha256-586.s
openssl-1.1.1i/crypto/sha/sha512-586.s
openssl-1.1.1i/include/crypto/bn_conf.h
openssl-1.1.1i/include/crypto/dso_conf.h
openssl-1.1.1i/include/openssl/opensslconf.h
5.BMP
5.PCX
5.PNG
5.TGA
SCR.BMP
SCR.PCX
SCR.PNG
SCR.TGA
TMP1.TMP
TMP1.ZIP
TMP2.TMP
TMP2.ZIP
2 changes: 1 addition & 1 deletion 3dfx-glide.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
MIT License
Copyright (c) 2019-2020 Andre Seidelt <[email protected]>
Copyright (c) 2019-2021 Andre Seidelt <[email protected]>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion 3dfx-glide.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
MIT License
Copyright (c) 2019-2020 Andre Seidelt <[email protected]>
Copyright (c) 2019-2021 Andre Seidelt <[email protected]>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion 3dfx-state.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
MIT License
Copyright (c) 2019-2020 Andre Seidelt <[email protected]>
Copyright (c) 2019-2021 Andre Seidelt <[email protected]>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion 3dfx-state.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
MIT License
Copyright (c) 2019-2020 Andre Seidelt <[email protected]>
Copyright (c) 2019-2021 Andre Seidelt <[email protected]>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
20 changes: 10 additions & 10 deletions 3dfx-texinfo.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
MIT License
Copyright (c) 2019-2020 Andre Seidelt <[email protected]>
Copyright (c) 2019-2021 Andre Seidelt <[email protected]>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down Expand Up @@ -212,31 +212,31 @@ static void new_Texinfo(js_State *J) {

// add properties
js_pushstring(J, fname);
js_defproperty(J, -2, "filename", JS_READONLY | JS_DONTENUM | JS_DONTCONF);
js_defproperty(J, -2, "filename", JS_READONLY | JS_DONTCONF);

js_pushnumber(J, ti->info.largeLodLog2);
js_defproperty(J, -2, "largeLod", JS_READONLY | JS_DONTENUM | JS_DONTCONF);
js_defproperty(J, -2, "largeLod", JS_READONLY | JS_DONTCONF);

js_pushnumber(J, ti->info.smallLodLog2);
js_defproperty(J, -2, "smallLod", JS_READONLY | JS_DONTENUM | JS_DONTCONF);
js_defproperty(J, -2, "smallLod", JS_READONLY | JS_DONTCONF);

js_pushnumber(J, ti->info.aspectRatioLog2);
js_defproperty(J, -2, "aspectRatio", JS_READONLY | JS_DONTENUM | JS_DONTCONF);
js_defproperty(J, -2, "aspectRatio", JS_READONLY | JS_DONTCONF);

js_pushnumber(J, ti->info.format);
js_defproperty(J, -2, "format", JS_READONLY | JS_DONTENUM | JS_DONTCONF);
js_defproperty(J, -2, "format", JS_READONLY | JS_DONTCONF);

js_pushnumber(J, ti->tableType);
js_defproperty(J, -2, "tableType", JS_READONLY | JS_DONTENUM | JS_DONTCONF);
js_defproperty(J, -2, "tableType", JS_READONLY | JS_DONTCONF);

js_pushnumber(J, ti->textureSize);
js_defproperty(J, -2, "textureSize", JS_READONLY | JS_DONTENUM | JS_DONTCONF);
js_defproperty(J, -2, "textureSize", JS_READONLY | JS_DONTCONF);

js_pushnumber(J, ti->startAddress);
js_defproperty(J, -2, "address", JS_DONTENUM | JS_DONTCONF);
js_defproperty(J, -2, "address", JS_DONTCONF);

js_pushnumber(J, ti->tmu);
js_defproperty(J, -2, "tmu", JS_DONTENUM | JS_DONTCONF);
js_defproperty(J, -2, "tmu", JS_DONTCONF);
}

/**
Expand Down
2 changes: 1 addition & 1 deletion 3dfx-texinfo.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
MIT License
Copyright (c) 2019-2020 Andre Seidelt <[email protected]>
Copyright (c) 2019-2021 Andre Seidelt <[email protected]>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# Version 1.4.0 (The curly conglomerate) / Jan 22, 2021
* Replaced loadpng+libpng by alpng to reduce EXE size.
* Added fast integer array class `IntArray`
* Added `ReadInts()` and `WriteInts()` to `File`, `Zip` and `Socket` to speed up data IO.
* Improved type checking for parameters.
* Added cURL and OpenSSL support.
* FIXED: memory leak in editor
* FIXED: editor crashed when deleting selected text
* Added loadable module support during runtime
* IPX, PNG, Allegro3D, COMPort and cURL are loadable modules now

# Version 1.3.0 (The ZIPpy serving) / Nov 13, 2020
* Added ZIP file access through `Zip()` class
* Added `StringToBytes()` and `BytesToString()`
Expand Down
Loading

0 comments on commit 8704589

Please sign in to comment.