Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Main
Synchronet
Compare Revisions
a91c367322d5d5d15a78a8288bf66259709357f0...9ff07027282502edbcae0fdde201de3bb4a2825c
Commits (1)
Added optional 'title' setting to root section of bullshit.ini.
· 9ff07027
echicken
authored
Feb 19, 2022
If absent, default string 'Bulletins' will be used.
9ff07027
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
xtrn/bullshit/bullshit.js
xtrn/bullshit/bullshit.js
+1
-1
No files found.
xtrn/bullshit/bullshit.js
View file @
9ff07027
...
...
@@ -226,7 +226,7 @@ function initDisplay(settings, list) {
footerFrame
.
drawBorder
(
settings
.
colors
.
border
);
titleFrame
.
gotoxy
(
3
,
2
);
titleFrame
.
putmsg
(
'
Bulletins
'
);
titleFrame
.
putmsg
(
settings
.
title
||
'
Bulletins
'
);
// titleFrame.gotoxy(frame.width - 25, 2);
// titleFrame.putmsg('bullshit v3 by echicken', settings.colors.heading);
...
...