Skip to content

Releases: fluffos/fluffos

v2017.2018120702

08 Dec 07:59
Compare
Choose a tag to compare

This is the classic fluffos3 , with autoconf/make , works under ubuntu, centos and cygwin.
This release track is for small bug fixes only.

3.0.20170907

07 Sep 19:08
Compare
Choose a tag to compare

On moving forward, all release in FluffOS 3.0 will be tagged as "production ready" release. There will however only be 1 supported release version, which is the latest release, it is strongly recommended you to migrate to new version whenever possible.

fluffos-3.0.20170831-rc0...fluffos-3.0.20170907

[FEATURE]: fix and enabled PACKAGE_MATRIX by default.
[FEATURE]: print all LPC predefines on startup.
[BUG]: memory leak in compress/uncompress EFUN

And misc build process optimizations.

FLUFFOS 3.0.20170831 RC0

30 Aug 22:57
Compare
Choose a tag to compare
Pre-release

Preparing for the first supported FluffOS 3.0 release

Changelog summary since fluffos-3.0-alpha8.2

fluffos-3.0-alpha8.2...fluffos-3.0.20170831-rc0

[BUG] icode optimization bug with time_expression
[FEATURE] read_file now ignores line-ending, which means it can handles dos/unix lineending just file.
[BUG] use telenet_printf to correctly sendout LRNUL/CRLF, also various fixes regarding libtelnet, MSSP etc.
[FEATURE] reintroduce #define NO_LIGHT
[BUG] various crash fixes.
[FEATURE] Enable 32bit LPC address by default
[FEATURE] restore disassembler functionality
[BUG] Fix issues with F_TRANSFER_LOCAL corrupting locals variables for dumping trace.

And various sort of code cleanup and refactoring is done.

fluffos-3.0-alpha8.2

05 Jun 05:23
Compare
Choose a tag to compare
fluffos-3.0-alpha8.2 Pre-release
Pre-release

Bug Fix:

  1. Fix check_valid_path() issue in restore_object().
  2. Fix compatibility issue introduced in restore_object().
  3. Fix compatibility issue.

fluffos-3.0-alpha8.1

03 Jun 15:15
Compare
Choose a tag to compare
fluffos-3.0-alpha8.1 Pre-release
Pre-release

Significant changes

  1. This release migrated significant part of local_options into runtime config. Adding set_config() efun, allowing changing runtime config. see src/testsuite/etc/config.test For up-to-date list.
  2. Sync thirdparty/libtelnet @ HEAD
  3. fix #251 memory accounting int overflow
  4. Upgrade object ref counter to uint32, This enables large mud , and more call_outs.
  5. Adding runtime config controlled new behavior : Make ed deal with chinese characters. Sprintf ignore ANSI colors.
  6. Make replace_program with function reference a warning instead.
  7. Restore call_out(0) prevention. …
  8. Some work on restore_object() to reduce memory usage etc.

Detailed change log in
fluffos:fluffos-3.0-alpha8.0...fluffos:fluffos-3.0-alpha8.1

fluffos-3.0-alpha8.0

14 Apr 16:11
Compare
Choose a tag to compare
fluffos-3.0-alpha8.0 Pre-release
Pre-release

It's been a while! Way too many commits has been cumulating and the release was delayed by a big code base reorganization.

Here are a few highlights:

  1. Huge code base reorganization. Driver code are now organized into 3 groups: base (include shared utils), VM (include LPC VM & compilers) , Packages. There are some driver centric (like networking code) left in the root tree. The VM part is also a bit of a mess, but future effort will continue to refactor them.

There has been a huge amount of header inclusion cleanups, view src/base/README and src/vm/README for details.

BUILD process is also improved, representing a much cleaner build executing structure. EDITSOURCE is gone!!!

  1. Driver now implements a "gametick msec" config option, which defaults to 100ms, HEARTBEAT_INTERVAL compile options is removed, and a new runtime option "heartbeat interval msec" is added.

  2. Driver now implements a concept of game-tick, On every game-tick, driver starts a new scheduling round, that includes executing pending call_out, heartbeat and various game related routines. At the end of this round, driver sleeps for "one gametick". Gametick is guaranteed not overlap. (also know as fixed interval scheduling, not fixed rate scheduling) .

With this concept, everything except of networking event in the driver is now executed wrt gametick time, call_out now schedules callback in game time, heartbeat now executes on the boundary of gametick time.

  1. In older FluffOS, the driver would periodically attempt to "catch up" with realworld time by executing multiple round of callout/heartbeats in a for loop. This has been removed. call_out_walltime() has been added so LPC can still schedule a event occurring at realworld time. ( A typical usage of this is that you want a call executing every 3600 second in real world time, not the game time).

  2. Both call_out and call_out_walltime now accept LPC_FLOAT instead of LPC_INT. the unit is still second, call_out's execution will be rounded to multiply of "gametick msec" , while call_out_walltime can schedule on msec resolution.

For example, if gametick msec is 100ms, callout(..., 0.5) means it will execute callback 5 gameticks later.

  1. Continuing rewriting manually managed array to STL containers , reducing memory fragmentation.

Cheers.

Fluffos 3.0 (alpha7.4)

03 Jul 04:39
Compare
Choose a tag to compare
Pre-release

3.0 vs 2.0 Summary & Previous releases log.

https://github.com/fluffos/fluffos/blob/next-3.0/ChangeLog.fluffos-3.x

FluffOS 3.0-alpha7.4
New features

  • PACKAGE_DB: MYSQL NewDecimal Type This is needed in my system for read
    a column SUM(xxx) in a SELECT. (Zoilder)
  • Various time tracking efun uses real world time as it should be.
  • Driver now calls reclaim_objects() automatically.
  • Default evaluator stack has been increased to 6000.

Bug Fix:

  • Sending string over UDP port now doesn't contain trailing \0.

Misc

  • Moved many internal options to options_internal.
  • Optimized funciton lookup cache, also increased default cache size. (CPU saver!)
  • New tick_event loop and callback tree implementation.
  • Adjusted backend() loop, should have no behavior change.
  • Adding back 32bit compile mode test.
  • various compile fixing, althrough not complete, but should be compileable under
    CYGWIN64 and freebsd using gcc 4.8.

Fluffos 2.27 (stable)

03 Jul 04:38
Compare
Choose a tag to compare

Current stable relase