diff --git a/COPYRIGHT b/COPYRIGHT index 4530d81..3adb5e7 100644 --- a/COPYRIGHT +++ b/COPYRIGHT @@ -1,4 +1,4 @@ -Copyright (c) 2003-2015 Alberto Demichelis +Copyright (c) 2003-2016 Alberto Demichelis Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/HISTORY b/HISTORY index 38b1e12..c179331 100644 --- a/HISTORY +++ b/HISTORY @@ -6,7 +6,9 @@ -added thread.wakeupthrow() -added sq_pushthread -added \u and \U escape sequence for UTF8,UTF16 or UCS4 characters +-added CMake scripts(thx Fabian Wolff) -the escape character \x is based on sizeof(SQChar) +-fixed several warnings(thx Markus Oberhumer) -fixed optimizer bug in compound arith oprators(+=,-= etc...) -fixed sq_getrefvmcount() (thx Gerrit) -fixed sq_getrefcount() when no references were added with sq_addref() (thx Gerrit) diff --git a/README b/README index af1a656..f2b3014 100644 --- a/README +++ b/README @@ -4,7 +4,7 @@ The programming language SQUIRREL 3.1 stable This project has successfully been compiled and run on * Windows (x86 and amd64) * Linux (x86, amd64 and ARM) - * Solaris (x86 and amd64) + * Illumos (x86 and amd64) The following compilers have been confirmed to be working: MS Visual C++ 6.0 (all on x86 and amd64) @@ -12,14 +12,14 @@ The following compilers have been confirmed to be working: 7.1 v 8.0 9.0 - 10.0 --- - 12.0 (only on x86) + 10.0 + 12.0 --- MinGW gcc 3.2 (mingw special 20020817-1) Cygnus gcc 3.2 Linux gcc 3.2.3 4.0.0 (x86 and amd64) 5.3.1 (amd64) - Solaris gcc 4.0.0 (x86 and amd64) + Illumos gcc 4.0.0 (x86 and amd64) ARM Linux gcc 4.6.3 (Raspberry Pi Model B) diff --git a/include/squirrel.h b/include/squirrel.h index 33c7b05..221a0ae 100644 --- a/include/squirrel.h +++ b/include/squirrel.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2014 Alberto Demichelis +Copyright (c) 2003-2016 Alberto Demichelis Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -62,7 +62,7 @@ struct SQOuter; #include "sqconfig.h" #define SQUIRREL_VERSION _SC("Squirrel 3.1 stable") -#define SQUIRREL_COPYRIGHT _SC("Copyright (C) 2003-2015 Alberto Demichelis") +#define SQUIRREL_COPYRIGHT _SC("Copyright (C) 2003-2016 Alberto Demichelis") #define SQUIRREL_AUTHOR _SC("Alberto Demichelis") #define SQUIRREL_VERSION_NUMBER 310