Changelog for
squirrel-3.0.7-26.1.x86_64.rpm :
Thu Mar 26 13:00:00 2015 p.drouandAATTgmail.com
- Update to version 3.0.7
* newthread and sq_newthread() no longer resets the base lib
function in the root table
* exceptions in the _inherited metamethod are propagated
* \'in\' operator performance improvement
* fixed bug in print()
* fixed some documentation bug
- Use download Url as source
- Update patches;
* squirrel-gcc47.patch
* squirrel-ptr_conversion.patch
Wed Jul 24 14:00:00 2013 cooloAATTsuse.com
- the dirname macro is something special in rpm 4.11, so rename
the macro to fix build
Wed May 2 14:00:00 2012 joop.boonenAATTopensuse.org
- update to version 3.0.2
+ added sq_gethash API
+ now array.sort() is implemented with heapsort
+ now floats in scientific notation also accept numbers with no \'.\' (eg. 1e+6 or 1e6)
+ fixed some warning
+ fixed some documentation
+ fixed bug in GC
Sat Mar 24 13:00:00 2012 dimstarAATTopensuse.org
- Add squirrel-gcc47.patch: Fix build with gcc 4.7.
Mon Nov 28 13:00:00 2011 cooloAATTsuse.com
- calling autoreconf after patching all about auto
* sounds sane
Tue Nov 15 13:00:00 2011 pthAATTsuse.de
- Change license to MIT (bnc#730449).
Tue Nov 15 13:00:00 2011 pthAATTsuse.de
- Add copyright to spec file.
Mon Nov 14 13:00:00 2011 jengelhAATTmedozas.de
- Remove redundant/unwanted tags/section (cf. specfile guidelines)
Thu Nov 10 13:00:00 2011 pthAATTsuse.de
- Autoconfiscate the package so that handling of libraries and
installation gets easier.
- Include cstdint/stdint.h and define squirrel types using the
* _t macros.
- Rename the sq binary to sqrl to fix conflict with ispell.
- Fix aliasing issues by using unions.
Thu Aug 25 14:00:00 2011 larsAATTlinux-schulserver.de
- update to 3.0: please refer to
/usr/share/doc/packages/squirrel/HISTORY for all the changes
- split out doc package with all the reference and standard
libraries manuals
Sat Sep 26 14:00:00 2009 larsAATTlinux-schulserver.de
- update to 2.2.3
+ added sq_getfunctioninfo
+ added compile time flag SQUSEDOUBLE to use double precision floats
+ added global slot _floatsize_ int the base lib to recognize single
precision and double precision builds
+ sq_wakeupvm can now resume the vm with an exception
+ added sqstd_format
+ generators can now be instantiated by calling sq_call() or closure.call()
+ fixed a bug in sqstd_printcallstack(thx takayuki_h)
+ fixed modulo by zero(thx jup)
+ fixed negative enums and constants
+ fixed generator crash bug if invoked as tail call (thx Mr.Accident)
+ fixed some minor bug