Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Synchronet
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
141
Issues
141
List
Boards
Labels
Service Desk
Milestones
Merge Requests
4
Merge Requests
4
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Packages & Registries
Packages & Registries
Package Registry
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Main
Synchronet
Compare Revisions
10339c97a62179a636500b4c0b873ae8acbf8eff...9f967c88662c8ac93b925b3b69013d533bc603f9
Source
9f967c88662c8ac93b925b3b69013d533bc603f9
Select Git revision
...
Target
10339c97a62179a636500b4c0b873ae8acbf8eff
Select Git revision
Compare
Commits (1)
Add a screen at start for alpha builds.
· 9f967c88
Deuce
authored
Nov 28, 2020
Basically, try to scare away people who won't file bug reports.
9f967c88
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
0 deletions
+23
-0
src/syncterm/syncterm.c
src/syncterm/syncterm.c
+23
-0
No files found.
src/syncterm/syncterm.c
View file @
9f967c88
...
...
@@ -56,6 +56,7 @@ static const KNOWNFOLDERID FOLDERID_ProgramData = {0x62AB5D82,0xFDC1,0x4DC3,{0x
#include "window.h"
char
*
syncterm_version
=
"SyncTERM 1.2a"
#define ALPHA
#ifdef _DEBUG
" Debug ("
__DATE__
")"
#endif
...
...
@@ -1618,6 +1619,28 @@ int main(int argc, char **argv)
umask
(
077
);
#endif
#ifdef ALPHA
init_uifc
(
TRUE
,
TRUE
);
uifc
.
showbuf
(
WIN_SAV
|
WIN_MID
|
WIN_HLP
,
0
,
0
,
76
,
uifc
.
scrn_len
-
2
,
"WARNING: ALPHA VERSION"
,
"This is an ~`ALPHA`~ version
\n\n
"
"
\n
"
"It has both known and unknown issues and is not believed to be suitable
\n
"
"for use. By using it, you are agreeing to be free QA to find and report bugs.
\n
"
"
\n
"
"There are expected to be many bugs.
\n
"
"
\n
"
"Bugs should be reported at http://sf/net/p/syncterm/tickets/
\n
"
"when reporting bugs, please register with a valid email so I can follow
\n
"
"up with additional questions.
\n
"
"
\n
"
"This message will appear every time you start this program. Please
\n
"
"consider running the latest release from:
\n
"
"https://sourceforge.net/projects/syncterm/files/latest/download
\n
"
"if you want a terminal that works."
,
NULL
,
NULL
);
uifcbail
();
#endif
/* Auto-connect URL */
if
(
url
[
0
])
{
if
((
bbs
=
(
struct
bbslist
*
)
malloc
(
sizeof
(
struct
bbslist
)))
==
NULL
)
{
...
...