Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Synchronet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Main
Synchronet
Commits
97427456
Commit
97427456
authored
8 years ago
by
nightfox
Browse files
Options
Downloads
Patches
Plain Diff
Version 1.17 beta 26: Synchronet pause characters are now removed from the messages being displayed
parent
c5661e3b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
xtrn/DDMsgReader/DDMsgReader.js
+6
-5
6 additions, 5 deletions
xtrn/DDMsgReader/DDMsgReader.js
with
6 additions
and
5 deletions
xtrn/DDMsgReader/DDMsgReader.js
+
6
−
5
View file @
97427456
...
...
@@ -299,8 +299,8 @@ if (system.version_num < 31500)
}
// Reader version information
var READER_VERSION = "1.17 Beta 2
5
";
var READER_DATE = "2017-01-1
6
";
var READER_VERSION = "1.17 Beta 2
6
";
var READER_DATE = "2017-01-
2
1";
// Keyboard key codes for displaying on the screen
var UP_ARROW = ascii(24);
...
...
@@ -4400,9 +4400,10 @@ function DigDistMsgReader_ReadMessageEnhanced(pOffset, pAllowChgArea)
if (msgHeader.from.length == 0)
msgHeader.from = "All";
// Get the message text and see if it has any ANSI codes. If it has ANSI codes,
// then don't use the scrolling interface so that the ANSI gets displayed properly.
var messageText = this.GetMsgBody(msgHeader);
// Get the message text and see if it has any ANSI codes. Remove any pause
// codes it might have. If it has ANSI codes, then don't use the scrolling
// interface so that the ANSI gets displayed properly.
var messageText = this.GetMsgBody(msgHeader).replace("\1p", "").replace("\1P", "");
// If the message has ANSI content, then use the scrolling interface only
// if frame.js is available on the BBS machine and the option to use the
// scrolling interface for ANSI messages is enabled.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment