Commit | Line | Data |
---|---|---|
55d2b2c2 KL |
1 | Jexer Work Log |
2 | ============== | |
3 | ||
e685a47d KL |
4 | March 21, 2017 |
5 | ||
6 | I am starting to gear up for making Jexer a serious project now. I've | |
7 | created its SourceForge project, linked it back to GitHub, have most | |
8 | of its web page set up (looks like Qodem's), and released 0.0.4. And | |
9 | then this morning saw an out-of-bounds exception if you kill the main | |
10 | demo window. Glad I marked it Alpha on SourceForge... | |
11 | ||
12 | Yesterday I was digging around the other Turbo Vision derived projects | |
13 | while populating the about page, and made a sad/happy-ish realization: | |
14 | Embarcadero could probably get all of them shut down if it really | |
15 | wanted to, including Free Vision. I uncovered some hidden history in | |
16 | Free Vision, such that it appears that Graphics Vision had some | |
17 | licensed Borland code in it, so there might be enough mud in the air | |
18 | that Free Vision could be shut down the same way RHTVision was. But | |
19 | even worse is the SCOTUS ruling on Oracle vs Google: if APIs are | |
20 | copyrighted (regardless of their thoughts on fair use), then any | |
21 | software that matches the API of a proprietary project might find | |
22 | itself subject to an infringement case. So that too could shut down | |
23 | the other API-compatible TV clones. | |
24 | ||
25 | Fortunately, Jexer (and D-TUI) is completely new, and has no API | |
26 | compatibility with Turbo Vision. Jexer could be a new root to a whole | |
27 | generation of TUI applications. | |
28 | ||
a7986f7b KL |
29 | March 18, 2017 |
30 | ||
31 | TStatusBar is working, as is "smart" window placement. Overall this | |
32 | is looking quite nice. Found a lot of other small paper cut items and | |
33 | fixed them. It looks absolutely gorgeous on Mac now. | |
34 | ||
35 | Tomorrow I will get to the public wifi and get this uploaded. | |
36 | ||
37 | Time to call this 0.0.4 now though. We are up to 32,123 lines of | |
38 | code. | |
39 | ||
55d2b2c2 KL |
40 | March 17, 2017 |
41 | ||
42 | Jexer is coming back to active development status. I had a lot of | |
43 | other projects ahead of it in the queue, mostly Qodem but also Jermit | |
44 | and of course lots of actual day job work keeping me too tired for | |
45 | afterhours stuff. But here we are now, and I want to get Jexer to its | |
46 | 1.0.0 release before the end of 2018. After that it will be a | |
47 | critical bit of function for IWP and NIB, if I ever get those going. | |
48 | I need to re-organize the demo app a bit so that it fits within 80x25, | |
49 | and then get to TStatusBar. | |
50 | ||
51 | A status bar will be an optional part of TWindow. If it exists, then | |
52 | it will be drawn last by TApplication and get events routed to it from | |
53 | TWindow's event handlers. This will have the nice effect that the | |
54 | status bar can change depending on which window is active, without any | |
55 | real extra work on TApplication's part. | |
56 | ||
57 | Putting together a proper TODO now, with release and regression | |
58 | checklists. I think I will see if jexer is available at SourceForge, | |
59 | and if so grab it. Perhaps I can put together some good Turbo Vision | |
60 | resources too. At the very least direct people to the Borland-derived | |
61 | C++ releases and Free Vision. | |
62 |