moved lbi:storage accessor to get_storage()
[language-befunge.git] / Changes
blob255f9807dee09a59c892bd878e79a8ffae07bbd6
1 Revision history for Language::Befunge.
3 High-level changelog
4 ====================
6 4.0x    LB:LS split in LBS/LBW
7 3.0x    multidims, multiops possibilities
8 2.0x    optimizing + test coverage
9 1.2x    real LaheySpace support
10 1.1x    support for Build.PL
11 1.0x    official release + mailing-list
12 0.3x    oo interface
13 0.2x    libraries semantics
14 0.0x    initial work, with basic capabilities
17 Low-level changelog
18 ===================
20 4.08 Sun Nov 16 11:23:13 CET 2008
21  - change libs semantics when unloading under stack
22  - fix on some extensions
24 4.07 Sat Nov 15 19:44:27 CET 2008
25  - fix month in y instruction
26  - new fingerprint: BASE - Non-standard math bases extension
27  - new fingerprint: BOOL - Boolean operations extension
28  - new fingerprint: EVAR - Environment variables extention
29  - new fingerprint: HRTI - High-Resolution Timer extension
30  - new fingerprint: MODU - Modulo Arithmetic extension
32 4.06 Tue Nov 11 17:50:47 CET 2008
33  - new fingerprint: NULL - Extension to opacify loaded extensions
34  - new fingerprint: ORTH - Orthogonal easement extension
35  - new fingerprint: PERL - Extension to embed Perl within Befunge
36  - new fingerprint: REFC - Referenced cells extension
37  - new fingerprint: ROMA - Roman numerals extension
39 4.05 Mon Nov 10 15:46:00 CET 2008
40  - handprint changed to JQBF
41  - mycology compliance. this comes with some changes in unclear semantics:
42         . spaces and comments are now slurped in 0 tick
43         . k interprets the instructions at its position
45 4.04 Mon Jul 28 18:54:02 CEST 2008
46  - speeding LBS->store by 55+% (mg)
47  - input not cached per ip, but per interpreter (mg)
48  - bringing test coverage up to 100% (mg, jq)
50 4.03 Fri Jul  4 12:14:45 CEST 2008
51  - adding 'm' opcode (z if) (mg)
52  - completing code coverage up to 97.5% (mg, jq)
53  - adding optional module for TEST lib (jq)
55 4.02 Thu Jul  3 20:44:11 CEST 2008
56  - completing list of required modules, even if a corelist one
57  - providing empty base class LBW
59 4.01 Mon Jun  9 17:33:48 CEST 2008
60  - Test::Exception now a hard prereq of the module
62 4.00 Sun Jun  8 17:08:22 CEST 2008
63  - split LB::LaheySpace in LB::Storage and LB::Wrapping (jq, mg)
64  - first storage implementations:
65     . LBS:2D:Sparse      2-dims, sparse hash (jq)
66     . LBS:Generic:AoA    n-dims, array of arrays (jq, mg)
67     . LBS:Generic:Vec    n-dims, vec-based, supporting lbsgvxs (mg)
68     . LBS:Generic:Sparse n-dims, sparse hash (mg)
69  - first wrapping implementations:
70     . LBW:LaheySpace    funge98 wrapping (jq)
71  - LBI->new:
72     . stricter params checking (jq)
73     . easier to expand with syntaxes (jq)
74     . new alternative syntaxes (mg)
75  - requiring perl 5.10 (jq, mg)
76  - API changes:
77     . LBV has additional rasterize method (moved and expanded from LBGSGA) (mg)
78     . LBV supports accelerated rasterize method in LBVXS > 1.0.0 (mg)
79     . labels_lookup should return Vector objects. (mg)
80     . expand() should exist for all Storage modules. (mg)
81     . add get_dims() to the Storage API. (mg)
82  - new befunge lib: TEST (book)
86 3.05 Tue Jan 22 17:52:27 CET 2008
87  - LBV now uses an array internally for more efficiency
88  - LBV tries to load transparently LBVXS for even more speed
89  - LB:LaheySpace.pm now also understand \r\n and \r terminated programs
90  - some tests cleaning
92 3.04 Wed Jan  9 17:50:58 CET 2008
93  - more robust way of skipping tests when Test::Exception isn't present
94    . fix t/1-classes/vector.t and t/3-lahey/generic.t
95    . fix RT ticket #32164
97 3.03 Sun Jan  6 19:05:09 CET 2008
98  - tests reorganized
100 3.02 Mon Nov 26 13:02:20 CET 2007
101  - kwalitee/cpants release
103 3.01 Wed Oct 24 14:22:24 CEST 2007
104  - fixing stricture
106 3.00 Fri Sep 28 17:41:27 CEST 2007
107  - new LB::Vector class for abstracting dimension (courtesy of Mark Glines)
108  - new LB::LaheySpace::Generic, a n-dims laheyspace (courtesy of Mark Glines)
109  - support for n-dims
110  - ops now belong to their own modules, with one test per op
111  - new LB::Interpreter class to create the combination dims / ops
112  - possibility to choose the set of ops: unefunge, befunge, generic-funge
113  - move to lib/ layout
117 2.08 Mon May 28 19:36:11 CEST 2007
118  - skipping a failing exec test on windows
120 2.07 Sat May 26 15:05:46 CEST 2007
121  - kwalitee release: LICENSE, pod tests, etc.
123 2.06 Tue May  2 18:02:12 CEST 2006
124  - corrected input error introduced during accessor split
125  - migrated 02befunge.t, 10stdio.t and 22lib.t to Test::More
126  - added tests for generic Befunge.pm test
127  - added tests for output errors
128  - added tests for library semantics
130 2.05 Mon May  1 18:34:18 CEST 2006
131  - migrated 03ip.t to Test::More
132  - updated 03ip.t to 100% cover L::B::IP
133  - updated 04lahey.t to 100% cover L::B::LaheySpace
134  - test-suite coverage is now 95.7%
136 2.04 Sun Apr 30 15:47:16 CEST 2006
137  - removed cargo-cult proto in constructors
138  - removed OO indirect notations
139  - renamed private methods to begin with _
140  - migrated 04lahey.t to Test::More
141  - ran coverage on the test-suite: 93.6%
143 2.03 Fri Feb 17 17:04:49 CET 2006
144  - use-ing integer for faster computations
146 2.02 Fri Feb 17 15:36:08 CET 2006
147  - rewritten accessors for L::B::IP, using same technik as L::B
148  - doc updated
150 2.01 Fri Feb 17 15:15:43 CET 2006
151  - rewritten accessors generation, for another speedup
152  - adapted the documentation
154 2.00 Fri Feb 17 14:48:54 CET 2006
155  - splitted accessors for L::B in get_* and set_*, for a small speedup. note:
156    this will break your code if you're running your own inner-loop!
157  - beginning of L::B 2.x, an optimization serie
161 1.20 Mon Feb 13 18:08:28 CET 2006
162  - fixed wrapping in L::B::LaheySpace::move_ip_forward to comply with
163    LaheySpace specs (courtesy of Mark Glines)
165 1.11 Tue Feb  7 18:07:03 CET 2006
166  - fixed L::B::IP->svalue returning undef on non-existent stack depth (courtesy
167    of Mark Glines)
169 1.10 Tue Feb  7 15:05:13 CET 2006
170  - included a Module::Builder mechanism (old scheme with Makefile.PL is preserved)
174 1.06 Mon Feb  6 21:04:04 CET 2006
175  - reworked Makefile.PL (now more light-weight)
176  - added a TODO file
178 1.05 Mon Feb  6 19:01:37 CET 2006
179  - fixing wrapping when ip delta is greater than lahey space width or height
180    (courtesy of Mark Glines)
182 1.04 Wed Feb  1 17:38:49 CET 2006
183  - detecting infinite loop on bogus funges in move_curip (courtesy of Mark Glines)
185 1.03 Mon Jan  2 21:20:07 CET 2006
186  - fixing failed test on 64bits platforms (courtesy of Mark Glines)
188 1.02 Fri Dec  2 21:44:48 CET 2005
189  - enhanced input checking, dealing correctly with non-ascii characters
190    (with the help of Mark Glines)
192 1.01 Sat Nov 26 16:22:23 CET 2005
193  - unrolling k instruction to avoid deep recursion warning (courtesy of Mark Glines)
195 1.00 Thu Oct 28 19:13:59 CEST 2004
196  - i instruction support binary flag (courtesy of Philippe Bruhat)
197  - mailing-list available: language-befunge@mongueurs.net
198  - stable for now 2 years, -98 fully implemented: sane basis for further work
199    on the module
203 0.38 Fri May  3 14:47:09 CEST 2002
204  - Removed a (silly) debug message.
205  - Fool-proof for ascii input.
206  - Numeric input works with LB::IP::input() (just as ascii input).
207  - Numeric input asks for input until it gets a valid input.
209 0.37 Wed Apr 24 08:54:00 CEST 2002
210  - New mechanism of libraries loading: loading instances of extension instead
211    of a plain module.
212  - doc/library.pod modified to reflect this.
214 0.36 Mon Apr 22 20:44:10 CEST 2002
215  - jqbf98 now understands the -v flag (verbose)
216  - New examples tpr00.bf, palin.bf
217  - IP.pm now has two methods spush_vec and spop_vec. Befunge.pm modified to
218    take advantage of those methods.
219  - IP.pm now has a method spush_args to push (and convert) arguments on the stack.
220  - IP.pm comes with a storage facility to allow library to fetch and store
221    whatever data they want. This is highly experimental and the interface may
222    change in future releases.
224 0.35 Tue Apr 16 17:20:29 CEST 2002
225  - LaheySpace::labels_lookup() now also returns the velocity that found the label.
226  - Minor pod update.
228 0.34 Tue Apr 16 15:00:27 CEST 2002
229  - Minor bug fix in LaheySpace.pm. I discovered it by chance, since it's
230    a tiny little bug that did not seem to break anything.
231  - LaheySpace now has a labels_lookup() method, that allow to search for
232    labels inside comments. This will be used in Inline::Befunge and maybe
233    some extensions will use this non-standard mechanism.
234  - Minor update to doc/library.pod
236 0.33 Mon Apr 15 17:21:23 CEST 2002
237  - Fancy stuff added in order to support Inline::Befunge (does not change
238    the default behavior)
239  - One more debug message
241 0.32 Mon Apr 15 12:01:53 CEST 2002
242  - POD fixing in doc/library.pod
244 0.31 Mon Apr 15 09:41:21 CEST 2002
245  - Smarter way of handling parameters.
246  - jqbf98 interpreter now handles parameters.
248 0.30 Sun Apr 14 15:53:19 CEST 2002
249  - Befunge.pm now has an Object Oriented interface.
250  - rewriting tests to take the new interface into account.
254 0.20 Sat Apr 13 13:08:17 CEST 2002
255  - Befunge.pm modified to understand libraries semantics:
256    parens (to load/unload) and capital letters.
257  - IP modified in order to accept the libraries semantics.
258  - New directory lib/ where to put libraries.
259  - New libraries FOO and HELO
260  - New test 22lib -> test libraries semantics.
261  - Pod completed in Befunge.pm
262  - Tutorial (doc/library.pod) on how to build new extensions.
263  - all instructions implemented in instr.txt
267 0.12 Fri Apr 12 18:51:04 CEST 2002
268  - Shipped with some examples.
269  - Shipped with the Funge-98 specs.
271 0.11 Fri Apr 12 18:33:09 CEST 2002
272  - Bug fix in the way spaces are handled in strings.
273  - Bug fix in numeric input.
274  - Bug fix in ascii input.
275  - New script jqbf98, a standalone interpreter.
276  - Rewrite of Makefile.PL to install this file.
278 0.10 Fri Apr 12 15:04:10 CEST 2002
279  - More POD documentation.
280  - Bug fix in instruction t.
281  - More debug messages.
282  - New test 21concur.t -> tests concurrent Funge.
284 0.09 Fri Apr 12 12:05:03 CEST 2002
285  - Bug fix in y instruction (flags).
286  - Bug fix in y instruction (size of TOSS).
287  - 20th field of y instruction returns ENV sorted by keys.
288  - More debug messages in Befunge.pm
289  - New test 20system.t -> tests exec and info retrieval
291 0.08 Thu Apr 11 19:34:38 CEST 2002
292  - Fixed some bad API calls in Befunge.pm
293  - Bug fix in LaheySpace.pm
294  - More debug messages in Befunge.pm
295  - Minor bug fix in output file for text flag.
296  - New test 19storg.t -> tests storage
297  - 10stdio.t extended to test input and output file.
299 0.07 Thu Apr 11 17:49:03 CEST 2002
300  - Fixed a bug in IP.pm and 03ip.pm
301  - Fixed some bad API calls in Befunge.pm
302  - More debug messages.
303  - New test 18sos.t -> tests stack stack manipulation
304  - instr.txt rewritten.
306 0.06 Thu Apr 11 15:06:50 CEST 2002
307  - Pod cleaning in LaheySpace.pm.
308  - Some bug fixes in Befunge.pm
309  - New test 16string.t -> tests string thingies
310  - New test 17stack.t  -> tests stack stuff
312 0.05 Thu Apr 11 14:25:10 CEST 2002
313  - Completed 14flow.t
314  - New test 15decis.t -> tests decision making
316 0.04 Thu Apr 11 12:04:30 CEST 2002
317  - store_code includes magic to display the correct filename in error msgs.
318  - instr.txt explained.
319  - Bug fixes for control flow instructions.
320  - New test 13dir.t  -> tests direction changing
321  - New test 14flow.t -> tests flow control
323 0.03  Thu Apr 11 09:59:28 CEST 2002
324  - Bug fix with string-mode.
325  - Debug facilities.
326  - New test 02befunge.t -> tests the exported functions
327  - New test 10stdio.t   -> tests ,. and space
328  - New test 11nums.t    -> tests 0-9a-f
329  - New test 12maths.t   -> tests +-*/%
330  - New file inst.txt with the instruction and their current
331    status (tested with a X).
333 0.02  Wed Apr 10 14:22:31 CEST 2002
334  - New function store_code.
335  - Language::Befunge synopsis extended.
337 0.01  Wed Apr 10 14:01:20 CEST 2002
338  - Original version.
339  - Every instruction is implemented, but _not_ tested.
340  - Module LaheySpace written and tested.
341  - Module IP written and tested.