Skip to content
GitLab
Projects Groups Topics Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Register
  • Sign in
  • Synchronet Synchronet
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributor statistics
    • Graph
    • Compare revisions
  • Issues 258
    • Issues 258
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 2
    • Merge requests 2
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Artifacts
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Container Registry
    • Terraform modules
    • Model experiments
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar

Admin message

This GitLab instance has migrated as of Nov-5-2022 to a new server: hardware, OS, SSH key

Admin message

The v3.20a development branch has now been merged to the master branch. Sysops upgrading from earlier versions must run 'jsexec update'

  • MainMain
  • SynchronetSynchronet
  • Issues
  • #325

logon.js won't show logonXX.seq files

I create a logon1.seq logon2.seq etc to show petscii logon screens (also test with logonX.40col.seq) I also have the current logon1.asc,logon2.asc etc..that work fine.

I noteice that at logon procedure always show these .asc files instead of the .seq files for 40 columns connections (Pet40port)

    // Print successively numbered logon screens (logon, logon1, logon2, etc.)
    var highest_printed_logon_screen=-1;
    for(var i=0;;i++) {
        var fname="logon";
        if(i)
            fname+=i;
        if(!bbs.menu_exists(fname)) {
            if(i>1)
                break;
            continue;
        }
        bbs.menu(fname);
        highest_printed_logon_screen = i;
    }

bbs.menu() works at main menu prompt, it show the main.40col.seq file whitout problem

Edited Jan 21, 2022 by Fernando Toledo
Assignee
Assign to
Time tracking