-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathChangeLog.git-unprocessed
16297 lines (10201 loc) · 352 KB
/
ChangeLog.git-unprocessed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-*- fundamental -*-
Contained all changes up to ab151c2 on 2017-10-29, everything newer is
unprocessed, everything earlier that's not in here is already subsumed
in NEWS
2017-10-28 - xpos and pos1 refactored to view (for name>view and friends) <Gerald Wodni> d06fbd7
ToDo
assert.fs
backtrac.fs
debugs.fs
except.fs
kernel/comp.fs
kernel/int.fs
locate1.fs
source.fs
2017-10-28 - Merge branch 'master' of git.sv.gnu.org:/srv/git/gforth <Gerald Wodni> 059ec01
2017-10-28 - Changelog creation mod <Bernd Paysan> b4438b4
Makefile.in
2017-10-28 - Changed changelog generator to include files, i.e. <Bernd Paysan> aa1ce5d
- <date> message <author>
file1
..
filen
Makefile.in
2017-10-28 - Create changelog from git <Bernd Paysan> c951a27
Makefile.in
2017-10-28 - Merge branch 'master' of git.sv.gnu.org:/srv/git/gforth <Bernd Paysan> 05de5d7
2017-10-28 - Travis build status in README.md <Bernd Paysan> 9f96344
README.md
rec-meta.fs
2017-10-28 - fixed makeinfo warnings <Anton Ertl> d3b6087
doc/gforth.texi.in
2017-10-28 - Merge branch 'master' of git.sv.gnu.org:/srv/git/gforth <Bernd Paysan> d79d2c0
2017-10-28 - Semantic versioning with 3-digit version numbers <Bernd Paysan> 4c897d8
environ.fs
libcc.fs
2017-10-28 - documented C interface migration <Anton Ertl> 502f6df
doc/gforth.texi.in
libcc.fs
2017-10-27 - added 0.7 C interface stbs, documentation missing <Anton Ertl> f1b797b
libcc.fs
2017-10-27 - ToDo updated for Waxeneck meeting 2017 <Gerald Wodni> f09b208
ToDo
2017-10-27 - merge <Bernd Paysan> 0a417f6
2017-10-27 - Print configure summary at the end <Bernd Paysan> 0880dc4
configure.ac
2017-10-27 - Examples updated&documented <Bernd Paysan> 9d63a3f
rec-env.fs
rec-meta.fs
2017-10-27 - errno preservation now active <Anton Ertl> 25dc938
kernel/int.fs
2017-10-26 - Merge remote-tracking branch 'refs/remotes/origin/master' <Anton Ertl> 392beaf
2017-10-26 - preserve errno in text interpreter (reported by Reepca Russelstein) <Anton Ertl> b42f5fb
kernel/int.fs
unix/libc.fs
2017-10-26 - Try link with libfreetype for harfbuzz test <Bernd Paysan> ad6dbd2
configure.ac
2017-10-26 - Try link with libpng16 for harfbuzz test <Bernd Paysan> 37bdfa7
configure.ac
2017-10-26 - Include the right harfbuzz.fs <Bernd Paysan> e1d7111
unix/harfbuzzlib.fs
2017-10-26 - Bump version number <Bernd Paysan> 3f56c2c
configure.ac
minos2/gl-helper.fs
2017-10-25 - Added Windows event loop <Bernd Paysan> e245c34
minos2/windows-gl.fs
2017-10-25 - Fix callback returns <Bernd Paysan> edd5595
libcc.fs
minos2/windows-gl.fs
2017-10-24 - Merge remote-tracking branch 'refs/remotes/origin/master' <Anton Ertl> 1f0d8d6
2017-10-24 - factored COMPARE-IMAGE <Anton Ertl> f16eeef
comp-i.fs
2017-10-24 - stub for text input manager <Bernd Paysan> c9c1fb2
minos2/wayland-gl.fs
2017-10-24 - Merge pull request #11 from larsbrinkhoff/macos-no-ec <Bernd Paysan> 4d32bc1
No CI build for Gforth EC in macOS.
2017-10-24 - Merge branch 'master' into macos-no-ec <Bernd Paysan> 306becf
2017-10-24 - Merge pull request #10 from larsbrinkhoff/c165 <Bernd Paysan> 1905d49
Fix Gforth EC target c165.
2017-10-24 - small rework of COMPARE-IMAGES (suggested by Helmar Wodke) <Anton Ertl> 7efbc31
comp-i.fs
2017-10-24 - No CI build for Gforth EC in macOS. <Lars Brinkhoff> 36c7a1b
.travis.yml
2017-10-24 - CI build of Gforth EC target c165. <Lars Brinkhoff> 91286ae
.travis.yml
2017-10-24 - Fix Gforth EC target c165. <Lars Brinkhoff> 66ebed7
arch/c165/prim.fs
2017-10-24 - Check for events if polling does not show any <Bernd Paysan> 7af735a
minos2/wayland-gl.fs
2017-10-24 - Wayland cursor support, pointer input <Bernd Paysan> dae63b9
minos2/presentation.fs
minos2/wayland-actors.fs
minos2/wayland-gl.fs
minos2/widgets.fs
minos2/x11-actors.fs
unix/wayland.i
unix/waylandlib.fs
2017-10-23 - Wayland support: output works, input pending <Bernd Paysan> 91b4214
Makefile.in
minos2/actors.fs
minos2/gl-helper.fs
minos2/gl-terminal.fs
minos2/linux-gl.fs
minos2/wayland-actors.fs
minos2/wayland-gl.fs
2017-10-22 - Started Wayland bindings <Bernd Paysan> c6b53a3
Makefile.in
libcc.fs
minos2/gl-helper.fs
minos2/wayland-gl.fs
2017-10-22 - Fix callback problem <Bernd Paysan> c4fcfbf
libcc.fs
minos2/gl-helper.fs
unix/wayland.i
unix/waylandlib.fs
2017-10-19 - Bump version number <Bernd Paysan> 9091280
configure.ac
2017-10-16 - Fix freetype-gl <Bernd Paysan> 4e7079e
minos2/ftgl-helper.fs
unix/freetype-gl.i
unix/freetype-gllib.fs
unix/harfbuzzlib.fs
2017-10-16 - Harfbuzz bindings <Bernd Paysan> 09b26a1
Makefile.in
2017-10-16 - Harfbuzz bindings <Bernd Paysan> bbd5fd4
Makefile.in
configure.ac
unix/harfbuzz.i
unix/harfbuzzlib.fs
2017-10-16 - Size-dependent store on fonts flag <Bernd Paysan> 7112a1a
minos2/ftgl-helper.fs
minos2/presentation.fs
2017-10-12 - Different order <Bernd Paysan> 5375957
debian/control.in
minos2/presentation.fs
2017-10-12 - Use GL_BGRA_EXT as internal format for emojis, than it works <Bernd Paysan> 70ddae2
minos2/ftgl-helper.fs
2017-10-12 - pnglib16 also needs stderr <Bernd Paysan> cc9530e
unix/pnglib16.i
2017-10-12 - mcheck defaults to no <Bernd Paysan> f8f12a1
arch/386/android/config.sh
arch/amd64/android/config.sh
arch/arm/android/config.sh
arch/arm64/android/config.sh
arch/mips/android/config.sh
2017-10-12 - stderr replacement for png compilation on android <Bernd Paysan> e8cd024
unix/pnglib.i
2017-10-12 - Add libpng for color font support <Bernd Paysan> 10a1d35
arch/arm/android/genlibs.sh
2017-10-12 - Bump freetype/harfbuzz download versions for android <Bernd Paysan> 1b1cfa8
arch/arm/android/genlibs.sh
2017-10-12 - Emojis for Android - font location <Bernd Paysan> 658c18d
minos2/presentation.fs
2017-10-12 - Slight changes to presentation, bump version number <Bernd Paysan> deb6f83
configure.ac
debian/control.in
minos2/ftgl-helper.fs
minos2/presentation.fs
2017-10-10 - Off by one error for xgrow-tib fixed <Bernd Paysan> 84bda1e
history.fs
2017-10-10 - Add colorfont rendering for emojis <Bernd Paysan> e62ad9f
INSTALL.md
minos2/ftgl-helper.fs
minos2/presentation.fs
minos2/widgets.fs
2017-10-08 - Add keys for volume <Bernd Paysan> 9600e57
ekey.fs
history.fs
minos2/ftgl-helper.fs
minos2/presentation.fs
minos2/widgets.fs
minos2/x11-actors.fs
unix/android.fs
unix/xlib.i
2017-10-08 - Sharp text rendering on pixel boundary <Bernd Paysan> 450cffc
minos2/ftgl-helper.fs
minos2/presentation.fs
2017-10-07 - Small fixes for terminal <Bernd Paysan> 982eee3
debian/control.in
minos2/gl-terminal.fs
2017-10-06 - Separate the gforth-minos2 package <Bernd Paysan> 0f79ac7
Makedist.in
debian/control.in
debian/rules
2017-10-05 - Don't hold filebuf on the stack, doesn't work for too large files <Bernd Paysan> 5c72337
engine/zexpand.c
2017-10-05 - Fix unused-words <Bernd Paysan> 8a5bf6f
locate1.fs
2017-10-05 - Bump version number <Bernd Paysan> e5e44a9
configure.ac
2017-10-04 - Change (EMIT) to EMIT in Gforth EC prim Add $Variable to gforth.el highlighting Different fixup for freetype-gl <Bernd Paysan> 46966b8
.travis.yml
arch/8086/prim.fs
gforth.el
minos2/ftgl-helper.fs
2017-10-04 - Merge pull request #9 from larsbrinkhoff/build-ec <Bernd Paysan> 596a42b
Build Gforth EC
2017-10-04 - Build Gforth EC kernels for MISC and R8C. <Lars Brinkhoff> 4784339
.travis.yml
2017-10-04 - Added images to presentation <Bernd Paysan> 8e7cb38
Makefile.in
minos2/bad-gateway.png
minos2/gl-helper.fs
minos2/net2o-minos2.png
minos2/presentation.fs
minos2/widgets.fs
2017-10-03 - remove stray [THEN] <Bernd Paysan> df47613
kernel/stringk.fs
2017-10-03 - remove stray [THEN] <Bernd Paysan> 3d0e46f
kernel/stringk.fs
2017-10-03 - factor $[] and use $slurp-file for included-buffer <Bernd Paysan> 29ff25c
kernel/stringk.fs
locate1.fs
2017-10-03 - keep included buffers for the session <Anton Ertl> 6ef9788
except.fs
locate1.fs
2017-10-03 - Revert "Reuse some words for WHERE" <Anton Ertl> c3fedc5
This reverts commit a34bebb932138cde14f0dddb708de839a2e72a31.
locate1.fs
2017-10-03 - Add do-lastchild <Bernd Paysan> 1b92582
minos2/widgets.fs
2017-10-02 - baseline is needed for every widget <Bernd Paysan> 0d014c9
minos2/widgets.fs
2017-10-02 - Use stacks for child objects instead of list <Bernd Paysan> 594f5eb
cross.fs
kernel/recognizer.fs
minos2/widgets.fs
2017-10-02 - avoid string overflow in type-prefix <Bernd Paysan> 48a2966
locate1.fs
2017-10-02 - Reuse some words for WHERE <Bernd Paysan> a34bebb
locate1.fs
2017-10-02 - Fix memory leak <Bernd Paysan> 60fd549
debugs.fs
except.fs
locate1.fs
2017-10-01 - merge <Bernd Paysan> 19d0786
2017-10-01 - In-place freeing of slurped file <Bernd Paysan> 8c6d5e8
string.fs
2017-10-01 - reenabled LB <Anton Ertl> cf24af4
backtrac.fs
kernel/int.fs
locate1.fs
2017-10-01 - Unused words O(n) <Bernd Paysan> 4374d83
locate1.fs
2017-10-01 - Show unused words <Bernd Paysan> 564cfd8
Makefile.in
locate1.fs
2017-10-01 - Change include to require in startup.fs <Bernd Paysan> 6f0fc0e
startup.fs
2017-10-01 - move record locations to kernel <Bernd Paysan> 85e1cc7
Makefile.in
kernel/comp.fs
kernel/int.fs
kernel/pass.fs
kernel/stringk.fs
record-locs.fs
startup.fs
string.fs
2017-09-30 - record-locs across save system <Bernd Paysan> 23d58e4
Makefile.in
backtrac.fs
except.fs
glocals.fs
record-locs.fs
startup.fs
string.fs
2017-09-30 - Merge remote-tracking branch 'refs/remotes/origin/master' <Anton Ertl> 7302b37
2017-09-30 - added WHERE <Anton Ertl> 7f14b8c
locate1.fs
startup.fs
2017-09-30 - Immersive hiding on Android 4.4 and up <Bernd Paysan> 2137735
arch/arm/android/src/gnu/gforth/Gforth.java
minos2/gl-helper.fs
minos2/presentation.fs
2017-09-29 - Fixed slow animation in MINOS2 <Bernd Paysan> d8809c7
assert.fs
minos2/android-actors.fs
minos2/animation.fs
minos2/ftgl-helper.fs
minos2/gl-helper.fs
minos2/gl-sample.fs
minos2/linux-gl.fs
minos2/presentation.fs
minos2/widgets.fs
unix/android.fs
2017-09-28 - Bump version number <Bernd Paysan> 3642fe0
configure.ac
2017-09-28 - Smartcard signature with current hash <Bernd Paysan> 085361b
iss.sh
2017-09-28 - Use smartcard to sign Windows executable <Bernd Paysan> 124a7a0
iss.sh
2017-09-28 - click to scroll presentation <Bernd Paysan> 3cbe5a4
minos2/presentation.fs
2017-09-28 - click to scroll presentation <Bernd Paysan> 4cc8783
minos2/animation.fs
minos2/presentation.fs
2017-09-27 - Authors updated <Bernd Paysan> 4b7a9b8
AUTHORS
kernel/comp.fs
2017-09-15 - replace-sourcepos1 only for view, use, not for WHERE use <Bernd Paysan> 8aae816
kernel/comp.fs
2017-09-14 - Bump version number <Bernd Paysan> 5e8c766
configure.ac
debugs.fs
minos2/presentation.fs
2017-09-13 - Recognizer words renamed according to Forth 200x meeting (part 6) <Bernd Paysan> 5686327
parsedto.fs
2017-09-13 - Recognizer words renamed according to Forth 200x meeting (part 5) <Bernd Paysan> dce92aa
mini-oof2.fs
2017-09-13 - Recognizer words renamed according to Forth 200x meeting (part 4) <Bernd Paysan> 43678c7
mini-oof2.fs
2017-09-13 - Recognizer words renamed according to Forth 200x meeting (part 3) <Bernd Paysan> 1545c04
config.fs
kernel/recognizer.fs
2017-09-13 - Recognizer words renamed according to Forth 200x meeting (a bit more) <Bernd Paysan> eee8dec
stuff.fs
2017-09-13 - Recognizer words renamed according to Forth 200x meeting <Bernd Paysan> 6f05467
config.fs
debugs.fs
float.fs
httpd.fs
kernel/comp.fs
kernel/int.fs
kernel/pass.fs
kernel/recognizer.fs
mini-oof2.fs
minos2/presentation.fs
notfound.fs
parsedto.fs
quotedstring.fs
rec-env.fs
rec-meta.fs
rec-scope.fs
recognizer2.fs
script.fs
stuff.fs
test/gforth.fs
traceall.fs
unix/pthread.fs
2017-09-08 - add *.4th to .gitattributes <Bernd Paysan> 110209e
.gitattributes
2017-09-07 - compsem: implementation <Bernd Paysan> e38b259
set-compsem.fs
2017-09-07 - Move cleaning replace-sourcepos1 from current-soucepos1 to view, <Bernd Paysan> 7d1a320
cross.fs
kernel/comp.fs
set-compsem.fs
stuff.fs
2017-09-07 - Throw -18 if >IN overflows in parsing <Bernd Paysan> 9d261ea
kernel/int.fs
2017-09-06 - Warning on scanning [IF]s at end of file <Bernd Paysan> 1b98b0f
kernel/input.fs
kernel/int.fs
kernel/toolsext.fs
2017-09-06 - Presentation completed <Bernd Paysan> 41cb699
minos2/presentation.fs
minos2/widgets.fs
2017-09-05 - MINOS2 presentation as MINOS2 example <Bernd Paysan> 16281d1
Makefile.in
minos2/presentation.fs
2017-09-04 - Add border layout to box <Bernd Paysan> 202c72b
minos2/ftgl-helper.fs
minos2/gl-helper.fs
minos2/widgets.fs
2017-09-03 - Merge <Bernd Paysan> 707249c
2017-09-03 - Small changes to widges <Bernd Paysan> 2eb291a
minos2/animation.fs
minos2/ftgl-helper.fs
minos2/gl-terminal.fs
minos2/widgets.fs
2017-09-02 - Merge remote-tracking branch 'refs/remotes/origin/master' <Anton Ertl> 6e79de0
2017-09-02 - bug fixes <Anton Ertl> 9d34fdb
engine/support.c
prim
2017-09-01 - Flag field to flip boxes and fold them up <Bernd Paysan> 2d208ee
minos2/animation.fs
minos2/widgets-test.fs
minos2/widgets.fs
2017-08-31 - Factoring animations <Bernd Paysan> 08557d3
minos2/animation.fs
2017-08-31 - Negative delta for inverse animation <Bernd Paysan> e43252c
minos2/animation.fs
2017-08-31 - fading of text and frame test <Bernd Paysan> b0aa6bf
minos2/widgets-test.fs
2017-08-31 - Animation support (really simple) <Bernd Paysan> eda76be
Makefile.in
minos2/animation.fs
minos2/widgets-test.fs
minos2/widgets.fs
2017-08-29 - spaces doesn't need 0 max <Bernd Paysan> d04c70f
assert.fs
cross.fs
debug.fs
2017-08-28 - merge <Bernd Paysan> c123cff
2017-08-28 - seed is 8 byte long <Bernd Paysan> 7f3129f
random.fs
2017-08-20 - re-added some gforth-0.7 words that are used <Anton Ertl> c2bad1a
libcc.fs
stuff.fs
2017-07-27 - added Ryzen Benchres <Anton Ertl> c1ddf35
Benchres
2017-07-25 - improved documentation of FP output words <Anton Ertl> 02b419e
doc/gforth.texi.in
stuff.fs
2017-07-25 - F.RDP with precision 0 now prints fixed-point 0 for numbers close to 0 <Anton Ertl> 4951d45
stuff.fs
2017-07-25 - Bump version number <Bernd Paysan> 602d8d7
configure.ac
2017-07-23 - gl-terminal endian agnostic? <Bernd Paysan> 8052c2d
minos2/gl-terminal.fs
2017-07-22 - debug-vector needs to be a user variable <Bernd Paysan> 5c69fe7
kernel/io.fs
2017-07-22 - Update screen on key? <Bernd Paysan> 8cdb67b
minos2/linux-gl.fs
2017-07-22 - Error output also thread-safe <Bernd Paysan> 13ce000
minos2/gl-terminal.fs
2017-07-22 - Make gl-terminal.fs thread-safe <Bernd Paysan> 0ff2def
minos2/gl-terminal.fs
2017-07-17 - Cross-build 32 bit engine from 64 bit engine <Bernd Paysan> d95fda4
cross.fs
2017-07-16 - WHERE part1: kernel <Anton Ertl> 4b8cf32
exboot.fs
kernel/int.fs
2017-07-16 - 2Constant cross-compiles into two literals <Bernd Paysan> 96dbcae
cross.fs
2017-07-16 - Change cell size for boot strings and arrays <Bernd Paysan> 46f4303
cross.fs
2017-07-16 - cross.fs needs $@ <Bernd Paysan> 1ce6b6e
cross.fs
2017-07-16 - cross.fs needs $@ <Bernd Paysan> c5c4fc5
cross.fs
2017-07-16 - cross.fs needs $@ <Bernd Paysan> 9170f59
cross.fs
2017-07-16 - cross.fs needs $@ <Bernd Paysan> 81d7f63
cross.fs
2017-07-16 - cross.fs needs $@ <Bernd Paysan> 273fdcd
cross.fs
2017-07-16 - Add $Variable and $[]Variable to cross.fs <Bernd Paysan> ce1f8c3
cross.fs
kernel/pass.fs
kernel/recognizer.fs
kernel/require.fs
2017-07-15 - Structures with cross.fs <Bernd Paysan> 7ae0c4e
cross.fs
kernel/pass.fs
2017-07-15 - also apply C_INCLUDE_PATH fix to gforthker <Anton Ertl> cd18ebf
gforthker.in
2017-07-15 - fixed C_INCLUDE_PATH bug reported by [email protected] <[email protected]> <Anton Ertl> b93f82b
libforth.in
2017-07-14 - better gforth detection in configure <Anton Ertl> 846f17a
configure.ac
2017-07-12 - Bump version number <Bernd Paysan> f2ab390
configure.ac
2017-07-12 - Own getpid cache, because getpid cache was removed in glibc 2-25, and getpid is now slow <Bernd Paysan> c4fab41
unix/libc.fs
unix/pthread.fs
2017-07-12 - Put boot-strings into 'cold <Bernd Paysan> a38b9d1
kernel/int.fs
kernel/paths.fs
kernel/stringk.fs
2017-07-12 - merge <Bernd Paysan> 8dc0579
2017-07-12 - Reclaim dictionary space used to save strings <Bernd Paysan> f7f83e6
exboot.fs
kernel/stringk.fs
2017-07-11 - added $+!LEN <Anton Ertl> 3b5da45
doc/gforth.texi.in
kernel/stringk.fs
kernel/vars.fs
2017-07-11 - Fix kernel line editor <Bernd Paysan> 4f61f4d
kernel/accept.fs
2017-07-11 - Use cell / instead of cell/ <Bernd Paysan> fd53d3a
cross.fs
2017-07-11 - Use tcell instead of T cell H <Bernd Paysan> 3f17672
cross.fs
2017-07-11 - Remove 'image use <Bernd Paysan> 3534220
search.fs
2017-07-11 - Small name change <Bernd Paysan> 85927a4
kernel/stringk.fs
2017-07-11 - Auto-save/restore strings, stacks and string arrays <Bernd Paysan> 66b6ad4
config.fs
debugs.fs
doc/gforth.texi.in
kernel/pass.fs
kernel/paths.fs
kernel/recognizer.fs
kernel/require.fs
kernel/stringk.fs
libcc.fs
savesys.fs
search.fs
2017-07-10 - Solve TAGS prims offset mystery <Bernd Paysan> 3b42b2a
prims2x.fs
2017-07-10 - Rebuild kernels with BUILD-FROM-SCRATCH <Bernd Paysan> 42e410c
BUILD-FROM-SCRATCH
2017-07-10 - locate info for primitives <Anton Ertl> 979cd37
prims2x.fs
2017-07-10 - Simplify included? test by reusing str>loadfilename# <Bernd Paysan> fc538e2
kernel/comp.fs
kernel/require.fs
2017-07-10 - Document #loc <Bernd Paysan> 8b644c7
debugs.fs
doc/gforth.texi.in
2017-07-09 - #loc to replace current source location <Bernd Paysan> 9a4143e
cross.fs
2017-07-09 - #loc to replace current source location <Bernd Paysan> a65d527
cross.fs
debugs.fs
kernel/comp.fs
2017-07-05 - Bump version <Bernd Paysan> 3336537
configure.ac
2017-07-05 - Some more work on viewport <Bernd Paysan> ee9c164
minos2/gl-terminal.fs
minos2/widgets-test.fs
minos2/widgets.fs
2017-07-04 - config errors throw <Bernd Paysan> c1048d2
config.fs
2017-07-02 - Take care of sh$ in multithreading <Bernd Paysan> bbd832b
script.fs
unix/pthread.fs
2017-07-01 - More work on correct handling of selection <Bernd Paysan> 71ae90d
minos2/actors.fs
unix/android.fs
2017-06-30 - Editor backspace/del cuts selection if any <Bernd Paysan> 23c4f2c
minos2/actors.fs
minos2/gl-terminal.fs
2017-06-30 - Correct touch position <Bernd Paysan> 3e89d59
minos2/android-actors.fs
minos2/gl-terminal.fs
unix/android.fs
unix/jni-helper.fs
2017-06-30 - Move ctrl to history.fs <Bernd Paysan> 078572b
ekey.fs
history.fs
2017-06-29 - Fix ekey/xkey problem <Bernd Paysan> a4eada4
ekey.fs
minos2/android-actors.fs
2017-06-29 - Make Android compile from scratch again <Bernd Paysan> f851cf2
arch/386/android/config.sh
arch/amd64/android/config.sh
arch/arm/android/build.sh
arch/arm/android/config.sh
arch/arm/android/starta.fs
arch/arm64/android/config.sh
arch/mips/android/config.sh
unix/androidlib.i
unix/egl.i
unix/freetype-gl.i
unix/gles.i
unix/gles3.i
unix/jni.i
unix/omxal.i
unix/soil.i
unix/soil2.i
2017-06-29 - Default mode for fonts is MODE_FREE_CLOSE <Bernd Paysan> bc05e03
configure.ac
minos2/ftgl-helper.fs
2017-06-29 - Edit for android words a lot better now <Bernd Paysan> eae936e
minos2/actors.fs
minos2/android-actors.fs
minos2/widgets.fs
minos2/x11-actors.fs
unix/android.fs
2017-06-28 - Fix selection on Android <Bernd Paysan> a966d8d
minos2/actors.fs
2017-06-27 - more on Android widget editor <Bernd Paysan> fb5d5d7
minos2/actors.fs
minos2/android-actors.fs
2017-06-27 - More work on editor for android <Bernd Paysan> 9b9616d
ekey.fs
look.fs
minos2/actors.fs
minos2/android-actors.fs
2017-06-26 - Key events for android widgets started <Bernd Paysan> 72e7c99
minos2/actors.fs
minos2/android-actors.fs
minos2/linux-gl.fs
minos2/widgets-test.fs
unix/android.fs
2017-06-26 - Android has no handler class <Bernd Paysan> 7f8936a
minos2/android-actors.fs
2017-06-25 - Different X events have different time fields <Bernd Paysan> 97ac310
minos2/android-actors.fs
minos2/linux-gl.fs
minos2/x11-actors.fs
unix/android.fs
unix/jni-helper.fs
2017-06-24 - bind ekeys to editor widget <Bernd Paysan> f00f7f3
history.fs
minos2/actors.fs
2017-06-24 - Direct mapping of ekeys in history.fs, allows control key bindings differ from ekey bindings <Bernd Paysan> fb204e8
history.fs
2017-06-24 - Direct mapping of ekeys in history.fs, allows control key bindings differ from ekey bindings <Bernd Paysan> 8a7e962
ekey.fs
history.fs
kernel/accept.fs
2017-06-23 - Prepare transition to NDK 15 <Bernd Paysan> c7b2bf7
Makefile.in
arch/arm/android/genlibs.sh
arch/arm/android/gentoolchain.sh
arch/arm/android/starta.fs
configure.ac
engine/androidmain.c
unix/android.fs
2017-06-22 - make -j4 doesn't work on Android <Bernd Paysan> f364be9
arch/arm/android/build.sh
2017-06-22 - include config.h everywhere, because it might affect interpretation of include files <Bernd Paysan> e73b41a
arch/arm/cacheflush-linux.c
arch/arm/cacheflush0.c
arch/arm64/cacheflush.c
arch/hppa/cache.c
arch/ia64/flush_icache_block.c
arch/mips/check_prim.c
arch/power/_sync_cache_range.c
engine/atanh.c
engine/cleanalign.c
engine/getopt1.c
engine/io-beagle.c
engine/memcmp.c
engine/memmove.c
engine/pow10.c
engine/rint.c
engine/select.c
engine/sincos.c
engine/strerror.c
engine/strtol.c
engine/wcwidth.c
engine/zexpand.c
2017-06-22 - Make clipboard access uniform <Bernd Paysan> 59bfcb7
minos2/actors.fs
unix/jni-helper.fs
2017-06-22 - More on compiling with new NDK <Bernd Paysan> 6fc29e8
arch/arm/android/build.sh
arch/arm/android/genlibs.sh