Skip to content

Commit

Permalink
Prep for 0.14.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
SMerrony committed Dec 4, 2022
1 parent 7e62a96 commit 49cbdc9
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 95 deletions.
1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"ada.projectFile": "dashera.gpr",
"ada.enableDiagnostics": false,
"cSpell.words": [
"dashera",
"iftop",
"stty"
]
Expand Down
2 changes: 1 addition & 1 deletion Docs/implementationChart.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

| Command | Octal | Keyboard | D200 | D210 | Notes |
|--------------------------------------|-------------|----------------------------| :--: | :--: | ----------------------------------|
| Bell | 007 | Ctrl-G | Y | Y | Must run from terminal that rings bell |
| Bell | 007 | Ctrl-G | Y | Y | Must be allowed by your window manager |
| Blink Disable | 004 | Ctrl-D | Y | Y | Disable blinking on screen |
| Blink Enable | 003 | Ctrl-C | Y | Y | Enable blinking on screen |
| Blink Off | 017 | Ctrl-O | Y | Y | |
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ no/odd/even parity, 1 or 2 stop bits (defaults to DG-standard: 9600, 8, n, 1)
* 15 (plus Ctrl & Shift) DASHER Function keys, Erase Page, Erase EOL, Hold, and Break keys
* C1, C2, C3 and C4 DASHER Custom keys (plus shifted versions)
* Loadable function-key templates (BROWSE, SED and SMI provided as examples)
* 1000-line terminal history
* 2000-line terminal history
* Session logging to file
* Various terminal widths, heights and zoom-levels available
* Support for mini-Expect scripts to automate some tasks [see Wiki](https://github.com/SMerrony/DasherG/wiki/DasherG-Mini-Expect-Scripts)
Expand Down
42 changes: 0 additions & 42 deletions Unused/queues.adb

This file was deleted.

45 changes: 0 additions & 45 deletions Unused/queues.ads

This file was deleted.

5 changes: 3 additions & 2 deletions changelog
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
dashera (0.13.3) stable; urgency=low
dashera (0.14.0) stable; urgency=low

[SMerrony]
* Usability: Implement key auto-repeat (Issue #8)
* Usability: Make the Backspace key work the same as DEL
* Usability: Increase history to 2000 lines
* Issue: Remove template title labels when collapsing template

-- SMerrony <merrony@gmail.com> Sun, 03 Dec 2022 10:00:00 +0200
-- SMerrony <merrony@gmail.com> Sun, 04 Dec 2022 10:00:00 +0200

dashera (0.13.2) stable; urgency=low

Expand Down
4 changes: 2 additions & 2 deletions src/gui.adb
Original file line number Diff line number Diff line change
Expand Up @@ -810,7 +810,7 @@ package body GUI is
Menu_Item : Gtk.Menu_Item.Gtk_Menu_Item;
Logging_Item, Expect_Item, Send_File_Item,
History_Item, Resize_Item,
D200_Item, D210_Item, Self_Test_Item,
D200_Item, D210_Item, Self_Test_Item,
Quit_Item,
Paste_Item,
About_Item : Gtk.Menu_Item.Gtk_Menu_Item;
Expand Down Expand Up @@ -892,7 +892,7 @@ package body GUI is
Gtk_New (Hide_Template_Item, "Hide Func. Key Template");
View_Menu.Append (Hide_Template_Item);
Hide_Template_Item.Set_Sensitive (False);
Hide_Template_Item.On_Activate (Hide_Template_CB'Access);
Hide_Template_Item.On_Activate (Hide_Template_CB'Access);

-- Emulation

Expand Down
4 changes: 2 additions & 2 deletions src/gui.ads
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,15 @@ package GUI is
package Handlers is new Gtk.Handlers.Callback (Widget_Type => Gtk.Widget.Gtk_Widget_Record);
package SB_Timeout_P is new Glib.Main.Generic_Sources (Gtk.Box.Gtk_Box);

App_SemVer : constant String := "0.13.3"; -- TODO Update Version each release!
App_SemVer : constant String := "0.14.0"; -- TODO Update Version each release!
App_Title : constant String := "DasherA";
App_Comment : constant String := "A Data General DASHER terminal emulator";
App_Author : constant String := "Stephen Merrony";
App_Copyright : constant String := "Copyright ©2022 S.Merrony";
App_Icon : constant String := "DGlogoOrange.ico";
App_Website : constant String := "https://github.com/SMerrony/dashera";

History_Lines : constant Natural := 1000;
History_Lines : constant Natural := 2000;

Main_Window : Gtk_Window;
Main_Grid : Gtk.Grid.Gtk_Grid;
Expand Down

0 comments on commit 49cbdc9

Please sign in to comment.