-
Notifications
You must be signed in to change notification settings - Fork 1
/
Changelog
3982 lines (3060 loc) · 96.6 KB
/
Changelog
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
2024-12-12 cage
* nodgui.asd,
* src/wish-communication.lisp:
- fixed default return value of 'guess-wish-interpreter-path', return
'wish', instead of nil. Also fixed and added a couple of checks in the
same function's body.
- updated version number.
2024-12-05 cage
* NEWS.org:
- fixed NEWS file.
2024-12-04 cage
* Changelog,
* NEWS.org,
* nodgui.asd,
* src/demo-tests.lisp:
- updated changelog and news file;
- fixed demo's buttons layout.
2024-12-01 cage
* src/menu.lisp:
- fixed typo.
2024-11-29 cage
* src/text.lisp,
* src/wish-communication.lisp:
- specialized (and optimized a bit) 'load-text' on 'scrolled-text'
widget.
- removed hardcoded wish shell path.
2024-11-24 cage
* src/package.lisp,
* src/scrollbar.lisp,
* src/text.lisp:
- added more functions for text widget: 'x/y-visible-portion' and
'scroll-to'.
2024-10-13 cage
* src/package.lisp,
* src/wish-communication.lisp:
- added 'guess-wish-interpreter-path'.
- added docstring;
- ensured 'guess-wish-interpreter-path' return nil when no path has
been found.
2024-10-09 cage
* src/demo-tests.lisp:
- improved visuals of 'demo-widgets'.
2024-10-08 cage
* src/menu.lisp:
- removed useless code.
2024-10-06 cage
* src/demo-tests.lisp,
* src/menucheckbutton.lisp,
* src/menuradiobutton.lisp,
* src/message.lisp,
* src/radiobutton.lisp:
- fixed radio and check buttons.
2024-10-05 cage
* src/checkbutton.lisp,
* src/radiobutton.lisp,
* src/wish-communication.lisp:
- prevented radiobuttons to be in 'undefined' because its variable has
not been initialized
Accessing the value of a radiobutton before clicking on it wold access
a non initialized TK variable, leading to a crash.
- wrapped 'guess-wish-interpreter-path' in 'eval-when' to allow
macroexpansion of 'with-nodgui'.
2024-09-27 cage
* Changelog,
* NEWS.org,
* nodgui-lite.asd,
* nodgui.asd:
- increased version number;
- updated README and Changelog.
2024-09-26 cage
* game/main.lisp,
* src/treeview.lisp:
- wrapping 'with-read-data around method 'children' specialized on
treeview.
- [game] added instruction.
2024-09-25 cage
* README.org:
- fixed README.
2024-09-24 cage
* Changelog,
* NEWS.org,
* README.org,
* nodgui-lite.asd,
* nodgui.asd:
- increased version number;
- updated documentation.
2024-09-21 cage
* README.org,
* src/demo-tests.lisp,
* src/menubutton.lisp:
- fixed typos in installation steps.
2024-09-20 cage
* src/demo-tests.lisp,
* src/menu.lisp,
* src/package.lisp:
- split function to add a menu bar into two distinct functions.
Before a menu bar a single call to: `make-menu-bar' would suffice.
But turned out that this code does not works on macos X so the right
way to add a menu is now:
(let ((mb (make-menubar)))
(make-menu mb "File")
;; add other menu or menu buttons or separators ...
(add-menu-bar mb))
Notes that even if this modification breaks user API no code changes
are needed for program under OS different from mac os X.
2024-09-18 cage
* src/demo-tests.lisp:
- moved focus to text widget in event alias demo.
2024-09-15 cage
* Changelog,
* NEWS.org,
* nodgui-lite.asd,
* nodgui.asd,
* src/nodgui-mw.lisp,
* src/tcl-lib-wrapped.lisp,
* src/text.lisp:
- sanitized regex replace in text widget;
- force focus to entry widget in text entry dialog.
- updated changelog and news files.
- increased version number.
2024-09-12 cage
* Changelog,
* NEWS.org,
* README.org,
* nodgui-lite.asd,
* nodgui.asd,
* src/tcl-lib-wrapped.lisp:
- updated docs.
- increased version number;
- updated news and changelog.
2024-09-11 cage
* src/demo-tests.lisp,
* src/nodgui.lisp,
* src/package.lisp,
* src/tcl-emitter.lisp,
* src/tcl-lib-wrapped.lisp,
* src/text.lisp,
* src/tklib/plot.lisp,
* src/tklib/swaplist.lisp:
- used double quotes instead of braces.
- fixed 'swaplist', 'right-list' was not used.
- removed escaping with braces.
- added 'file-writable-p' and 'replace-in-file'.
2024-09-10 cage
* src/demo-tests.lisp,
* src/treeview.lisp:
- allowed braces in all values passed to treeview routines;
- specialized 'treeview-set-selection' for 'scrolled-treeview'.
2024-09-09 cage
* src/demo-tests.lisp,
* src/tcl-emitter.lisp,
* src/treeview.lisp:
- fixed 'with-recursive-tclize' it is an alias for lambda;
- made 'tcllize' a function.
- allowed braces in treeview column IDs.
2024-09-08 cage
* src/package.lisp,
* src/sanitize.lisp,
* src/tcl-emitter.lisp,
* src/tcl-lib-wrapped.lisp,
* src/treeview.lisp:
- prevented escaping of tcl string wrapped in braces.
inside a string wrapped in braces only other braces charcater are
escaped (prepending '\'), only if they are not balanced, for example:
{a{b}} -> a{b}
{a{b} -> a\{b
- added 'with-emitted-spaces' and 'with-recursive-tclize'.
2024-09-06 cage
* src/package.lisp,
* src/tcl-lib-wrapped.lisp:
- added routines to unzip a file, check if a file is a zip achive and
list a zip file's contents;
- exported symbols for new routines.
- added conversions routines.
- exported symbols related to unit conversion.
2024-09-05 cage
* nodgui.asd,
* src/canvas-shapes.lisp,
* src/canvas.lisp,
* src/conditions.lisp,
* src/config.lisp,
* src/constants.lisp,
* src/demo-tests.lisp,
* src/event-parser.lisp,
* src/event-symbols.lisp,
* src/fit-line.lisp,
* src/nodgui.lisp,
* src/package.lisp,
* src/pixmap.lisp,
* src/tcl-emitter.lisp,
* src/tcl-glue-code.lisp,
* src/tcl-lib-wrapped.lisp,
* src/text.lisp,
* src/tklib/calendar.lisp,
* src/tklib/misc-widget.lisp,
* src/tklib/notify-window.lisp,
* src/tklib/package.lisp,
* src/tklib/plot.lisp,
* src/tklib/swaplist.lisp,
* src/treeview.lisp,
* src/typed-operations.lisp,
* src/wish-communication.lisp:
- moved some tcl wrapping function to a new file;
- removed :use of alexandria (used local nicknames, instead).
- added 'make-zip-file' and 'cpu-info'.
- added 'mac-addresses';
- remove debug code.
- added 'ip-addresses'.
- fixed regex.
2024-09-04 cage
* src/nodgui.lisp,
* src/package.lisp:
- deprecated 'glob';
- added 'match-path';
- added 'cvs-stream'.
- exported 'csv-stream'.
- updated docstring.
2024-09-03 cage
* src/nodgui-mw.lisp:
- [MW] ensured, in 'searchable-list-box', that the data are always
mapped using the function 'key' before the actual search occurs.
2024-08-31 cage
* Changelog,
* NEWS.org,
* game/entities.lisp,
* nodgui-lite.asd,
* nodgui.asd,
* src/demo-pixels-buffer.lisp,
* src/package.lisp,
* src/pixels-buffer.lisp,
* src/utils.lisp,
* src/vec2.lisp,
* src/wish-communication.lisp:
- added 'draw-spline' for pixels buffer canvas;
- commented out freeing of surface created by ttf rendering (the
surface is already freed by sdl-ttf);
- ensure utils package does not use alexandria package, uses
local-nickname instead.
- increased version number;
- updated changelog and news file.
2024-08-30 cage
* nodgui.asd,
* src/package.lisp,
* src/sanitize.lisp,
* src/utils.lisp,
* src/wish-communication.lisp:
- optimized a bit 'flush-wish'.
2024-08-29 cage
* Changelog,
* NEWS.org,
* nodgui-lite.asd,
* nodgui.asd,
* src/pixels-buffer.lisp:
- removed patch for polygon rasterizing procedures;
see: 7ad3e311494538a86990dbc2717d36df0c03b0e5
- updated changelog and news.
- increased version number.
2024-08-28 cage
* nodgui-lite.asd,
* src/canvas-shapes.lisp,
* src/demo-tests.lisp,
* src/pixels-buffer.lisp,
* src/pixmap.lisp:
- fixed indentation;
- fixed docstring.
- fixed indentation.
- changed variable name.
- fixed type of calculated star's vertices.
- added system 'nodgui-lite'.
2024-08-27 cage
* src/demo-pixels-buffer.lisp,
* src/pixels-buffer.lisp:
- patched polygons rendering.
2024-08-26 cage
* game/world.lisp:
- [game] ensured the UFO destroy player's ship when they crash
2024-08-25 cage
* Changelog,
* NEWS.org,
* nodgui.asd,
* src/events.lisp:
- fixed 'lambda-debounce' and 'lambda-fixed-frequency'
After the latest modifications those macros worked only if there was a
declaration in the function's body.
- increased version number;
- updated changelog and news files.
2024-08-23 cage
* Changelog,
* LICENSES.org,
* NEWS.org,
* game/aabb2.lisp,
* game/data/bkg.png,
* game/data/bullet.png,
* game/data/explosions/explosion-15x15-6.png,
* game/data/explosions/explosion-32x32-6.png,
* game/data/explosions/explosion-96x96-12.png,
* game/data/meteor1.png,
* game/data/meteor2.png,
* game/data/meteor3.png,
* game/data/meteor4.png,
* game/data/player.png,
* game/data/shield.png,
* game/data/thrust.png,
* game/data/ufo.png,
* game/entities.lisp,
* game/main.lisp,
* game/package.lisp,
* game/packages.lisp,
* game/world.lisp,
* nodgui.asd,
* src/base64.lisp,
* src/config.lisp,
* src/demo-3d-window.lisp,
* src/demo-pixels-buffer.lisp,
* src/demo-tests.lisp,
* src/events.lisp,
* src/message.lisp,
* src/opengl-frame.lisp,
* src/package.lisp,
* src/pixels-buffer.lisp,
* src/pixmap.lisp,
* src/rendering-buffer-context.lisp,
* src/typed-operations.lisp,
* src/ubvec4.lisp,
* src/utils.lisp,
* src/vec2.lisp,
* src/vec3.lisp:
- added game;
- updated changelog;
- scaled translation in blitting transform.
- updated changelog.
- [game] kept previous difficult level when starting a new game, using
the GUI.
- increased version number.
- mentioned text rendering in news file.
- renamed file 'packages.lisp' to 'package.lisp';
- [game] changed default difficult level to 'easy'.
- increased version number.
- [game] prevented hitting an already destroied UFO;
- [game] increased UFO's frequency at hard difficult level.
- [game] removed race conditions.
- [game] fixed shield's lifetime.
- increased version number.
- added missing file.
- [game] ensured game over message pops up.
2024-08-22 cage
* LICENSES.org,
* game/data/explosions/explosion-15x15-6.png,
* game/data/explosions/explosion-32x32-6.png,
* game/data/explosions/explosion-96x96-12.png,
* game/entities.lisp,
* game/packages.lisp,
* game/world.lisp,
* src/package.lisp,
* src/pixels-buffer.lisp:
- added explosions.
- implemented event tiggerered after an effect has ended its lifetime.
- added missing explosions for tiny asteroids.
- fixed some asteroid's parameter.
2024-08-21 cage
* game/main.lisp,
* game/packages.lisp,
* game/world.lisp,
* src/pixels-buffer.lisp:
- fixed bumping with asteroids;
- added effective shield (no damage).
- added teleport;
- removed debug code.
- swithced scaling and translating in 'blit-transform', this change
ensures that the scaling is made using the rotation pivot as origin.
2024-08-20 cage
* game/entities.lisp,
* game/main.lisp,
* game/world.lisp,
* src/message.lisp,
* src/package.lisp:
- chaged player's mass;
- added animation for semitransparent asteroid.
- changed positioning of labels.
- fixed bullet's position;
- added 'game over' message.
- added bumping of player with asteroids.
2024-08-19 cage
* game/entities.lisp,
* game/main.lisp,
* game/packages.lisp,
* game/world.lisp,
* src/demo-pixels-buffer.lisp,
* src/pixels-buffer.lisp:
- fixed bullets staring position;
- reduced default entities mass;
- exchanged thrust keybindings.
- reverted demo code.
- added bullet damage;
- added asteroids fragmentation.
- added points tracking on GUI.
2024-08-18 cage
* game/aabb2.lisp,
* game/data/bullet.png,
* game/data/ufo.png,
* game/entities.lisp,
* game/main.lisp,
* game/packages.lisp,
* game/world.lisp,
* src/events.lisp,
* src/package.lisp:
- added bullets fired from player;
- added 'lambda-fixed-frequency;
- ensured 'lambda-debounce' respects '**debounce-minimum-delay*'.
- added debug code for bullet.
- added ufo.
2024-08-17 cage
* game/data/shield.png,
* game/data/thrust.png,
* game/entities.lisp,
* game/main.lisp,
* game/packages.lisp,
* game/world.lisp,
* src/demo-pixels-buffer.lisp:
- synched the thrust with the rotation of the player ship.
- added drawing of thrust sprite.
- improved blending of engine flame for player.
- added shield.
2024-08-16 cage
* game/aabb2.lisp,
* game/entities.lisp,
* game/main.lisp,
* game/packages.lisp,
* src/pixels-buffer.lisp:
- added ship thrust;
- optimized 'rotate-aabb2*'.
- fixed compilation error of aabb2.lisp;
- restored debugging code.
- fixed line clipping.
Merge pull request 'Add `scrollbar-get`' (#16) from
defaultxr/nodgui:master into development
2024-08-15 modula t. worm, cage
* src/scrollbar.lisp,
* game/data/player.png,
* game/entities.lisp,
* game/main.lisp,
* game/packages.lisp,
* game/world.lisp:
- added skeleton of entity player;
- fixed rendering of aabb sizes.
- added player rotation.
- added `scrollbar-get` (thanks modula t. worm!)
2024-08-14 cage
* game/entities.lisp,
* src/pixels-buffer.lisp:
- fixed missing polygon's horizontal edge rendering.
- made vintage asteroids less 'spikey'.
- fixed 90° corner case for textured rendering.
2024-08-13 cage
* game/aabb2.lisp,
* game/entities.lisp,
* game/packages.lisp,
* game/world.lisp,
* src/demo-pixels-buffer.lisp,
* src/pixels-buffer.lisp:
- fixed 'add-intersection-p'.
- added type declaration for polygon rendering intersection tests.
- fixed aabb positioning and size for vintage asteroids.
- added blending for vintage asteroid.
- fixed aabb-clipping for polygons.
2024-08-12 cage
* game/aabb2.lisp,
* game/entities.lisp,
* game/packages.lisp,
* game/world.lisp:
- added aabb used for collison detection with bullets only.
- removed useless code.
- fixed 'expand-aabb2';
- added 'vintage' asteroids.
2024-08-11 cage
* game/aabb2.lisp,
* game/entities.lisp,
* game/main.lisp,
* game/packages.lisp,
* game/world.lisp,
* nodgui.asd,
* src/pixels-buffer.lisp:
- added moving asteroid.
- redesigned class hierarchy.
2024-08-10 cage
* LICENSES.org,
* game/data/bkg.png,
* game/data/meteor1.png,
* game/data/meteor2.png,
* game/data/meteor3.png,
* game/data/meteor4.png,
* game/data/player.png,
* game/data/ufo.png,
* game/entities.lisp,
* game/main.lisp,
* game/packages.lisp,
* game/world.lisp:
- added bitmaps;
- refactored/added new entities;
- drawn game background.
2024-08-09 cage
* game/aabb2.lisp,
* game/entities.lisp,
* game/main.lisp,
* game/packages.lisp,
* game/world.lisp,
* nodgui.asd,
* src/base64.lisp,
* src/config.lisp,
* src/demo-3d-window.lisp,
* src/demo-pixels-buffer.lisp,
* src/demo-tests.lisp,
* src/opengl-frame.lisp,
* src/package.lisp,
* src/pixels-buffer.lisp,
* src/pixmap.lisp,
* src/rendering-buffer-context.lisp,
* src/typed-operations.lisp,
* src/ubvec4.lisp,
* src/utils.lisp,
* src/vec2.lisp,
* src/vec3.lisp:
- added function to blit skipping transparents pixels.
- added skeleton for game.
- added 'vec2-insecure'.
- used a reader macro for set the same optimization level on functions
that needs to be optimized.
- moved macro for the optimization to config.lisp;
- refactored classes for entities.
2024-08-08 cage
* src/demo-pixels-buffer.lisp,
* src/package.lisp,
* src/pixels-buffer.lisp,
* src/vec2.lisp:
- allowed floating point vertices when drawing polygons.
- made 'blit-transform' a wrapper for polygon rendering.
2024-08-07 cage
* game/aabb2.lisp,
* game/packages.lisp,
* nodgui.asd,
* src/demo-pixels-buffer.lisp,
* src/pixels-buffer.lisp,
* src/vec2.lisp:
- commented out optimization.
- fixed return type of 'line-equation'.
- added dialog to demo 'animation'.
- added aabb2 and skeleton.
2024-08-06 cage
* src/demo-pixels-buffer.lisp,
* src/pixels-buffer.lisp:
- fixed polygons texturing.
2024-08-04 cage
* src/demo-pixels-buffer.lisp,
* src/pixels-buffer.lisp,
* src/treeview.lisp:
- improved visual results of 'treeview-refit-columns-width'.
- fixed swapped texture coordinates in polygon shader.
2024-08-03 cage
* src/demo-pixels-buffer.lisp,
* src/package.lisp,
* src/pixels-buffer.lisp,
* src/vec2.lisp:
- added shader for texture mapped polygon.
- made the goal of the texture shader to modify the destination buffer
not only returns the texture coordinates (more effects can be
programmed this way)..
- added 'texture-shader-wrap-replace-bilinear';
- fixed literals to ensure single float.
- fixed increment, the number after the clause 'by' in a loop must be
a positive number.
- cleaned loop and prevented negative increment.
- used bilinear filtering for texture mapped polygons.
- fixed vertical clipping of texture mapped polygon.
- optimized calculation of starting texel in texture mapped poligons.
- optimized texture mapped polygon clipping.
2024-07-27 cage
* src/demo-pixels-buffer.lisp,
* src/pixels-buffer.lisp:
- restored all features of the animations demo.
- restored optimizations switches.
2024-07-19 cage
* src/demo-pixels-buffer.lisp,
* src/package.lisp,
* src/pixels-buffer.lisp,
* src/vec2.lisp,
* src/vec3.lisp:
- [pixel-buffer] added rendering function for primitives that extends
beyond the dimensional limits (width and height) of the buffer where
the primitive will be rendered.
2024-07-16 cage
* src/pixels-buffer.lisp:
- optimized rasterizing of texture mapped polygon.
2024-07-15 cage
* src/demo-pixels-buffer.lisp,
* src/package.lisp,
* src/pixels-buffer.lisp,
* src/pixmap.lisp:
- fixed test for checking if intersections should be calculated;
- added an inefficient draft for texture mapped 2D polygons;
- fixed types for polygons vertices array.
2024-07-14 cage
* README.org,
* src/demo-pixels-buffer.lisp,
* src/package.lisp,
* src/pixels-buffer.lisp,
* src/vec2.lisp:
- added 'nodgui.pixels-canvas:draw-polygon';
- mentioned new dependencies in documentation.
- added declaration to optimize pixel buffer related functions.
- refactored out local function included in the body of
'draw-polygon'.
2024-06-22 cage
* src/demo-tests.lisp,
* src/package.lisp,
* src/utils.lisp:
- added 'make-tk-color'.
2024-06-20 cage
* Changelog,
* nodgui.asd,
* src/canvas-shapes.lisp,
* src/demo-tests.lisp:
- fixed instance name ('canvas-polygon' to 'polygon');
- fixed keyword argument name in 'make-polygon' (:coords argument does
not exists in 'polygon' class.
Thanks to the person who reported this issue!
- increased version number;
- updated changelog.
Merge branch 'master' into development
- rotated pentagons coordinates in canvas demo.
2024-04-28 cage
* Changelog,
* NEWS.org,
* nodgui.asd,
* src/listbox.lisp,
* src/nodgui-mw.lisp,
* src/package.lisp,
* src/text.lisp:
- added 'listbox-index-at';
- added 'index->line-char-coordinates';
- [MW] fixed mouse selection of item in autocomplete entry widget.
- increased version number;
- updated Changelog and news file.
2024-04-22 cage
* Changelog,
* NEWS.org,
* README.org,
* nodgui.asd:
- increased version number;
- updated documentation, NEWS and chengelog.
2024-04-05 cage
* src/wish-communication.lisp:
- actually used the keyword argument ':debug' in macro 'with-nodgui'
when the debug argument is bound to ':deploy' the TCL interpreter
errors are shown in the GUI.
2024-04-04 cage
* src/trivial-debugger.lisp,
* src/wish-communication.lisp:
- shown a window printing the error when the wish interpreter signaled
a problem.
2024-04-03 cage
* src/package.lisp,
* src/utils.lisp,
* src/wish-communication.lisp:
- printed a more meaningful error message when the wish interpreter
signaled an error.
2024-04-01 cage
* Changelog,
* NEWS.org,
* nodgui.asd,
* src/utils.lisp,
* src/wish-communication.lisp:
- ensured bordeaux-thread print floating point number without the 'f';
(bt2:make-thread (lambda () (format t "~a" 1.0)))
prints: "1.0f0"
that makes "wish" interpreter signals an error.
(nodgui.utils:make-thread (lambda () (format t "~a" 1.0)))
prints "1.0" now.
- increased version number;
- updated NEWS and Changelog files.
- removed two hardcoded constants.
2024-03-31 cage
* Changelog,
* NEWS.org,
* README.org,
* nodgui.asd:
- updated copyright in README.
- increased version number;
- updated NEWS and Changelog files.
2024-03-28 cage
* src/demo-tests.lisp,
* src/events.lisp,
* src/package.lisp:
- changed function name 'fire-event-alias' to 'fire-event';
- ensured the list of aliases is not empty when using
'add-event-alias';
- added a demo for virtual event.
2024-03-27 cage
* src/demo-tests.lisp,
* src/events.lisp:
- renamed demo about virtual events aliasing.
- changed demo's name.
2024-03-25 cage
* NEWS.org,
* src/demo-tests.lisp,
* src/events.lisp,
* src/package.lisp,
* src/text.lisp:
- added virtual events management procedures;
- bypassed escaping for text inserted in a text widget;
- incresed level of entries in news file.
2024-03-12 cage
* Changelog,
* NEWS.org,
* nodgui.asd,
* src/demo-tests.lisp,
* src/nodgui-mw.lisp,
* src/wish-communication.lisp:
- collected all password related widgets in a single demo item.
- added quit button on bottom of password widgets demo window.
- added debug message.
- increased version number;
- updated News and changelog.
2024-03-03 cage
* src/demo-tests.lisp,
* src/panedwindow.lisp,
* src/progressbar.lisp,
* src/scale.lisp,
* src/scrollbar.lisp,
* src/separator.lisp,
* src/treeview.lisp,
* src/widget-helpers.lisp:
- added missing brace when generating tags for treeview.
- fixed escaping of treeview's row id.
- fixed escaping of treeview's row text (first column).
- added 'orient' keyarg when initializing some widgets.
2024-03-01 cage
* src/button.lisp,
* src/nodgui.lisp:
- allowed passing ':command' option via 'configure' for buttons
widget.
2024-02-23 cage
* src/demo-tests.lisp,
* src/nodgui-mw.lisp:
- [MW] changed autocomplete: added a third return value to
autocomplete function, if this value is not null, instructs the
widget to autoselect the candidate it it is the only one.
2024-02-22 cage
* src/demo-3d-window.lisp,
* src/demo-pixels-buffer.lisp,
* src/rendering-buffer-context.lisp,
* src/utils.lisp:
- removed direct reference to 'bt' package in pixels buffer demo.
- removed direct reference to 'bt' package in pixels buffer and 3d
window widgets.
- moved from bordeaux threads version 1 API to version 2.
2024-02-21 cage
* src/demo-pixels-buffer.lisp:
- fixed 'stealing' of stop-thread flag.
for future reference:
The demo has a structure that contains the rendering thread and a
flag that, in not null, stop the rendering loop contained in the
aforementioned thread
(defstruct animation
(thread)