[
  {
    "path": ".github/dependabot.yaml",
    "content": "# https://docs.github.com/en/github/administering-a-repository/configuration-options-for-dependency-updates\n---\nversion: 2\nupdates:\n  - package-ecosystem: \"github-actions\"\n    directory: \"/\"\n    schedule:\n      interval: \"daily\"\n    # labels:\n    #  - \"📦 dependencies\"\n    assignees:\n      - \"okibcn\"\n"
  },
  {
    "path": ".github/workflows/SyncNano.yml",
    "content": "# Syncs this repo with the GNU Nano editor repo.\r\n\r\nname: SyncNano\r\n\r\non:\r\n  schedule:\r\n  - cron: '0 0 * * *'\r\n  workflow_dispatch:\r\n\r\njobs:\r\n  repo-sync:\r\n    runs-on: ubuntu-latest\r\n    steps:\r\n\r\n    - uses: actions/checkout@v3\r\n      with:\r\n        persist-credentials: false\r\n\r\n    - name: GitHub Repo Sync\r\n      uses: repo-sync/github-sync@v2.3.0\r\n      with:\r\n        source_repo: \"git://git.savannah.gnu.org/nano.git\"\r\n        source_branch: \"*\"\r\n        destination_branch: \"*\"\r\n        github_token: ${{ secrets.GITHUB_TOKEN }}\r\n        sync_tags: \"true\"\r\n"
  },
  {
    "path": ".github/workflows/Trash-cleaner.yml",
    "content": "name: Delete old workflow runs\r\non:\r\n  schedule:\r\n    - cron: '00 2 * * *'\r\n  # runs at 2 am UTC every day.\r\n  workflow_dispatch:\r\n    inputs:\r\n      days:\r\n        description: 'Number of days.'\r\n        required: true\r\n        default: '30'\r\n      minimum_runs:\r\n        description: 'The minimum runs to keep for each workflow.'\r\n        required: true\r\n        default: '2'\r\n      delete_workflow_pattern:\r\n        description: 'The name or filename of the workflow. if not set then it will target all workflows.'\r\n        required: false\r\n      delete_workflow_by_state_pattern:\r\n        description: 'Remove workflow by state: active, deleted, disabled_fork, disabled_inactivity, disabled_manually'\r\n        required: true\r\n        default: \"All\"\r\n        type: choice\r\n        options:\r\n          - \"All\"\r\n          - active\r\n          - deleted\r\n          - disabled_inactivity\r\n          - disabled_manually\r\n      delete_run_by_conclusion_pattern:\r\n        description: 'Remove workflow by conclusion: action_required, cancelled, failure, skipped, success'\r\n        required: true\r\n        default: \"All\"\r\n        type: choice\r\n        options:\r\n          - \"All\"\r\n          - action_required\r\n          - cancelled\r\n          - failure\r\n          - skipped\r\n          - success\r\n      dry_run:\r\n        description: 'Only log actions, do not perform any delete operations.'\r\n        required: false\r\n\r\njobs:\r\n  del_runs:\r\n    runs-on: ubuntu-latest\r\n    steps:\r\n      - name: On demand Delete workflow runs\r\n        if:   github.event_name != 'workflow_dispatch'\r\n        uses: Mattraks/delete-workflow-runs@v2\r\n        with:\r\n          token: ${{ secrets.GITHUB_TOKEN }}\r\n          repository: ${{ github.repository }}\r\n          retain_days: 1\r\n          keep_minimum_runs: 4\r\n          delete_workflow_by_state_pattern: \"All\"\r\n          delete_run_by_conclusion_pattern: \"All\"\r\n\r\n      - name: Scheduled Delete workflow runs\r\n        if:   github.event_name == 'workflow_dispatch'\r\n        uses: Mattraks/delete-workflow-runs@v2\r\n        with:\r\n          token: ${{ secrets.GITHUB_TOKEN }}\r\n          repository: ${{ github.repository }}\r\n          retain_days: ${{ github.event.inputs.days }}\r\n          keep_minimum_runs: ${{ github.event.inputs.minimum_runs }}\r\n          delete_workflow_pattern: ${{ github.event.inputs.delete_workflow_pattern }}\r\n          delete_workflow_by_state_pattern: ${{ github.event.inputs.delete_workflow_by_state_pattern }}\r\n          delete_run_by_conclusion_pattern: ${{ github.event.inputs.delete_run_by_conclusion_pattern }}\r\n          dry_run: ${{ github.event.inputs.dry_run }}"
  },
  {
    "path": ".github/workflows/Xbuild4Windows.yml",
    "content": "# Copyright (c) 2023 okibcn\r\n# This is free software, licensed under the GNU General Public License v3.0\r\n# See /LICENSE for more information.\r\n# https://github.com/okibcn/nano-for-windows\r\n# Description: Builds nano for Windows\r\n\r\nname: Xbuild4Windows\r\non:\r\n  # schedule:\r\n  #   - cron: '51 */8 * * *'\r\n  # runs at {0,8,16}h51m UTC every day\r\n  workflow_dispatch:\r\n    inputs:\r\n      debug_enabled:\r\n        description: 'Debug session enabled'\r\n        required: false\r\n        default: false\r\n        type: boolean\r\n      release:\r\n        description: 'Delivery Channel'\r\n        required: false\r\n        default: 'Artifact'\r\n        type: choice\r\n        options:\r\n          - \"Artifact\"\r\n          - \"Release\"        \r\n\r\njobs:\r\n  ## PRECHECK ##############################################################################\r\n  checks:\r\n    name: \"✔️ Pre-build checks\"\r\n    runs-on: ubuntu-latest\r\n    # Use the Bash shell regardless whether the GitHub Actions runner is ubuntu-latest, macos-latest, or windows-latest\r\n    outputs:\r\n      body: ${{ steps.checks.outputs.body }}\r\n      build: ${{ steps.checks.outputs.build }}\r\n      cancel: ${{ steps.checks.outputs.cancel }}\r\n    steps:\r\n    - name: \"✔️ Pre-build checks\"\r\n      id: checks\r\n      shell: bash\r\n      run: |\r\n        git clone --depth=1 -n git://git.savannah.gnu.org/nano.git\r\n        cd nano\r\n        LAST_NANO=$( TZ=UTC git show --quiet --date='format-local:%Y-%m-%dT%H:%M:%SZ' --format=\"%cd\" )\r\n        CHANGES_NANO=\"$(git log -1 --pretty=%B)\"\r\n        git clone --depth=1 -n https://github.com/Bill-Gray/PDCursesMod.git curses\r\n        cd curses\r\n        echo \"Nano last commit DATE:    $LAST_NANO\"\r\n        LAST_CURSES=$( TZ=UTC git show --quiet --date='format-local:%Y-%m-%dT%H:%M:%SZ' --format=\"%cd\" )\r\n        echo \"Curses last commit DATE:  $LAST_CURSES\"\r\n        CHANGES_CURSES=\"$(git log -1 --pretty=%B)\"\r\n        cd ../..\r\n        rm -rf nano\r\n        LAST_RELEASE=$( wget -qO- https://github.com/$GITHUB_REPOSITORY/releases | sed -nE 's|^.*datetime=\"([0-9TZ.:-]+).*|\\1|p' | head -1 ) \\\r\n          || LAST_RELEASE=\"2000.01.01T00:00:00Z\"\r\n        echo \"n4win last release DATE:  $LAST_RELEASE\"\r\n        if [[ $LAST_NANO > $LAST_RELEASE ]]; then\r\n          echo \"NEW NANO SOURCE!!!!\"\r\n          echo \"# NANO CHANGES\" > body.txt\r\n          echo >> body.txt\r\n          echo \"$CHANGES_NANO\" >> body.txt\r\n          echo >> body.txt\r\n          echo >> body.txt\r\n          cat body.txt\r\n        fi\r\n        if [[ $LAST_CURSES > $LAST_RELEASE ]]; then\r\n          echo \"NEW CURSES SOURCE!!!!\"\r\n          [ -f body.txt ] && echo >> body.txt\r\n          echo \"# PDCursesMod CHANGES\" >> body.txt\r\n          echo >> body.txt\r\n          echo \"$CHANGES_CURSES\" >> body.txt\r\n        fi\r\n        if [[ \"$GITHUB_EVENT_NAME\" == \"workflow_dispatch\" ]]; then\r\n          echo \"NEW WINDOWS PATCHES!!!!\"\r\n          [ -f body.txt ] && echo >> body.txt\r\n          echo \"# WINDOWS PORTABILITY PATCHES\" >> body.txt\r\n          echo >> body.txt\r\n        fi\r\n\r\n        if [ -f body.txt ]; then\r\n          wget -q \"http://git.savannah.gnu.org/gitweb/?p=nano.git;a=shortlog\" -O log.html\r\n          NANO_VERSION=$(grep -m 1 \"title=\\\"tags/\" log.html | grep -Eo \"v[0-9]+\\.[0-9]+\" | head -1)\r\n          echo \"Nano main VERSION: $NANO_VERSION\"\r\n          NANO_SUBVER=$( awk '1; /\"tag indirect\"/{exit}' log.html | grep -c '</tr>')\r\n          echo \"Nano SUBVERSION: $NANO_SUBVER\"\r\n          [ $NANO_SUBVER -gt 0 ] && NANO_VERSION=\"${NANO_VERSION}-${NANO_SUBVER}\"\r\n          echo \"Current nano version: ${NANO_VERSION}\"\r\n          LAST_BUILD=$( wget -qO- https://github.com/$GITHUB_REPOSITORY/releases | sed -nE \"s|^.*tag/(v[0-9.-]+).*|\\1|p\" | head -1 ) || echo \"FIRST RELEASE!!!!\"\r\n          echo \"Last Nano for Windows build: ${LAST_BUILD}\"\r\n          LAST_VERSION=$( echo $LAST_BUILD | awk -F '-' '{print $1}' )\r\n          echo \"Last Nano for Windows main Version: ${LAST_VERSION}\"\r\n          LAST_SUBVER=$(echo $LAST_BUILD | awk -F '[.-]' '{print $3}' )\r\n          echo \"Last Nano for Windows Subversion: ${LAST_SUBVER}\"\r\n          [ $LAST_SUBVER -gt 0 ] && LAST_VERSION=\"${LAST_VERSION}-${LAST_SUBVER}\"\r\n          echo \"Last Nano version: ${LAST_VERSION}\"\r\n          if [ \"${NANO_VERSION}\" == \"${LAST_VERSION}\" ]; then\r\n            # This is a new Windows build based on the same nano build, probably because there is a new curses patch\r\n            SUBBUILD=\"$(echo $LAST_BUILD | awk -F . '{print $3}')\"\r\n            ((SUBBUILD=SUBBUILD+1))\r\n            [ -z $(echo \"$LAST_BUILD\" |grep '-') ] \\\r\n              && BUILD=\"${NANO_VERSION}-0.${SUBBUILD}\" \\\r\n              || BUILD=\"${NANO_VERSION}.${SUBBUILD}\"\r\n          else\r\n            BUILD=\"${NANO_VERSION}\"\r\n          fi\r\n          echo \"New Build: ${BUILD}\"\r\n          echo \"build=${BUILD}\" >>  $GITHUB_OUTPUT\r\n          echo \"body=$(cat body.txt | base64 -w0)\" >>  $GITHUB_OUTPUT\r\n          echo \"cancel=false\" >>  $GITHUB_OUTPUT\r\n        else\r\n          echo \"NO NEW SOURCES. CANCELLING ACTION...\"\r\n          echo \"cancel=true\" >>  $GITHUB_OUTPUT\r\n        fi\r\n\r\n  ## BUILD ##############################################################################\r\n  build:\r\n    needs: [ checks ]\r\n    if: needs.checks.outputs.cancel != 'true'\r\n    name: \"⚙️ nano4Win ${{ matrix.pretty }} build\"\r\n    runs-on: ubuntu-latest\r\n    container: alpine:edge\r\n    strategy:\r\n      fail-fast: false\r\n      matrix:\r\n        include:\r\n          - { arch: i686, name: win32, short: w32, pretty: 32 bits }\r\n          - { arch: x86_64, name: win64, short: w64, pretty: 64 bits }\r\n          - { arch: aarch64, name: arm64, short: a64, pretty: on Arm }\r\n    defaults:\r\n      run:\r\n        shell: bash\r\n    steps:\r\n    - name: \"⏬ Download OS tools\"\r\n      if: ${{ job.container }}\r\n      shell: sh\r\n      run: |\r\n        apk update && apk upgrade\r\n        apk add bash curl jq tar xz github-cli \\\r\n          git make texinfo groff gettext-dev automake autoconf pkgconf coreutils upx p7zip\r\n        echo \"PATH=$(pwd)/llvm-mingw/bin:$PATH\" >> $GITHUB_ENV\r\n        # this seems to be needed when running in a container (beause of UID mismatch??)\r\n        git config --global --add safe.directory '*'\r\n\r\n    - name: \"📂 Restore LLVM-MinGW Folder\"\r\n      uses: actions/cache@v3.3.1\r\n      id: cache-folder\r\n      with:\r\n        key: llvm-folder\r\n        path: llvm-mingw\r\n\r\n    - name: \"⏬ Download Sources\"\r\n      run: |\r\n        git clone git://git.savannah.gnu.org/nano.git --depth 1\r\n        cd nano\r\n        git clone https://github.com/Bill-Gray/PDCursesMod.git curses\r\n        git clone git://git.sv.gnu.org/gnulib.git --depth 1\r\n        autopoint --force\r\n        glibmodules=\"\r\n            futimens\r\n            getdelim\r\n            getline\r\n            getopt-gnu\r\n            glob\r\n            isblank\r\n            iswblank\r\n            lstat\r\n            mkstemps\r\n            nl_langinfo\r\n            regex\r\n            sigaction\r\n            snprintf-posix\r\n            stdarg\r\n            strcase\r\n            strcasestr-simple\r\n            strnlen\r\n            sys_wait\r\n            vsnprintf-posix\r\n            wchar\r\n            wctype-h\r\n            wcwidth\r\n        \"\r\n        rm -rf lib\r\n        ./gnulib/gnulib-tool --import ${glibmodules}\r\n        aclocal -I m4\r\n        autoconf\r\n        autoheader\r\n        automake --add-missing\r\n\r\n    - name: \"🪄 Apply Windows Portability Magic\"\r\n      run: |\r\n        function _diff() {\r\n          # Thanks to @rasa for this function\r\n          mapfile -t < <(find . -type f -name '*.bak')\r\n          for bak in \"${MAPFILE[@]}\"; do\r\n            src=${bak/.bak/}\r\n            for ((n=1; ; n++)); do\r\n              patch=${src}-${n}.patch\r\n              test -f \"${patch}\" || break\r\n            done\r\n            diff -u -w \"${bak}\" \"${src}\" >\"${patch}\" || true\r\n            rm -f \"${bak}\" || true\r\n            if [[ ! -s \"${patch}\" ]]; then\r\n              rm -f \"${patch}\" || true\r\n              continue\r\n            fi\r\n            echo \"${patch}\":\r\n            cat \"${patch}\"\r\n          done\r\n          return 0\r\n        }\r\n\r\n        cd nano\r\n        ##########################\r\n        ##                        ##\r\n        ##     APPLY PATCHES      ##\r\n        ##                        ##\r\n        ##########################\r\n\r\n        # 1. >realpath< function doesn't exist on Windows, which isn't fully POSIX compliant.\r\n        echo -e \"\\n\\nPATCH: realpath() workaround applied.\"\r\n        cp -p ./src/definitions.h{,.bak}\r\n        echo \" \" >> ./src/definitions.h\r\n        echo \"#ifdef _WIN32\" >> ./src/definitions.h\r\n        echo \"#include <windows.h>\"  >> ./src/definitions.h\r\n        echo \"#include \\\"uniwidth.h\\\"\"  >> ./src/definitions.h\r\n        echo \"#define realpath(N,R) _fullpath((R),(N),0)\" >> ./src/definitions.h\r\n        echo \"#endif\" >> ./src/definitions.h\r\n        _diff\r\n\r\n        # Fix homedir detection\r\n        echo -e \"\\n\\nPATCH: configuring Windows home folder.\"\r\n        sed -i.bak 's|\\\"HOME\\\"|\"USERPROFILE\\\"|g' ./src/utils.c\r\n        _diff\r\n\r\n        # Modify temporal path from linux to windows\r\n        echo -e \"\\n\\nPATCH: configuring Windows temporal folder.\"\r\n        sed -i.bak 's|TMPDIR|TEMP|g' ./src/files.c\r\n        echo -e \"\\n\\nPATCH: Convert invalid filename characters to ! for backup files.\"\r\n        sed -i \"s~if (thename\\[i\\] == '/')~if (strchr(\\\"<>:\\\\\\\\\\\"/\\\\\\\\\\\\\\\\|?*\\\", thename[i]))~g\" ./src/files.c\r\n        sed -i 's|/tmp/|~/AppData/Local/Temp/|g' ./src/files.c\r\n        _diff\r\n\r\n        # Modify path expansion with backslashes\r\n        echo -e \"\\n\\nPATCH: Configuring backslashes for folders.\"\r\n        sed -i.bak \"/free(tilded)/a\\\r\n            \\\\\\\\tfor(tilded = retval; \\*tilded; ++tilded) if(\\*tilded == '\\\\\\\\\\\\\\\\') \\*tilded = '/';\r\n\r\n            s|path\\[i\\] != '/'|path[i] != '/' \\&\\& path[i] != '\\\\\\\\\\\\\\\\'|\" src/files.c\r\n        _diff\r\n\r\n        # default open() files in binary mode as linux does\r\n        echo -e \"\\n\\nPATCH: Forcing file management in binary mode like the Linux version.\"\r\n        sed -i.bak 's/O_..ONLY/& | _O_BINARY/g' ./src/files.c\r\n        _diff\r\n        sed -i.bak 's/O_..ONLY/& | _O_BINARY/g' ./src/text.c\r\n        _diff\r\n\r\n        # Enable UTF-8 Terminal\r\n        echo -e \"\\n\\nPATCH: Enable UTF-8 console.\"\r\n        sed -i.bak 's|vt220||g\r\n            /x1B/d\r\n            /nl_langinfo(CODESET)/ c\\\\tsetlocale(LC_ALL, \"\");'  src/nano.c\r\n        _diff\r\n\r\n        # Allow custom colors in terminals with more than 256 colors\r\n        echo -e \"\\n\\nPATCH: Allow true color.\"\r\n        sed -i.bak \"/COLORS == 256/ {s/==/>=/}\"  src/rcfile.c\r\n        _diff\r\n\r\n        # Solve window resize crashes\r\n        echo -e \"\\n\\nPATCH: Window resize fix.\"\r\n        sed -i.bak -e \"/LINES and COLS accordingly/{n;N;d}\" src/nano.c # delets 2 next lines\r\n        sed -i \"/LINES and COLS accordingly/a\\\r\n            \\\\\\\\tresize_term(0, 0);\\\\n\\\r\n            erase();\" src/nano.c\r\n        sed -i -e \"/recreate the subwindows with their (new) sizes/{n;d}\" src/nano.c\r\n        _diff\r\n        sed -i.bak 's/the_window_resized/input == KEY_RESIZE/' src/winio.c\r\n        _diff\r\n\r\n        # Solve long delay after unicode\r\n        echo -e \"\\n\\nPATCH: solved deadlock with unicode characters.\"\r\n        sed -i.bak \"/halfdelay(ISSET(QUICK_BLANK)/,/disable_kb_interrupt/d\"  src/winio.c\r\n        _diff\r\n\r\n        # Add (Y/N/^C) to Save modified buffer prompt\r\n        echo -e \"\\n\\nPATCH: More info for exit message.\"\r\n        sed -i.bak \"s|Save modified buffer|& (Y/N/^C)|\"  src/nano.c\r\n        _diff\r\n\r\n        # Fix browser folder change\r\n        echo -e \"\\n\\nPATCH: Fixed browser folder change.\"\r\n        sed -i.bak 's/--selected/selected=0/' src/browser.c\r\n        _diff\r\n\r\n        # Fix for unicode char width detection using GNUlib internal function\r\n        echo -e \"\\n\\nPATCH: unicode char width detection using GNUlib internal function.\"\r\n        sed -i.bak 's|wcwidth(wc)|uc_width(wc, \"UTF-8\")|g'  src/chars.c src/winio.c\r\n        sed -i '/prototypes.h/a#include \"uniwidth.h\"'  src/chars.c\r\n        _diff\r\n\r\n        # Fix pipe-in data from Windows console.\r\n        echo -e \"\\n\\nPATCH: Fix pipe in data in Windows console.\"\r\n        sed -i.bak \"s|/dev/tty|CON|\" src/nano.c\r\n        sed -i \"s/stream, 0/stream, fd/\" src/nano.c\r\n        sed -i \"/FILE \\*stream/,/stop the reading/ c\\\r\n            \\\\\\\\t static FILE \\*stream;\\\\n\\\r\n            static int fd\\=0;\\\\n\\\r\n            if \\(fd\\=\\=0){\\\\n\\\r\n            if \\(GetConsoleWindow\\() \\!\\= NULL)\\\\n\\\r\n            fprintf\\(stderr, _\\(\\\"Reading data from keyboard; type a ^Z line to finish.\\\\\\\\n\\\"));\\\\n\\\r\n            fd \\= dup\\(0);\\\\n\\\r\n            stream \\= fdopen\\(fd, \\\"rb\\\");\\\\n\\\r\n            freopen\\(\\\"CON\\\", \\\"rb\\\", stdin);\\\\n\\\r\n            FreeConsole\\();\\\\n\\\r\n            AttachConsole\\(ATTACH_PARENT_PROCESS);\\\\n\\\r\n            return FALSE;}\\\\n\\\r\n            endwin\\();\\\\n\\\r\n            if \\(stream \\=\\= NULL) {\\\\n\\\r\n            \\\\t int errnumber \\= errno;\\\\n\\\r\n            \\\\t if\\(fd \\> -1) close\\(fd);\\\\n\\\r\n            return FALSE;}\" src/nano.c\r\n        sed -i \"/initscr/i\\\r\n            for\\(int optind_\\=optind; optind_ \\< argc;optind_\\+\\+)\\\\n\\\r\n            if \\(strcmp\\(argv\\[optind_], \\\"\\-\\\") \\=\\= 0){scoop_stdin\\();break;}\" src/nano.c\r\n        _diff\r\n\r\n\r\n        ####                               ####\r\n        #### PDCursesMod especific patches ####\r\n        ####                               ####\r\n\r\n        # Solve duplicated definitions ALT-ARROWS already in PDCursesMod\r\n        echo -e \"\\n\\nPATCH: remove duplicated definitions.\"\r\n        sed -i.bak \"/0x42[1234]/d\" src/definitions.h\r\n        _diff\r\n\r\n        # PDCurses uses 64bit (chtype) for cell attributes instead of 32bit (int)\r\n        echo -e \"\\n\\nPATCH: Improving from 256colors to true color.\"\r\n        sed -i.bak \"/interface_color_pair/ {s/int/chtype/}\" src/prototypes.h src/global.c\r\n        _diff\r\n        sed -i.bak \"/int attributes/ {s/int/chtype/}\" src/definitions.h\r\n        _diff\r\n        sed -i.bak \"/bool parse_combination/ {s/int/chtype/}\" src/rcfile.c\r\n        sed -i \"/int attributes/ {s/int/chtype/}\" src/rcfile.c\r\n        _diff\r\n\r\n        # Desambiguation of BACKSPACE vs ^H, or ENTER vs ^M and certain CTRL+key combos             //o//\r\n        echo -e \"\\n\\nPATCH: Full key modifiers detection.\"\r\n        sed -i.bak \"/get_kbinput(midwin, VISIBLE)/a\\\r\n            \\\\\\\\tif (\\!((PDC_get_key_modifiers()) & (PDC_KEY_MODIFIER_SHIFT|PDC_KEY_MODIFIER_CONTROL|PDC_KEY_MODIFIER_ALT)) ) {\\\\n\\\r\n            \\\\tswitch (input) {\\\\n\\\r\n            \\\\t\\\\tcase 0x08:      input = KEY_BACKSPACE; break;\\\\n\\\r\n            \\\\t\\\\tcase 0x0d:      input = KEY_ENTER;\\\\n\\\r\n            \\\\t}\\\\n\\\r\n            }\\\\n\\\r\n            if (PDC_get_key_modifiers() & PDC_KEY_MODIFIER_CONTROL){\\\\n\\\r\n            switch (input) {\\\\n\\\r\n            \\\\t\\\\tcase '/':          input = 31; break;\\\\n\\\r\n            \\\\t\\\\tcase SHIFT_DELETE: input = CONTROL_SHIFT_DELETE; break;\\\\n\\\r\n            \\\\t}\\\\n\\\r\n            }\"  src/nano.c\r\n        sed -Ei.bak '\r\n            s|(M-\\{\", )0|\\1ALT_LBRACKET|\r\n            s|(M-}\", )0|\\1ALT_RBRACKET|\r\n            ' src/global.c\r\n        sed -i.bak \"\r\n            s/0x401/CTL_LEFT/\r\n            s/0x402/CTL_RIGHT/\r\n            s/0x403/CTL_UP/\r\n            s/0x404/CTL_DOWN/\r\n            s/0x405/CTL_HOME/\r\n            s/0x406/CTL_END/\r\n            s/0x40D/CTL_DEL/\r\n            s/0x427/ALT_PGUP/\r\n            s/0x428/ALT_PGDN/\r\n            s/0x42C/ALT_INS/\r\n            s/0x42D/ALT_DEL/\r\n            \" src/definitions.h\r\n        _diff\r\n\r\n        # Fix wchar_t 16 bits limitation to display emojis and all the suplemental codepoints:\r\n        echo -e \"\\n\\nPATCH: change to 32 bits wchar_t.\"\r\n        sed -i.bak '1,/#/ s/#/#define wchar_t int\\n&/' src/definitions.h curses/curses.h\r\n        _diff\r\n        echo -e \"\\n\\nPATCH: fix for emojis input and output and transparent background.\"\r\n        wget -q https://github.com/okibcn/nano-editor/raw/my-github-sync/curses/pdcurses/getch.c\r\n        wget -q https://github.com/okibcn/nano-editor/raw/my-github-sync/curses/wincon/pdcdisp.c\r\n        wget -q https://github.com/okibcn/nano-editor/raw/my-github-sync/curses/wincon/pdckbd.c\r\n        mv -b --suffix=.bak getch.c curses/pdcurses\r\n        mv -b --suffix=.bak pdc*.c curses/wincon\r\n        _diff\r\n\r\n        # Fix ALT+[NUMBER|LETTER] not working with PDCursesMod\r\n        echo -e \"\\n\\nPATCH: ALT+[NUMBER|LETTER] not working.\"\r\n        sed -i.bak \"s/char)keystring\\[2])/&\\+\\(\\(unsigned char)keystring\\[2]>\\='9' \\? ALT_A-\\(int)'a' \\: ALT_0-\\(int)'0')/\" src/global.c\r\n        _diff\r\n\r\n        # Fix Shifted metas SHIFT+ALT+[LETTER] not working with PDCursesMod\r\n        echo -e \"\\n\\nPATCH: Shifted metas SHIFT+ALT+[LETTER] not working.\"\r\n        sed -i.bak \"/(escapes == 0)/a\\\r\n            meta_key\\=PDC_get_key_modifiers\\() \\& PDC_KEY_MODIFIER_ALT;\" src/winio.c\r\n        _diff\r\n\r\n\r\n        ####                               ####\r\n        ####   LLVM-MING SPECIFIC PATCHES  ####\r\n        ####                               ####\r\n\r\n        # Fix folder access test:\r\n        echo -e \"\\n\\nPATCH: Porting folder accessibility from executable to read access.\"\r\n        sed -i.bak \"s/X_OK/R_OK/\" src/files.c\r\n        _diff\r\n\r\n\r\n        ####                               ####\r\n        ####    BRANDING and VERSIONING    ####\r\n        ####                               ####\r\n\r\n        cd curses\r\n        CURSES=\"v$( sed -nE 's/^.*PDC_VER_MAJOR\\s*([0-9]+)/\\1/p' curses.h )\"\r\n        CURSES=\"${CURSES}.$( sed -nE 's/^.*PDC_VER_MINOR\\s*([0-9]+)/\\1/p' curses.h )\"\r\n        CURSES=\"${CURSES}.$( sed -nE 's/^.*PDC_VER_CHANGE\\s*([0-9]+)/\\1/p' curses.h )\"\r\n        CURSES_DATE=$(TZ=UTC git show --quiet --date='format-local:%Y.%m.%d' --format=\"%cd\")\r\n        CURSES=\"PDCursesMod ${CURSES} build $(git rev-list --count HEAD), ${CURSES_DATE}\"\r\n        cd ..\r\n        sed -i.bak 's/ GNU nano from git,//' src/nano.c\r\n        sed -i 's|Compiled options|Project info at http://github.com/okibcn/nano-for-windows\\\\n Using '\"${CURSES}\"'\\\\n &|' src/nano.c\r\n        _diff\r\n\r\n    - name: \"⚙️ Compile curses lib for ${{ matrix.name}}\"\r\n      run: |\r\n        ##########################\r\n        ##                        ##\r\n        ##     COMPILE CURSES     ##\r\n        ##                        ##\r\n        ##########################\r\n\r\n        PDTERM=\"wincon\"\r\n        echo \"PDTERM=${PDTERM}\" >> $GITHUB_ENV\r\n        export CFLAGS=\"-Oz -fno-math-errno -flto\"\r\n        cd \"nano/curses/${PDTERM}\"\r\n          make -j$(($(nproc)*2)) WIDE=Y UTF8=Y _${{matrix.short}}=Y\r\n\r\n    - name: \"🔧 Configure Nano Build\"\r\n      run: |\r\n        ##########################\r\n        ##                        ##\r\n        ##     CONFIGURE BUILD    ##\r\n        ##                        ##\r\n        ##########################\r\n\r\n        TARGET=\"${{ matrix.arch }}-w64-mingw32\"\r\n        OUTDIR=\"$(pwd)/nano/pkg\"\r\n        CURSES_DIR=\"$(pwd)/nano/curses\"\r\n        export CFLAGS=\"-O3 -Oz -fno-math-errno -flto -DPDC_FORCE_UTF8 -DPDC_NCMOUSE\"\r\n        export LDFLAGS=\"-L${CURSES_DIR}/${{ env.PDTERM }} -static -static-libgcc ${CURSES_DIR}/${{ env.PDTERM }}/pdcurses.a\"\r\n        export NCURSESW_CFLAGS=\"-I${CURSES_DIR} -DNCURSES_STATIC  -DENABLE_MOUSE\"\r\n        export NCURSESW_LIBS=\"-l:pdcurses.a -lwinmm\"\r\n        export LIBS=\"-lbcrypt\"\r\n        # Configure nano\r\n        mkdir -p nano/build\r\n        cd nano/build\r\n          ../configure --host=\"${TARGET}\" --prefix=\"${OUTDIR}\" \\\r\n              --enable-{utf8,threads=windows} --disable-{nls,speller} \\\r\n              --sysconfdir=\"C:\\\\ProgramData\" || cat config.log\r\n          echo \"\r\n            #define HAVE_FREXP_IN_LIBC 1\r\n            #define HAVE_FREXPL_IN_LIBC 1\r\n            #define HAVE_SNPRINTF_RETVAL_C99 1\r\n            #define HAVE_SNPRINTF_TRUNCATION_C99 1\r\n            #define MBRTOWC_EMPTY_INPUT_BUG 1\r\n          \" >> config.h\r\n          sed -i \"/#define NEED_PRINTF_DIRECTIVE_A 1/d\" config.h\r\n          sed -i \"/#define NEED_PRINTF_DIRECTIVE_F 1/d\" config.h\r\n          sed -i \"/#define NEED_PRINTF_FLAG_GROUPING 1/d\" config.h\r\n          sed -i \"/#define NEED_PRINTF_FLAG_ZERO 1/d\" config.h\r\n          sed -i \"/#define NEED_PRINTF_INFINITE_DOUBLE 1/d\" config.h\r\n          sed -i \"/#define NEED_PRINTF_UNBOUNDED_PRECISION 1/d\" config.h\r\n          # sed -i \"/#define __GETOPT_PREFIX rpl_/d\" config.h\r\n          BRANDING=\"GNU nano for Windows ${{ matrix.pretty }}, ${{ needs.checks.outputs.build }} $(TZ=UTC date +'%Y.%m.%d')\"\r\n          echo \"#define REVISION \\\"${BRANDING}\\\"\" > src/revision.h\r\n\r\n    - name: \"⚙️ Build for Windows ${{ matrix.pretty }}\"\r\n      run: |\r\n        ##########################\r\n        ##                        ##\r\n        ##     BUILD NANO         ##\r\n        ##                        ##\r\n        ##########################\r\n        cd nano/build\r\n          make -j$(($(nproc)*2)) && \\\r\n          make install || exit 1\r\n\r\n    - name: \"📦 Create Package\"\r\n      run: |\r\n        CWD=$(pwd)\r\n        cd nano/pkg\r\n          export UPX=\"--lzma --best\"\r\n          wget -q https://raw.githubusercontent.com/okibcn/nano-for-windows/releases/LICENSE\r\n          wget -q https://raw.githubusercontent.com/okibcn/nano-for-windows/releases/README.md\r\n          mv bin/nano.exe share/doc/nano/* $CWD/nano/doc/sample.nanorc.in .\r\n          mv share/nano syntax\r\n          mv sample.nanorc.in .nanorc\r\n          rm -rf bin share rnano*\r\n          llvm-strip -s nano.exe\r\n          upx nano.exe || true\r\n          ls -als\r\n          7z a -mx9 -mm=Deflate64 -mmt$(nproc) \"$CWD/nano-for-windows_${{matrix.name}}_${{ needs.checks.outputs.build }}.zip\" * .nanorc\r\n\r\n    - name: \"👍 Upload Artifact nano-for-windows_${{ matrix.name }}_${{ needs.checks.outputs.build }}.zip\"\r\n      uses: actions/upload-artifact@v3\r\n      with:\r\n        name: nano-for-windows_${{ matrix.name }}_${{ needs.checks.outputs.build }}\r\n        path: |\r\n          *.zip\r\n\r\n\r\n    - name: \"🔧 Prepare debug session\"\r\n      if: github.event.inputs.debug_enabled == 'true'\r\n      run: |\r\n        apk add bash nano-syntax iproute2 util-linux-misc\r\n        wget https://github.com/JanDeDobbeleer/oh-my-posh/releases/latest/download/posh-linux-amd64 -O /usr/local/bin/oh-my-posh\r\n        chmod +x /usr/local/bin/oh-my-posh\r\n        wget -q https://github.com/okibcn/miniU/raw/main/Github_Linux/.nanorc -O /etc/nanorc\r\n        wget -q https://github.com/okibcn/miniU/raw/main/Github_Linux/profile.sh -O ~/.zshrc\r\n        cat ~/.zshrc >> ~/.bashrc \r\n\r\n    - name: \"🐞 Debug session\"\r\n      uses: mxschmitt/action-tmate@v3\r\n      if: github.event.inputs.debug_enabled == 'true'\r\n      env:\r\n        GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}\r\n\r\n  ## PUBLISH ##############################################################################\r\n  publish:\r\n    if: needs.checks.outputs.cancel != 'true'\r\n    needs:\r\n    - checks\r\n    - build\r\n    name: \"📨 Publish ${{ github.event.inputs.release }}\"\r\n    runs-on: ubuntu-latest\r\n    defaults:\r\n      run:\r\n        shell: bash\r\n    steps:\r\n    - name: \"📬 Receive Packages\"\r\n      uses: actions/download-artifact@v3\r\n      with:\r\n        path: ./\r\n\r\n    - name: \"🚮 Recycle Packaging\"\r\n      uses: geekyeggo/delete-artifact@v2\r\n      with:\r\n          name: '*'\r\n\r\n    - name: \"📦 Prepare Final Package\"\r\n      run: |\r\n        mv nano-for*/* .\r\n        sha256sum *.zip > hashes.txt\r\n        echo \"${{ needs.checks.outputs.body }}\" | base64 -d > body.txt\r\n\r\n    - name: \"👍 Upload nano-for-windows_${{ needs.checks.outputs.build }} as Artifact\"\r\n      uses: actions/upload-artifact@v3\r\n      if: github.event.inputs.release == 'Artifact'\r\n      with:\r\n        name: nano-for-windows_${{ needs.checks.outputs.build }}\r\n        path: |\r\n          *.zip\r\n          *.txt\r\n\r\n    - name: \"🎉 Publish Release ${{ needs.checks.outputs.build }}\"\r\n      uses: softprops/action-gh-release@v0.1.15\r\n      # WARNING: before useing this action go to https://github.com/OWNER/REPO/settings/actions\r\n      # and in **Workflow Permissions** section give actions **Read and Write permissions**.\r\n      if: github.event_name != 'workflow_dispatch' || github.event.inputs.release == 'Release'\r\n      env:\r\n        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\r\n      with:\r\n        prerelease: true\r\n        tag_name: ${{ needs.checks.outputs.build }}\r\n        body_path: body.txt\r\n        files: |\r\n          ./*.zip \r\n          ./hashes.txt\r\n\r\n\r\n    - name: \"🔧 Prepare debug session\"\r\n      if: github.event.inputs.debug_enabled == 'true'\r\n      run: |\r\n        sudo apt install zsh zsh-syntax-highlighting\r\n        sudo wget https://github.com/JanDeDobbeleer/oh-my-posh/releases/latest/download/posh-linux-amd64 -O /usr/local/bin/oh-my-posh\r\n        sudo chmod +x /usr/local/bin/oh-my-posh\r\n        wget -q https://github.com/okibcn/miniU/raw/main/Github_Linux/.nanorc -O ~/.nanorc\r\n        wget -q https://github.com/okibcn/miniU/raw/main/Github_Linux/profile.sh -O ~/.zshrc\r\n        cp /etc/bash.bashrc ~\r\n        cat ~/.zshrc >> ~/bash.bashrc\r\n        sudo cp ~/bash.bashrc /etc/bash.bashrc -f\r\n\r\n    - name: \"🐞 Debug session\"\r\n      uses: mxschmitt/action-tmate@v3\r\n      if: github.event.inputs.debug_enabled == 'true'\r\n      env:\r\n        GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}\r\n\r\n"
  },
  {
    "path": ".github/workflows/Xperimental.yml",
    "content": "name: Xperimental testing\r\non:\r\n  # schedule:\r\n  #   - cron: '51 10 28 * *'\r\n  # runs at 10:51 UTC every 28th day of each month\r\n  workflow_dispatch:\r\n    inputs:\r\n      debug_enabled:\r\n        description: 'Debug session enabled'\r\n        required: false\r\n        default: false\r\n        type: boolean\r\n\r\njobs:\r\n  ## CREATES CACHE ##############################################################################\r\n  build:\r\n    if: ${{ false }}\r\n    name: Builds toolchain\r\n    runs-on: ubuntu-latest\r\n    container: alpine:edge\r\n    defaults:\r\n      run:\r\n        shell: bash\r\n    steps:\r\n    - name: \"⏬ Download tools\"\r\n      if: ${{ job.container }}\r\n      shell: sh\r\n      run: |\r\n        apk update && apk upgrade\r\n        apk add git bash curl jq tar\r\n        # set PATH like in Ubuntu\r\n        echo \"PATH=$HOME/.local/bin:$PATH\" >> $GITHUB_ENV\r\n        # this seems to be needed when running in a container (beause of UID mismatch??)\r\n        git config --global --add safe.directory '*'\r\n        \r\n    - name: \"🔧 Prepare debug session\"\r\n      if: github.event.inputs.debug_enabled == 'true'\r\n      run: |\r\n        apk add bash nano-syntax iproute2 util-linux-misc\r\n        wget https://github.com/JanDeDobbeleer/oh-my-posh/releases/latest/download/posh-linux-amd64 -O /usr/local/bin/oh-my-posh\r\n        chmod +x /usr/local/bin/oh-my-posh\r\n        wget -q https://github.com/okibcn/miniU/raw/main/Github_Linux/.nanorc -O /etc/nanorc\r\n        wget -q https://github.com/okibcn/miniU/raw/main/Github_Linux/profile.sh -O ~/.zshrc\r\n        cat ~/.zshrc >> ~/.bashrc \r\n\r\n    - name: \"🐞 Debug session\"\r\n      uses: mxschmitt/action-tmate@v3\r\n      if: github.event.inputs.debug_enabled == 'true'\r\n      env:\r\n        GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}\r\n\r\n\r\n    - name: \"📦 Fake package build\"\r\n      run: |\r\n        wget https://github.com/okibcn/nano-for-windows/releases/download/v7.2-8-10163.1/llvm-mingw.tar.xz\r\n        tar xvf llvm-mingw.tar.xz\r\n\r\n    - name: \"🚮 Recycle Cache\"\r\n      uses: snnaplab/delete-branch-cache-action@v1\r\n\r\n    - name: \"💾 Save Build Folder\"\r\n      uses: actions/cache@v3.3.1\r\n      id: cache-folder\r\n      with:\r\n        key: llvm-folder\r\n        path: llvm-mingw\r\n\r\n\r\n  ## TEST CACHE ##############################################################################\r\n  test:\r\n    if: ${{ true }}\r\n    name: Builds Nano\r\n    # needs: build\r\n    runs-on: ubuntu-latest\r\n    container: alpine:edge\r\n    defaults:\r\n      run:\r\n        shell: bash\r\n    steps:\r\n    - name: \"⏬ Download tools\"\r\n      if: ${{ job.container }}\r\n      shell: sh\r\n      run: |\r\n        apk update && apk upgrade\r\n        apk add bash curl jq tar github-cli \\\r\n          git make texinfo groff gettext-dev automake autoconf pkgconf coreutils upx p7zip\r\n        # set PATH like in Ubuntu\r\n        echo \"PATH=$HOME/.local/bin:$PATH\" >> $GITHUB_ENV\r\n        # this seems to be needed when running in a container (beause of UID mismatch??)\r\n        git config --global --add safe.directory '*'\r\n\r\n    - name: \"📂 Load LLVM-MinGW Folder\"\r\n      uses: actions/cache@v3.3.1\r\n      id: cache-folder\r\n      with:\r\n        key: llvm-folder\r\n        path: llvm-mingw\r\n\r\n    - name: \"📃 list Caches\"\r\n      run: |\r\n        curl \\\r\n          -H \"Accept: application/vnd.github.v3+json\" \\\r\n          -H \"Authorization: token ${{ secrets.GITHUB_TOKEN }}\" \\\r\n          http://github.com/repos/$GITHUB_REPOSITORY/actions/caches\r\n      \r\n    - name: \"🔧 Prepare debug session\"\r\n      if: github.event.inputs.debug_enabled == 'true'\r\n      run: |\r\n        apk add bash nano-syntax iproute2 util-linux-misc\r\n        wget https://github.com/JanDeDobbeleer/oh-my-posh/releases/latest/download/posh-linux-amd64 -O /usr/local/bin/oh-my-posh\r\n        chmod +x /usr/local/bin/oh-my-posh\r\n        wget -q https://github.com/okibcn/miniU/raw/main/Github_Linux/.nanorc -O /etc/nanorc\r\n        wget -q https://github.com/okibcn/miniU/raw/main/Github_Linux/profile.sh -O ~/.zshrc\r\n        cat ~/.zshrc >> ~/.bashrc \r\n\r\n    - name: \"🐞 Debug session\"\r\n      uses: mxschmitt/action-tmate@v3\r\n      if: github.event.inputs.debug_enabled == 'true'\r\n      env:\r\n        GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}\r\n\r\n    - name: \" Fast Build nano\"\r\n      env:\r\n        GH_TOKEN: ${{ github.token }}\r\n      run: |\r\n        CWD=$(pwd)\r\n        export PATH=\"$(pwd)/llvm-mingw/bin:$PATH\"\r\n        echo \"SHELL:\"\r\n        readlink /proc/$$/exe\r\n        echo \"PATH:\"\r\n        echo \"$PATH\" | tr : '\\n'\r\n        echo \"OS PACKAGES:\"\r\n        apk list -I | sort\r\n        echo \"\"\r\n        wget -q \"http://git.savannah.gnu.org/gitweb/?p=nano.git;a=shortlog\" -O log.html\r\n        VER=$(cat log.html | grep -m 1 \"title=\\\"tags/\" | grep -Eo \"v[0-9]+\\.[0-9]+\" | head -1)\r\n        SUBVER=$(cat log.html | awk '1; /\"tag indirect\"/{exit}' | grep -c '</tr>')\r\n        NANO_VERSION=\"${VER}-$(SUBVER)\"\r\n        git clone git://git.savannah.gnu.org/nano.git\r\n        cd nano\r\n        git clone https://github.com/Bill-Gray/PDCursesMod.git curses\r\n        git clone git://git.sv.gnu.org/gnulib.git --depth 1\r\n        autopoint --force\r\n        glibmodules=\"\r\n            futimens\r\n            getdelim\r\n            getline\r\n            getopt-gnu\r\n            glob\r\n            isblank\r\n            iswblank\r\n            lstat\r\n            mkstemps\r\n            nl_langinfo\r\n            regex\r\n            sigaction\r\n            snprintf-posix\r\n            stdarg\r\n            strcase\r\n            strcasestr-simple\r\n            strnlen\r\n            sys_wait\r\n            vsnprintf-posix\r\n            wchar\r\n            wctype-h\r\n            wcwidth\r\n        \"\r\n        rm -rf lib\r\n        ./gnulib/gnulib-tool --import ${glibmodules}\r\n        aclocal -I m4\r\n        autoconf\r\n        autoheader\r\n        automake --add-missing\r\n\r\n        function _diff() {\r\n            # Thanks to @rasa for this function\r\n            mapfile -t < <(find . -type f -name '*.bak')\r\n            for bak in \"${MAPFILE[@]}\"; do\r\n              src=${bak/.bak/}\r\n              for ((n=1; ; n++)); do\r\n                patch=${src}-${n}.patch\r\n                test -f \"${patch}\" || break\r\n              done\r\n              diff -u -w \"${bak}\" \"${src}\" >\"${patch}\" || true\r\n              rm -f \"${bak}\" || true\r\n              if [[ ! -s \"${patch}\" ]]; then\r\n                rm -f \"${patch}\" || true\r\n                continue\r\n              fi\r\n              echo \"${patch}\":\r\n              cat \"${patch}\"\r\n            done\r\n            return 0\r\n        }\r\n\r\n        ##########################\r\n        ##                        ##\r\n        ##     APPLY PATCHES      ##\r\n        ##                        ##\r\n        ##########################\r\n\r\n        # 1. >realpath< function doesn't exist on Windows, which isn't fully POSIX compliant.\r\n        echo -e \"\\n\\nPATCH: realpath() workaround applied.\"\r\n        cp -p ./src/definitions.h{,.bak}\r\n        echo \" \" >> ./src/definitions.h\r\n        echo \"#ifdef _WIN32\" >> ./src/definitions.h\r\n        echo \"#include <windows.h>\"  >> ./src/definitions.h\r\n        echo \"#include \\\"uniwidth.h\\\"\"  >> ./src/definitions.h\r\n        echo \"#define realpath(N,R) _fullpath((R),(N),0)\" >> ./src/definitions.h\r\n        echo \"#endif\" >> ./src/definitions.h\r\n        _diff\r\n\r\n        # Fix homedir detection\r\n        echo -e \"\\n\\nPATCH: configuring Windows home folder.\"\r\n        sed -i.bak 's|\\\"HOME\\\"|\"USERPROFILE\\\"|g' ./src/utils.c\r\n        _diff\r\n\r\n        # Modify temporal path from linux to windows\r\n        echo -e \"\\n\\nPATCH: configuring Windows temporal folder.\"\r\n        sed -i.bak 's|TMPDIR|TEMP|g' ./src/files.c\r\n        echo -e \"\\n\\nPATCH: Convert invalid filename characters to ! for backup files.\"\r\n        sed -i \"s~if (thename\\[i\\] == '/')~if (strchr(\\\"<>:\\\\\\\\\\\"/\\\\\\\\\\\\\\\\|?*\\\", thename[i]))~g\" ./src/files.c\r\n        sed -i 's|/tmp/|~/AppData/Local/Temp/|g' ./src/files.c\r\n        _diff\r\n\r\n        # Modify path expansion with backslashes\r\n        echo -e \"\\n\\nPATCH: Configuring backslashes for folders.\"\r\n        sed -i.bak \"/free(tilded)/a\\\r\n            \\\\\\\\tfor(tilded = retval; \\*tilded; ++tilded) if(\\*tilded == '\\\\\\\\\\\\\\\\') \\*tilded = '/';\r\n\r\n            s|path\\[i\\] != '/'|path[i] != '/' \\&\\& path[i] != '\\\\\\\\\\\\\\\\'|\" src/files.c\r\n        _diff\r\n\r\n        # default open() files in binary mode as linux does\r\n        echo -e \"\\n\\nPATCH: Forcing file management in binary mode like the Linux version.\"\r\n        sed -i.bak 's/O_..ONLY/& | _O_BINARY/g' ./src/files.c\r\n        _diff\r\n        sed -i.bak 's/O_..ONLY/& | _O_BINARY/g' ./src/text.c\r\n        _diff\r\n\r\n        # Enable UTF-8 Terminal\r\n        echo -e \"\\n\\nPATCH: Enable UTF-8 console.\"\r\n        sed -i.bak 's|vt220||g\r\n            /x1B/d\r\n            /nl_langinfo(CODESET)/ c\\\\tsetlocale(LC_ALL, \"\");'  src/nano.c\r\n        _diff\r\n\r\n        # Allow custom colors in terminals with more than 256 colors\r\n        echo -e \"\\n\\nPATCH: Allow true color.\"\r\n        sed -i.bak \"/COLORS == 256/ {s/==/>=/}\"  src/rcfile.c\r\n        _diff\r\n\r\n        # Solve window resize crashes\r\n        echo -e \"\\n\\nPATCH: Window resize fix.\"\r\n        sed -i.bak -e \"/LINES and COLS accordingly/{n;N;d}\" src/nano.c # delets 2 next lines\r\n        sed -i \"/LINES and COLS accordingly/a\\\r\n            \\\\\\\\tresize_term(0, 0);\\\\n\\\r\n            erase();\" src/nano.c\r\n        sed -i -e \"/recreate the subwindows with their (new) sizes/{n;d}\" src/nano.c\r\n        _diff\r\n        sed -i.bak 's/the_window_resized/input == KEY_RESIZE/' src/winio.c\r\n        _diff\r\n\r\n        # Solve long delay after unicode\r\n        echo -e \"\\n\\nPATCH: solved deadlock with unicode characters.\"\r\n        sed -i.bak \"/halfdelay(ISSET(QUICK_BLANK)/,/disable_kb_interrupt/d\"  src/winio.c\r\n        _diff\r\n\r\n        # Add (Y/N/^C) to Save modified buffer prompt\r\n        echo -e \"\\n\\nPATCH: More info for exit message.\"\r\n        sed -i.bak \"s|Save modified buffer|& (Y/N/^C)|\"  src/nano.c\r\n        _diff\r\n\r\n        # Fix browser folder change\r\n        echo -e \"\\n\\nPATCH: Fixed browser folder change.\"\r\n        sed -i.bak 's/--selected/selected=0/' src/browser.c\r\n        _diff\r\n\r\n        # Fix for unicode char width detection using GNUlib internal function\r\n        echo -e \"\\n\\nPATCH: unicode char width detection using GNUlib internal function.\"\r\n        sed -i.bak 's|wcwidth(wc)|uc_width(wc, \"UTF-8\")|g'  src/chars.c src/winio.c\r\n        sed -i '/prototypes.h/a#include \"uniwidth.h\"'  src/chars.c\r\n        _diff\r\n\r\n        # Fix pipe-in data from Windows console.\r\n        echo -e \"\\n\\nPATCH: Fix pipe in data in Windows console.\"\r\n        sed -i.bak \"s|/dev/tty|CON|\" src/nano.c\r\n        sed -i \"s/stream, 0/stream, fd/\" src/nano.c\r\n        sed -i \"/FILE \\*stream/,/stop the reading/ c\\\r\n            \\\\\\\\t static FILE \\*stream;\\\\n\\\r\n            static int fd\\=0;\\\\n\\\r\n            if \\(fd\\=\\=0){\\\\n\\\r\n            if \\(GetConsoleWindow\\() \\!\\= NULL)\\\\n\\\r\n            fprintf\\(stderr, _\\(\\\"Reading data from keyboard; type a ^Z line to finish.\\\\\\\\n\\\"));\\\\n\\\r\n            fd \\= dup\\(0);\\\\n\\\r\n            stream \\= fdopen\\(fd, \\\"rb\\\");\\\\n\\\r\n            freopen\\(\\\"CON\\\", \\\"rb\\\", stdin);\\\\n\\\r\n            FreeConsole\\();\\\\n\\\r\n            AttachConsole\\(ATTACH_PARENT_PROCESS);\\\\n\\\r\n            return FALSE;}\\\\n\\\r\n            endwin\\();\\\\n\\\r\n            if \\(stream \\=\\= NULL) {\\\\n\\\r\n            \\\\t int errnumber \\= errno;\\\\n\\\r\n            \\\\t if\\(fd \\> -1) close\\(fd);\\\\n\\\r\n            return FALSE;}\" src/nano.c\r\n        sed -i \"/initscr/i\\\r\n            for\\(int optind_\\=optind; optind_ \\< argc;optind_\\+\\+)\\\\n\\\r\n            if \\(strcmp\\(argv\\[optind_], \\\"\\-\\\") \\=\\= 0){scoop_stdin\\();break;}\" src/nano.c\r\n        _diff\r\n\r\n\r\n        ####                               ####\r\n        #### PDCursesMod especific patches ####\r\n        ####                               ####\r\n\r\n        # Solve duplicated definitions ALT-ARROWS already in PDCursesMod\r\n        echo -e \"\\n\\nPATCH: remove duplicated definitions.\"\r\n        sed -i.bak \"/0x42[1234]/d\" src/definitions.h\r\n        _diff\r\n\r\n        # PDCurses uses 64bit (chtype) for cell attributes instead of 32bit (int)\r\n        echo -e \"\\n\\nPATCH: Improving from 256colors to true color.\"\r\n        sed -i.bak \"/interface_color_pair/ {s/int/chtype/}\" src/prototypes.h src/global.c\r\n        _diff\r\n        sed -i.bak \"/int attributes/ {s/int/chtype/}\" src/definitions.h\r\n        _diff\r\n        sed -i.bak \"/bool parse_combination/ {s/int/chtype/}\" src/rcfile.c\r\n        sed -i \"/int attributes/ {s/int/chtype/}\" src/rcfile.c\r\n        _diff\r\n\r\n        # Desambiguation of BACKSPACE vs ^H, or ENTER vs ^M and certain CTRL+key combos             //o//\r\n        echo -e \"\\n\\nPATCH: Full key modifiers detection.\"\r\n        sed -i.bak \"/get_kbinput(midwin, VISIBLE)/a\\\r\n            \\\\\\\\tif (\\!((PDC_get_key_modifiers()) & (PDC_KEY_MODIFIER_SHIFT|PDC_KEY_MODIFIER_CONTROL|PDC_KEY_MODIFIER_ALT)) ) {\\\\n\\\r\n            \\\\tswitch (input) {\\\\n\\\r\n            \\\\t\\\\tcase 0x08:      input = KEY_BACKSPACE; break;\\\\n\\\r\n            \\\\t\\\\tcase 0x0d:      input = KEY_ENTER;\\\\n\\\r\n            \\\\t}\\\\n\\\r\n            }\\\\n\\\r\n            if (PDC_get_key_modifiers() & PDC_KEY_MODIFIER_CONTROL){\\\\n\\\r\n            switch (input) {\\\\n\\\r\n            \\\\t\\\\tcase '/':          input = 31; break;\\\\n\\\r\n            \\\\t\\\\tcase SHIFT_DELETE: input = CONTROL_SHIFT_DELETE; break;\\\\n\\\r\n            \\\\t}\\\\n\\\r\n            }\"  src/nano.c\r\n        sed -Ei.bak '\r\n            s|(M-\\{\", )0|\\1ALT_LBRACKET|\r\n            s|(M-}\", )0|\\1ALT_RBRACKET|\r\n            ' src/global.c\r\n        sed -i.bak \"\r\n            s/0x401/CTL_LEFT/\r\n            s/0x402/CTL_RIGHT/\r\n            s/0x403/CTL_UP/\r\n            s/0x404/CTL_DOWN/\r\n            s/0x405/CTL_HOME/\r\n            s/0x406/CTL_END/\r\n            s/0x40D/CTL_DEL/\r\n            s/0x427/ALT_PGUP/\r\n            s/0x428/ALT_PGDN/\r\n            s/0x42C/ALT_INS/\r\n            s/0x42D/ALT_DEL/\r\n            \" src/definitions.h\r\n        _diff\r\n\r\n        # Fix wchar_t 16 bits limitation to display emojis and all the suplemental codepoints:\r\n        echo -e \"\\n\\nPATCH: change to 32 bits wchar_t.\"\r\n        sed -i.bak '1,/#/ s/#/#define wchar_t int\\n&/' src/definitions.h curses/curses.h\r\n        _diff\r\n        echo -e \"\\n\\nPATCH: fix for emojis input and output and transparent background.\"\r\n        wget -q https://github.com/okibcn/nano-editor/raw/my-github-sync/curses/pdcurses/getch.c\r\n        wget -q https://github.com/okibcn/nano-editor/raw/my-github-sync/curses/wincon/pdcdisp.c\r\n        wget -q https://github.com/okibcn/nano-editor/raw/my-github-sync/curses/wincon/pdckbd.c\r\n        mv -b --suffix=.bak getch.c curses/pdcurses\r\n        mv -b --suffix=.bak pdc*.c curses/wincon\r\n        _diff\r\n\r\n        # Fix ALT+[NUMBER|LETTER] not working with PDCursesMod\r\n        echo -e \"\\n\\nPATCH: ALT+[NUMBER|LETTER] not working.\"\r\n        sed -i.bak \"s/char)keystring\\[2])/&\\+\\(\\(unsigned char)keystring\\[2]>\\='9' \\? ALT_A-\\(int)'a' \\: ALT_0-\\(int)'0')/\" src/global.c\r\n        _diff\r\n\r\n        # Fix Shifted metas SHIFT+ALT+[LETTER] not working with PDCursesMod\r\n        echo -e \"\\n\\nPATCH: Shifted metas SHIFT+ALT+[LETTER] not working.\"\r\n        sed -i.bak \"/(escapes == 0)/a\\\r\n            meta_key\\=PDC_get_key_modifiers\\() \\& PDC_KEY_MODIFIER_ALT;\" src/winio.c\r\n        _diff\r\n\r\n\r\n        ####                               ####\r\n        ####   LLVM-MING SPECIFIC PATCHES  ####\r\n        ####                               ####\r\n\r\n        # Fix folder access test:\r\n        echo -e \"\\n\\nPATCH: Porting folder accessibility from executable to read access.\"\r\n        sed -i.bak \"s/X_OK/R_OK/\" src/files.c\r\n        _diff\r\n\r\n        # Fix for PDCursesMod makefile to be aware of aarch64 in Xcompiling environment:\r\n        echo -e \"\\n\\nPATCH: PDCursesMod makefile to be aware of aarch64 in Xcompiling environment.\"\r\n        sed -i.bak '/i686-w64-mingw32/a endif\\n  ifdef _a64\\n    PREFIX  = aarch64-w64-mingw32-' curses/wincon/Makefile  \r\n        sed -i 's|AR\\s*=\\s*|&$(PREFIX)|' curses/wincon/Makefile  \r\n        sed -i 's|STRIP\\s*=\\s*|&$(PREFIX)|' curses/wincon/Makefile\r\n        _diff  \r\n\r\n\r\n        ####                               ####\r\n        ####    BRANDING and VERSIONING    ####\r\n        ####                               ####\r\n\r\n        BUILD_VERSION=\"$(git describe --tags 2>/dev/null | sed \"s/.\\{10\\}$//\")\"\r\n        LAST_BUILD_VERSION=\"$(gh api repos/$GITHUB_REPOSITORY/releases/latest | jq .tag_name -r)\" || echo \"FIRST RELEASE!!!!\"\r\n        LAST_NANO_VERSION=\"$(echo $LAST_BUILD_VERSION | awk -F [\\.-]  '{print $1\".\"$2\"-\"$3}')\"  # last version without the subbuild\r\n        if [ \"${BUILD_VERSION}\" == \"${LAST_NANO_VERSION}\" ]; then\r\n            # This is a new Windows build based on the same nano build, probably because there is a new curses patch\r\n            SUBBUILD=\"$(echo $LAST_BUILD_VERSION | awk -F .  '{print $3}')\"\r\n            ((SUBBUILD=SUBBUILD+1))\r\n            BUILD_VERSION=\"${BUILD_VERSION}.${SUBBUILD}\"\r\n        fi\r\n        cd curses\r\n        CURSES=\"$(gh api repos/Bill-Gray/PDCursesMod/releases/latest | jq .tag_name -r)\"\r\n        CURSES_DATE=$(TZ=UTC git show --quiet --date='format-local:%Y.%m.%d' --format=\"%cd\")\r\n        CURSES=\"PDCursesMod ${CURSES} build $(git rev-list --count HEAD), ${CURSES_DATE}\"\r\n        cd ..\r\n        NANO_DATE=$(TZ=UTC git show --quiet --date='format-local:%Y.%m.%d' --format=\"%cd\")\r\n        BUILD_DATE=$(TZ=UTC date +'%Y.%m.%d')\r\n\r\n        sed -i.bak 's/ GNU nano from git,//' src/nano.c\r\n        sed -i 's|Compiled options|Using '\"${CURSES}\"'\\\\n &|' src/nano.c\r\n        _diff\r\n        sed -i.bak '/SOMETHING = \"REVISION/cSOMETHING = \"REVISION \\\\\"GNU nano for Windows 64 bits '\"${BUILD_VERSION}\"' '\"${BUILD_DATE}\"'\\\\\"\"' src/Makefile.am\r\n        _diff\r\n        echo -e \"\\n\\nGNU nano version Tag: ${BUILD_VERSION}, ${BUILD_DATE}\\nUsing $CURSES\"\r\n\r\n        ##########################\r\n        ##                        ##\r\n        ##     BUILD NANO         ##\r\n        ##                        ##\r\n        ##########################\r\n        ARCH=x86_64\r\n\r\n        PDTERM=\"wincon\"    # PDCursesMod supports wincon, vt, wingui, sdl1, sdl2\r\n        TARGET=\"${ARCH}-w64-mingw32\"\r\n        OUTDIR=\"$(pwd)/pkg_${ARCH}\"\r\n        [ \"${ARCH}\" != \"i686\" ] && BITS=\"64\" || BITS=\"32\"\r\n        [ \"${ARCH}\" == \"aarch64\" ] && _arch=\"_a64\"\r\n        [ \"${ARCH}\" == \"x86_64\" ] && _arch=\"_w64\"\r\n        [ \"${ARCH}\" == \"i686\" ] && _arch=\"_w32\"\r\n        export CURSES_DIR=\"$(pwd)/curses\"\r\n        export UPX=\"--lzma --best\"\r\n        export CFLAGS=\"-O3 -Oz -fno-math-errno -flto -DPDC_FORCE_UTF8 -DPDC_NCMOUSE\"\r\n        export LDFLAGS=\"-L${CURSES_DIR}/${PDTERM} -static -static-libgcc ${CURSES_DIR}/${PDTERM}/pdcurses.a\"\r\n        export NCURSESW_CFLAGS=\"-I${CURSES_DIR} -DNCURSES_STATIC  -DENABLE_MOUSE\"\r\n        export NCURSESW_LIBS=\"-l:pdcurses.a -lwinmm\"\r\n        export LIBS=\"-lbcrypt\"\r\n        # cross Build pdcurses for destination host\r\n        cd \"${CURSES_DIR}/${PDTERM}\"\r\n        make -j$(($(nproc)*2)) WIDE=Y UTF8=Y ${_arch}=Y\r\n        cd ../..\r\n        # Build nano\r\n        sed -i 's/...bits/64 bits/' src/Makefile.am\r\n        mkdir -p \"$(pwd)/build_${TARGET}/nano\"\r\n        cd \"$(pwd)/build_${TARGET}/nano\"\r\n        ../../configure --host=\"${TARGET}\" --prefix=\"${OUTDIR}\"  \\\r\n            --enable-{utf8,threads=windows} --disable-{nls,speller} \\\r\n            --sysconfdir=\"C:\\\\ProgramData\"\r\n        echo  -e \"\r\n          #define HAVE_FREXPL_IN_LIBC 1\r\n          #define HAVE_FREXP_IN_LIBC 1\r\n          #define HAVE_SNPRINTF_RETVAL_C99 1\r\n          #define HAVE_SNPRINTF_TRUNCATION_C99 1\r\n          #define MBRTOWC_EMPTY_INPUT_BUG 1\r\n        \" >> config.h\r\n        sed -i \"/#define NEED_PRINTF_DIRECTIVE_A 1/d\" config.h\r\n        sed -i \"/#define NEED_PRINTF_DIRECTIVE_F 1/d\" config.h\r\n        sed -i \"/#define NEED_PRINTF_FLAG_GROUPING 1/d\" config.h\r\n        sed -i \"/#define NEED_PRINTF_FLAG_ZERO 1/d\" config.h\r\n        sed -i \"/#define NEED_PRINTF_INFINITE_DOUBLE 1/d\" config.h\r\n        sed -i \"/#define NEED_PRINTF_UNBOUNDED_PRECISION 1/d\" config.h\r\n        # sed -i \"/#define __GETOPT_PREFIX rpl_/d\" config.h\r\n        make -j$(($(nproc)*2)) && \\\r\n        make install || exit 1\r\n        cd ${OUTDIR}\r\n            wget -q https://raw.githubusercontent.com/okibcn/nano-for-windows/releases/LICENSE\r\n            wget -q https://raw.githubusercontent.com/okibcn/nano-for-windows/releases/README.md\r\n            mv bin/nano.exe share/doc/nano/* $CWD/nano/doc/sample.nanorc.in .\r\n            mv share/nano syntax\r\n            mv sample.nanorc.in .nanorc\r\n            rm -rf bin share rnano*\r\n            llvm-strip -s nano.exe\r\n            upx nano.exe || true\r\n            ls -als\r\n            7z a -mx9 -mm=Deflate64 -mmt$(nproc) \"$CWD/nano_for-windows${_arch}_${BUILD_VERSION}.zip\" * .nanorc\r\n            # 7z a -mx9 -mm=PPMd:o=16 -mmt$(nproc) '-x!*.exe' \"$CWD/nano_for-windows${_arch}_${BUILD_VERSION}.7z\" * .nanorc\r\n            # 7z a -mx9 -mm=Deflate64 -mmt$(nproc) \"$CWD/nano_for-windows${_arch}_${BUILD_VERSION}.7z\" nano.exe\r\n            echo \"BUILD_VERSION=$BUILD_VERSION\" >> $GITHUB_ENV\r\n\r\n    - name: \"👍 Upload Artifact\"\r\n      uses: actions/upload-artifact@v3\r\n      with:\r\n        name: nano-for-windows_${{ env.BUILD_VERSION }}\r\n        path: |\r\n          *.zip\r\n"
  },
  {
    "path": ".github/workflows/toolchain-builder.yml",
    "content": "name: Toolchain Builder\r\n# REGENERATES THE LLVM-MINGW for Alpine Linux with fresh code.\r\non:\r\n  schedule:\r\n    - cron: '51 10 * * SAT'\r\n    # runs at 10:51 UTC every Saturday\r\n  workflow_dispatch:\r\n    inputs:\r\n      debug_enabled:\r\n        description: 'Debug session enabled'\r\n        required: false\r\n        default: false\r\n        type: boolean\r\n\r\njobs:\r\n\r\n  build:\r\n    if: ${{ true }}\r\n    name: Builds toolchain\r\n    runs-on: ubuntu-latest\r\n    container: alpine:edge\r\n    defaults:\r\n      run:\r\n        shell: bash\r\n    steps:\r\n    - name: \"⏬ Download tools\"\r\n      if: ${{ job.container }}\r\n      shell: sh\r\n      run: |\r\n        apk update && apk upgrade\r\n        apk add  git bash curl jq tar \\\r\n           build-base python3 cmake linux-headers coreutils perl\r\n        # set PATH like in Ubuntu\r\n        echo \"PATH=$HOME/.local/bin:$PATH\" >> $GITHUB_ENV\r\n        # this seems to be needed when running in a container (beause of UID mismatch??)\r\n        git config --global --add safe.directory '*'\r\n        \r\n    - name: \"🔧 Prepare debug session\"\r\n      if: github.event.inputs.debug_enabled == 'true'\r\n      run: |\r\n        apk add bash nano-syntax iproute2 util-linux-misc\r\n        wget https://github.com/JanDeDobbeleer/oh-my-posh/releases/latest/download/posh-linux-amd64 -O /usr/local/bin/oh-my-posh\r\n        chmod +x /usr/local/bin/oh-my-posh\r\n        wget -q https://github.com/okibcn/miniU/raw/main/Github_Linux/.nanorc -O /etc/nanorc\r\n        wget -q https://github.com/okibcn/miniU/raw/main/Github_Linux/profile.sh -O ~/.zshrc\r\n        cat ~/.zshrc >> ~/.bashrc \r\n\r\n    - name: \"🐞 Debug session\"\r\n      uses: mxschmitt/action-tmate@v3\r\n      if: github.event.inputs.debug_enabled == 'true'\r\n      env:\r\n        GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}\r\n\r\n    - name: \"⚙️ Build LLVM-MinGW Master\"\r\n      run: |\r\n        echo \" Using SHELL: $0\"\r\n        git clone https://github.com/mstorsjo/llvm-mingw.git llvm\r\n        cd llvm\r\n          ./build-all.sh ../llvm-mingw\r\n\r\n    - name: \"🚮 Recycle Cache\"\r\n      uses: snnaplab/delete-branch-cache-action@v1\r\n\r\n    - name: \"💾 Save Build Folder\"\r\n      uses: actions/cache@v3.3.1\r\n      id: cache-folder\r\n      with:\r\n        key: llvm-folder\r\n        path: llvm-mingw\r\n"
  },
  {
    "path": "LICENSE",
    "content": "                    GNU GENERAL PUBLIC LICENSE\n                       Version 3, 29 June 2007\n\n Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n                            Preamble\n\n  The GNU General Public License is a free, copyleft license for\nsoftware and other kinds of works.\n\n  The licenses for most software and other practical works are designed\nto take away your freedom to share and change the works.  By contrast,\nthe GNU General Public License is intended to guarantee your freedom to\nshare and change all versions of a program--to make sure it remains free\nsoftware for all its users.  We, the Free Software Foundation, use the\nGNU General Public License for most of our software; it applies also to\nany other work released this way by its authors.  You can apply it to\nyour programs, too.\n\n  When we speak of free software, we are referring to freedom, not\nprice.  Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthem if you wish), that you receive source code or can get it if you\nwant it, that you can change the software or use pieces of it in new\nfree programs, and that you know you can do these things.\n\n  To protect your rights, we need to prevent others from denying you\nthese rights or asking you to surrender the rights.  Therefore, you have\ncertain responsibilities if you distribute copies of the software, or if\nyou modify it: responsibilities to respect the freedom of others.\n\n  For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must pass on to the recipients the same\nfreedoms that you received.  You must make sure that they, too, receive\nor can get the source code.  And you must show them these terms so they\nknow their rights.\n\n  Developers that use the GNU GPL protect your rights with two steps:\n(1) assert copyright on the software, and (2) offer you this License\ngiving you legal permission to copy, distribute and/or modify it.\n\n  For the developers' and authors' protection, the GPL clearly explains\nthat there is no warranty for this free software.  For both users' and\nauthors' sake, the GPL requires that modified versions be marked as\nchanged, so that their problems will not be attributed erroneously to\nauthors of previous versions.\n\n  Some devices are designed to deny users access to install or run\nmodified versions of the software inside them, although the manufacturer\ncan do so.  This is fundamentally incompatible with the aim of\nprotecting users' freedom to change the software.  The systematic\npattern of such abuse occurs in the area of products for individuals to\nuse, which is precisely where it is most unacceptable.  Therefore, we\nhave designed this version of the GPL to prohibit the practice for those\nproducts.  If such problems arise substantially in other domains, we\nstand ready to extend this provision to those domains in future versions\nof the GPL, as needed to protect the freedom of users.\n\n  Finally, every program is threatened constantly by software patents.\nStates should not allow patents to restrict development and use of\nsoftware on general-purpose computers, but in those that do, we wish to\navoid the special danger that patents applied to a free program could\nmake it effectively proprietary.  To prevent this, the GPL assures that\npatents cannot be used to render the program non-free.\n\n  The precise terms and conditions for copying, distribution and\nmodification follow.\n\n                       TERMS AND CONDITIONS\n\n  0. Definitions.\n\n  \"This License\" refers to version 3 of the GNU General Public License.\n\n  \"Copyright\" also means copyright-like laws that apply to other kinds of\nworks, such as semiconductor masks.\n\n  \"The Program\" refers to any copyrightable work licensed under this\nLicense.  Each licensee is addressed as \"you\".  \"Licensees\" and\n\"recipients\" may be individuals or organizations.\n\n  To \"modify\" a work means to copy from or adapt all or part of the work\nin a fashion requiring copyright permission, other than the making of an\nexact copy.  The resulting work is called a \"modified version\" of the\nearlier work or a work \"based on\" the earlier work.\n\n  A \"covered work\" means either the unmodified Program or a work based\non the Program.\n\n  To \"propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy.  Propagation includes copying,\ndistribution (with or without modification), making available to the\npublic, and in some countries other activities as well.\n\n  To \"convey\" a work means any kind of propagation that enables other\nparties to make or receive copies.  Mere interaction with a user through\na computer network, with no transfer of a copy, is not conveying.\n\n  An interactive user interface displays \"Appropriate Legal Notices\"\nto the extent that it includes a convenient and prominently visible\nfeature that (1) displays an appropriate copyright notice, and (2)\ntells the user that there is no warranty for the work (except to the\nextent that warranties are provided), that licensees may convey the\nwork under this License, and how to view a copy of this License.  If\nthe interface presents a list of user commands or options, such as a\nmenu, a prominent item in the list meets this criterion.\n\n  1. Source Code.\n\n  The \"source code\" for a work means the preferred form of the work\nfor making modifications to it.  \"Object code\" means any non-source\nform of a work.\n\n  A \"Standard Interface\" means an interface that either is an official\nstandard defined by a recognized standards body, or, in the case of\ninterfaces specified for a particular programming language, one that\nis widely used among developers working in that language.\n\n  The \"System Libraries\" of an executable work include anything, other\nthan the work as a whole, that (a) is included in the normal form of\npackaging a Major Component, but which is not part of that Major\nComponent, and (b) serves only to enable use of the work with that\nMajor Component, or to implement a Standard Interface for which an\nimplementation is available to the public in source code form.  A\n\"Major Component\", in this context, means a major essential component\n(kernel, window system, and so on) of the specific operating system\n(if any) on which the executable work runs, or a compiler used to\nproduce the work, or an object code interpreter used to run it.\n\n  The \"Corresponding Source\" for a work in object code form means all\nthe source code needed to generate, install, and (for an executable\nwork) run the object code and to modify the work, including scripts to\ncontrol those activities.  However, it does not include the work's\nSystem Libraries, or general-purpose tools or generally available free\nprograms which are used unmodified in performing those activities but\nwhich are not part of the work.  For example, Corresponding Source\nincludes interface definition files associated with source files for\nthe work, and the source code for shared libraries and dynamically\nlinked subprograms that the work is specifically designed to require,\nsuch as by intimate data communication or control flow between those\nsubprograms and other parts of the work.\n\n  The Corresponding Source need not include anything that users\ncan regenerate automatically from other parts of the Corresponding\nSource.\n\n  The Corresponding Source for a work in source code form is that\nsame work.\n\n  2. Basic Permissions.\n\n  All rights granted under this License are granted for the term of\ncopyright on the Program, and are irrevocable provided the stated\nconditions are met.  This License explicitly affirms your unlimited\npermission to run the unmodified Program.  The output from running a\ncovered work is covered by this License only if the output, given its\ncontent, constitutes a covered work.  This License acknowledges your\nrights of fair use or other equivalent, as provided by copyright law.\n\n  You may make, run and propagate covered works that you do not\nconvey, without conditions so long as your license otherwise remains\nin force.  You may convey covered works to others for the sole purpose\nof having them make modifications exclusively for you, or provide you\nwith facilities for running those works, provided that you comply with\nthe terms of this License in conveying all material for which you do\nnot control copyright.  Those thus making or running the covered works\nfor you must do so exclusively on your behalf, under your direction\nand control, on terms that prohibit them from making any copies of\nyour copyrighted material outside their relationship with you.\n\n  Conveying under any other circumstances is permitted solely under\nthe conditions stated below.  Sublicensing is not allowed; section 10\nmakes it unnecessary.\n\n  3. Protecting Users' Legal Rights From Anti-Circumvention Law.\n\n  No covered work shall be deemed part of an effective technological\nmeasure under any applicable law fulfilling obligations under article\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\nsimilar laws prohibiting or restricting circumvention of such\nmeasures.\n\n  When you convey a covered work, you waive any legal power to forbid\ncircumvention of technological measures to the extent such circumvention\nis effected by exercising rights under this License with respect to\nthe covered work, and you disclaim any intention to limit operation or\nmodification of the work as a means of enforcing, against the work's\nusers, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\n  4. Conveying Verbatim Copies.\n\n  You may convey verbatim copies of the Program's source code as you\nreceive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice;\nkeep intact all notices stating that this License and any\nnon-permissive terms added in accord with section 7 apply to the code;\nkeep intact all notices of the absence of any warranty; and give all\nrecipients a copy of this License along with the Program.\n\n  You may charge any price or no price for each copy that you convey,\nand you may offer support or warranty protection for a fee.\n\n  5. Conveying Modified Source Versions.\n\n  You may convey a work based on the Program, or the modifications to\nproduce it from the Program, in the form of source code under the\nterms of section 4, provided that you also meet all of these conditions:\n\n    a) The work must carry prominent notices stating that you modified\n    it, and giving a relevant date.\n\n    b) The work must carry prominent notices stating that it is\n    released under this License and any conditions added under section\n    7.  This requirement modifies the requirement in section 4 to\n    \"keep intact all notices\".\n\n    c) You must license the entire work, as a whole, under this\n    License to anyone who comes into possession of a copy.  This\n    License will therefore apply, along with any applicable section 7\n    additional terms, to the whole of the work, and all its parts,\n    regardless of how they are packaged.  This License gives no\n    permission to license the work in any other way, but it does not\n    invalidate such permission if you have separately received it.\n\n    d) If the work has interactive user interfaces, each must display\n    Appropriate Legal Notices; however, if the Program has interactive\n    interfaces that do not display Appropriate Legal Notices, your\n    work need not make them do so.\n\n  A compilation of a covered work with other separate and independent\nworks, which are not by their nature extensions of the covered work,\nand which are not combined with it such as to form a larger program,\nin or on a volume of a storage or distribution medium, is called an\n\"aggregate\" if the compilation and its resulting copyright are not\nused to limit the access or legal rights of the compilation's users\nbeyond what the individual works permit.  Inclusion of a covered work\nin an aggregate does not cause this License to apply to the other\nparts of the aggregate.\n\n  6. Conveying Non-Source Forms.\n\n  You may convey a covered work in object code form under the terms\nof sections 4 and 5, provided that you also convey the\nmachine-readable Corresponding Source under the terms of this License,\nin one of these ways:\n\n    a) Convey the object code in, or embodied in, a physical product\n    (including a physical distribution medium), accompanied by the\n    Corresponding Source fixed on a durable physical medium\n    customarily used for software interchange.\n\n    b) Convey the object code in, or embodied in, a physical product\n    (including a physical distribution medium), accompanied by a\n    written offer, valid for at least three years and valid for as\n    long as you offer spare parts or customer support for that product\n    model, to give anyone who possesses the object code either (1) a\n    copy of the Corresponding Source for all the software in the\n    product that is covered by this License, on a durable physical\n    medium customarily used for software interchange, for a price no\n    more than your reasonable cost of physically performing this\n    conveying of source, or (2) access to copy the\n    Corresponding Source from a network server at no charge.\n\n    c) Convey individual copies of the object code with a copy of the\n    written offer to provide the Corresponding Source.  This\n    alternative is allowed only occasionally and noncommercially, and\n    only if you received the object code with such an offer, in accord\n    with subsection 6b.\n\n    d) Convey the object code by offering access from a designated\n    place (gratis or for a charge), and offer equivalent access to the\n    Corresponding Source in the same way through the same place at no\n    further charge.  You need not require recipients to copy the\n    Corresponding Source along with the object code.  If the place to\n    copy the object code is a network server, the Corresponding Source\n    may be on a different server (operated by you or a third party)\n    that supports equivalent copying facilities, provided you maintain\n    clear directions next to the object code saying where to find the\n    Corresponding Source.  Regardless of what server hosts the\n    Corresponding Source, you remain obligated to ensure that it is\n    available for as long as needed to satisfy these requirements.\n\n    e) Convey the object code using peer-to-peer transmission, provided\n    you inform other peers where the object code and Corresponding\n    Source of the work are being offered to the general public at no\n    charge under subsection 6d.\n\n  A separable portion of the object code, whose source code is excluded\nfrom the Corresponding Source as a System Library, need not be\nincluded in conveying the object code work.\n\n  A \"User Product\" is either (1) a \"consumer product\", which means any\ntangible personal property which is normally used for personal, family,\nor household purposes, or (2) anything designed or sold for incorporation\ninto a dwelling.  In determining whether a product is a consumer product,\ndoubtful cases shall be resolved in favor of coverage.  For a particular\nproduct received by a particular user, \"normally used\" refers to a\ntypical or common use of that class of product, regardless of the status\nof the particular user or of the way in which the particular user\nactually uses, or expects or is expected to use, the product.  A product\nis a consumer product regardless of whether the product has substantial\ncommercial, industrial or non-consumer uses, unless such uses represent\nthe only significant mode of use of the product.\n\n  \"Installation Information\" for a User Product means any methods,\nprocedures, authorization keys, or other information required to install\nand execute modified versions of a covered work in that User Product from\na modified version of its Corresponding Source.  The information must\nsuffice to ensure that the continued functioning of the modified object\ncode is in no case prevented or interfered with solely because\nmodification has been made.\n\n  If you convey an object code work under this section in, or with, or\nspecifically for use in, a User Product, and the conveying occurs as\npart of a transaction in which the right of possession and use of the\nUser Product is transferred to the recipient in perpetuity or for a\nfixed term (regardless of how the transaction is characterized), the\nCorresponding Source conveyed under this section must be accompanied\nby the Installation Information.  But this requirement does not apply\nif neither you nor any third party retains the ability to install\nmodified object code on the User Product (for example, the work has\nbeen installed in ROM).\n\n  The requirement to provide Installation Information does not include a\nrequirement to continue to provide support service, warranty, or updates\nfor a work that has been modified or installed by the recipient, or for\nthe User Product in which it has been modified or installed.  Access to a\nnetwork may be denied when the modification itself materially and\nadversely affects the operation of the network or violates the rules and\nprotocols for communication across the network.\n\n  Corresponding Source conveyed, and Installation Information provided,\nin accord with this section must be in a format that is publicly\ndocumented (and with an implementation available to the public in\nsource code form), and must require no special password or key for\nunpacking, reading or copying.\n\n  7. Additional Terms.\n\n  \"Additional permissions\" are terms that supplement the terms of this\nLicense by making exceptions from one or more of its conditions.\nAdditional permissions that are applicable to the entire Program shall\nbe treated as though they were included in this License, to the extent\nthat they are valid under applicable law.  If additional permissions\napply only to part of the Program, that part may be used separately\nunder those permissions, but the entire Program remains governed by\nthis License without regard to the additional permissions.\n\n  When you convey a copy of a covered work, you may at your option\nremove any additional permissions from that copy, or from any part of\nit.  (Additional permissions may be written to require their own\nremoval in certain cases when you modify the work.)  You may place\nadditional permissions on material, added by you to a covered work,\nfor which you have or can give appropriate copyright permission.\n\n  Notwithstanding any other provision of this License, for material you\nadd to a covered work, you may (if authorized by the copyright holders of\nthat material) supplement the terms of this License with terms:\n\n    a) Disclaiming warranty or limiting liability differently from the\n    terms of sections 15 and 16 of this License; or\n\n    b) Requiring preservation of specified reasonable legal notices or\n    author attributions in that material or in the Appropriate Legal\n    Notices displayed by works containing it; or\n\n    c) Prohibiting misrepresentation of the origin of that material, or\n    requiring that modified versions of such material be marked in\n    reasonable ways as different from the original version; or\n\n    d) Limiting the use for publicity purposes of names of licensors or\n    authors of the material; or\n\n    e) Declining to grant rights under trademark law for use of some\n    trade names, trademarks, or service marks; or\n\n    f) Requiring indemnification of licensors and authors of that\n    material by anyone who conveys the material (or modified versions of\n    it) with contractual assumptions of liability to the recipient, for\n    any liability that these contractual assumptions directly impose on\n    those licensors and authors.\n\n  All other non-permissive additional terms are considered \"further\nrestrictions\" within the meaning of section 10.  If the Program as you\nreceived it, or any part of it, contains a notice stating that it is\ngoverned by this License along with a term that is a further\nrestriction, you may remove that term.  If a license document contains\na further restriction but permits relicensing or conveying under this\nLicense, you may add to a covered work material governed by the terms\nof that license document, provided that the further restriction does\nnot survive such relicensing or conveying.\n\n  If you add terms to a covered work in accord with this section, you\nmust place, in the relevant source files, a statement of the\nadditional terms that apply to those files, or a notice indicating\nwhere to find the applicable terms.\n\n  Additional terms, permissive or non-permissive, may be stated in the\nform of a separately written license, or stated as exceptions;\nthe above requirements apply either way.\n\n  8. Termination.\n\n  You may not propagate or modify a covered work except as expressly\nprovided under this License.  Any attempt otherwise to propagate or\nmodify it is void, and will automatically terminate your rights under\nthis License (including any patent licenses granted under the third\nparagraph of section 11).\n\n  However, if you cease all violation of this License, then your\nlicense from a particular copyright holder is reinstated (a)\nprovisionally, unless and until the copyright holder explicitly and\nfinally terminates your license, and (b) permanently, if the copyright\nholder fails to notify you of the violation by some reasonable means\nprior to 60 days after the cessation.\n\n  Moreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\n  Termination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License.  If your rights have been terminated and not permanently\nreinstated, you do not qualify to receive new licenses for the same\nmaterial under section 10.\n\n  9. Acceptance Not Required for Having Copies.\n\n  You are not required to accept this License in order to receive or\nrun a copy of the Program.  Ancillary propagation of a covered work\noccurring solely as a consequence of using peer-to-peer transmission\nto receive a copy likewise does not require acceptance.  However,\nnothing other than this License grants you permission to propagate or\nmodify any covered work.  These actions infringe copyright if you do\nnot accept this License.  Therefore, by modifying or propagating a\ncovered work, you indicate your acceptance of this License to do so.\n\n  10. Automatic Licensing of Downstream Recipients.\n\n  Each time you convey a covered work, the recipient automatically\nreceives a license from the original licensors, to run, modify and\npropagate that work, subject to this License.  You are not responsible\nfor enforcing compliance by third parties with this License.\n\n  An \"entity transaction\" is a transaction transferring control of an\norganization, or substantially all assets of one, or subdividing an\norganization, or merging organizations.  If propagation of a covered\nwork results from an entity transaction, each party to that\ntransaction who receives a copy of the work also receives whatever\nlicenses to the work the party's predecessor in interest had or could\ngive under the previous paragraph, plus a right to possession of the\nCorresponding Source of the work from the predecessor in interest, if\nthe predecessor has it or can get it with reasonable efforts.\n\n  You may not impose any further restrictions on the exercise of the\nrights granted or affirmed under this License.  For example, you may\nnot impose a license fee, royalty, or other charge for exercise of\nrights granted under this License, and you may not initiate litigation\n(including a cross-claim or counterclaim in a lawsuit) alleging that\nany patent claim is infringed by making, using, selling, offering for\nsale, or importing the Program or any portion of it.\n\n  11. Patents.\n\n  A \"contributor\" is a copyright holder who authorizes use under this\nLicense of the Program or a work on which the Program is based.  The\nwork thus licensed is called the contributor's \"contributor version\".\n\n  A contributor's \"essential patent claims\" are all patent claims\nowned or controlled by the contributor, whether already acquired or\nhereafter acquired, that would be infringed by some manner, permitted\nby this License, of making, using, or selling its contributor version,\nbut do not include claims that would be infringed only as a\nconsequence of further modification of the contributor version.  For\npurposes of this definition, \"control\" includes the right to grant\npatent sublicenses in a manner consistent with the requirements of\nthis License.\n\n  Each contributor grants you a non-exclusive, worldwide, royalty-free\npatent license under the contributor's essential patent claims, to\nmake, use, sell, offer for sale, import and otherwise run, modify and\npropagate the contents of its contributor version.\n\n  In the following three paragraphs, a \"patent license\" is any express\nagreement or commitment, however denominated, not to enforce a patent\n(such as an express permission to practice a patent or covenant not to\nsue for patent infringement).  To \"grant\" such a patent license to a\nparty means to make such an agreement or commitment not to enforce a\npatent against the party.\n\n  If you convey a covered work, knowingly relying on a patent license,\nand the Corresponding Source of the work is not available for anyone\nto copy, free of charge and under the terms of this License, through a\npublicly available network server or other readily accessible means,\nthen you must either (1) cause the Corresponding Source to be so\navailable, or (2) arrange to deprive yourself of the benefit of the\npatent license for this particular work, or (3) arrange, in a manner\nconsistent with the requirements of this License, to extend the patent\nlicense to downstream recipients.  \"Knowingly relying\" means you have\nactual knowledge that, but for the patent license, your conveying the\ncovered work in a country, or your recipient's use of the covered work\nin a country, would infringe one or more identifiable patents in that\ncountry that you have reason to believe are valid.\n\n  If, pursuant to or in connection with a single transaction or\narrangement, you convey, or propagate by procuring conveyance of, a\ncovered work, and grant a patent license to some of the parties\nreceiving the covered work authorizing them to use, propagate, modify\nor convey a specific copy of the covered work, then the patent license\nyou grant is automatically extended to all recipients of the covered\nwork and works based on it.\n\n  A patent license is \"discriminatory\" if it does not include within\nthe scope of its coverage, prohibits the exercise of, or is\nconditioned on the non-exercise of one or more of the rights that are\nspecifically granted under this License.  You may not convey a covered\nwork if you are a party to an arrangement with a third party that is\nin the business of distributing software, under which you make payment\nto the third party based on the extent of your activity of conveying\nthe work, and under which the third party grants, to any of the\nparties who would receive the covered work from you, a discriminatory\npatent license (a) in connection with copies of the covered work\nconveyed by you (or copies made from those copies), or (b) primarily\nfor and in connection with specific products or compilations that\ncontain the covered work, unless you entered into that arrangement,\nor that patent license was granted, prior to 28 March 2007.\n\n  Nothing in this License shall be construed as excluding or limiting\nany implied license or other defenses to infringement that may\notherwise be available to you under applicable patent law.\n\n  12. No Surrender of Others' Freedom.\n\n  If conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License.  If you cannot convey a\ncovered work so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you may\nnot convey it at all.  For example, if you agree to terms that obligate you\nto collect a royalty for further conveying from those to whom you convey\nthe Program, the only way you could satisfy both those terms and this\nLicense would be to refrain entirely from conveying the Program.\n\n  13. Use with the GNU Affero General Public License.\n\n  Notwithstanding any other provision of this License, you have\npermission to link or combine any covered work with a work licensed\nunder version 3 of the GNU Affero General Public License into a single\ncombined work, and to convey the resulting work.  The terms of this\nLicense will continue to apply to the part which is the covered work,\nbut the special requirements of the GNU Affero General Public License,\nsection 13, concerning interaction through a network will apply to the\ncombination as such.\n\n  14. Revised Versions of this License.\n\n  The Free Software Foundation may publish revised and/or new versions of\nthe GNU General Public License from time to time.  Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\n  Each version is given a distinguishing version number.  If the\nProgram specifies that a certain numbered version of the GNU General\nPublic License \"or any later version\" applies to it, you have the\noption of following the terms and conditions either of that numbered\nversion or of any later version published by the Free Software\nFoundation.  If the Program does not specify a version number of the\nGNU General Public License, you may choose any version ever published\nby the Free Software Foundation.\n\n  If the Program specifies that a proxy can decide which future\nversions of the GNU General Public License can be used, that proxy's\npublic statement of acceptance of a version permanently authorizes you\nto choose that version for the Program.\n\n  Later license versions may give you additional or different\npermissions.  However, no additional obligations are imposed on any\nauthor or copyright holder as a result of your choosing to follow a\nlater version.\n\n  15. Disclaimer of Warranty.\n\n  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\nIS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n  16. Limitation of Liability.\n\n  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\n  17. Interpretation of Sections 15 and 16.\n\n  If the disclaimer of warranty and limitation of liability provided\nabove cannot be given local legal effect according to their terms,\nreviewing courts shall apply local law that most closely approximates\nan absolute waiver of all civil liability in connection with the\nProgram, unless a warranty or assumption of liability accompanies a\ncopy of the Program in return for a fee.\n\n                     END OF TERMS AND CONDITIONS\n\n            How to Apply These Terms to Your New Programs\n\n  If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n  To do so, attach the following notices to the program.  It is safest\nto attach them to the start of each source file to most effectively\nstate the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n    <one line to give the program's name and a brief idea of what it does.>\n    Copyright (C) <year>  <name of author>\n\n    This program is free software: you can redistribute it and/or modify\n    it under the terms of the GNU General Public License as published by\n    the Free Software Foundation, either version 3 of the License, or\n    (at your option) any later version.\n\n    This program is distributed in the hope that it will be useful,\n    but WITHOUT ANY WARRANTY; without even the implied warranty of\n    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n    GNU General Public License for more details.\n\n    You should have received a copy of the GNU General Public License\n    along with this program.  If not, see <https://www.gnu.org/licenses/>.\n\nAlso add information on how to contact you by electronic and paper mail.\n\n  If the program does terminal interaction, make it output a short\nnotice like this when it starts in an interactive mode:\n\n    <program>  Copyright (C) <year>  <name of author>\n    This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n    This is free software, and you are welcome to redistribute it\n    under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate\nparts of the General Public License.  Of course, your program's commands\nmight be different; for a GUI interface, you would use an \"about box\".\n\n  You should also get your employer (if you work as a programmer) or school,\nif any, to sign a \"copyright disclaimer\" for the program, if necessary.\nFor more information on this, and how to apply and follow the GNU GPL, see\n<https://www.gnu.org/licenses/>.\n\n  The GNU General Public License does not permit incorporating your program\ninto proprietary programs.  If your program is a subroutine library, you\nmay consider it more useful to permit linking proprietary applications with\nthe library.  If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License.  But first, please read\n<https://www.gnu.org/licenses/why-not-lgpl.html>.\n"
  },
  {
    "path": "README.md",
    "content": "<div align=\"center\">\n\n# NANO FOR WINDOWS\n\n[![Xbuild4Windows](https://github.com/okibcn/nano-for-windows/actions/workflows/Xbuild4Windows.yml/badge.svg)](https://github.com/okibcn/nano-for-windows/actions/workflows/Xbuild4Windows.yml) [![SyncNano](https://github.com/okibcn/nano-for-windows/actions/workflows/SyncNano.yml/badge.svg)](https://github.com/okibcn/nano-for-windows/actions/workflows/SyncNano.yml)\n[![Version](https://img.shields.io/github/v/release/okibcn/nano-for-windows)](https://github.com/okibcn/nano-for-windows/releases/latest) [![Github All Releases](https://img.shields.io/github/downloads/okibcn/nano-for-windows/total.svg)](https://github.com/okibcn/nano-for-windows/blob/releases/README.md#installation)\n\n</div><br/><br/>\n\nThis is a 64-bit/32-bit and Windows on ARM port of the legendary **[GNU nano text editor](https://www.nano-editor.org/)**, a small and compact CLI editor that packs a world of functionality in a small footprint (less than 300KB). It can be run in a Windows Terminal, Powershell window, Command Prompt window, SSH session, or similar environment.\n\nGNU nano is constantly being upgraded, but the original project is focused on providing support and functionality for Linux. This project is meant to bring the latest updates to both 64-bit and 32-bit Windows users.\n\n<div align=\"center\"><img width=\"930\" alt=\"image\" src=\"https://user-images.githubusercontent.com/22417711/218406506-88cc1dc2-ee36-4440-94d2-61dd7dd84db6.png\">\n</div>\n\n# Features ported to Windows\n\nPretty much everything is supported except for Linux-specific functions, including:\n\n- Interface customization: colors, key shortcuts, line numbers, infobar, scroll bar, etc...\n- Syntax coloring for 47 different types of documents. It can be upgraded thanks to community support, for instance [here](https://github.com/scopatz/nanorc) or [here](https://github.com/mitchell486/nanorc) you can find additional syntax files for many other document types.\n- Full support for UTF-8 encoded files.\n- Supplemental Unicode character support, including all the languages and emojis 😜in the CLI interface.\n- Multi-document editor.\n- Integrated file browser.\n- Mouse support for scroll and cursor location.\n- Normal and regular expression (regex) search and replace.\n- Auto-indent, syntax highlight and fast line comment for many programming languages.\n- Line wrap, search, cut, copy & paste, and all the basic functions of any full-fledged editor.\n- Data input through stdin support, from a pipe or the keyboard.\n- Transparent backgrounds in Windows Terminal, and other supported environments.\n- Beta native support for Windows on ARM (WoA)\n\n<div align=\"center\"><img width=\"947\" alt=\"image\" src=\"https://user-images.githubusercontent.com/22417711/218406120-a7198c98-fd5f-4a1b-8793-b65c3ba68d7c.png\"></div>\n\n<br/>\n\n# Installation\n\nThe easiest way to install nano is via **[Scoop](https://scoop.sh/)**.\n\n1. To install Scoop, open a PowerShell terminal (version 5.1 or later) and run:\n```pwsh\nSet-ExecutionPolicy RemoteSigned -Scope CurrentUser # Optional: Needed to run a remote script the first time\nirm get.scoop.sh | iex\n```\n2. Add nano for Windows directly from its bucket:\n```pwsh\nscoop bucket add .oki https://github.com/okibcn/Bucket  # Optional: the changes are propagated faster this way\nscoop install nano\n```\nTo remove the app, type:\n```pwsh\nscoop uninstall nano\n```\nTo update the app, type:\n```pwsh\nscoop update nano\n```\n\n# Installation via direct download\n\nVisit the [releases](https://github.com/okibcn/nano-for-windows/releases) page, and download the latest release file ending in `.zip` for your architecture (Windows 32, Windows 64, or Windows on Arm). Then unzip the file to a directory in your `%PATH%`.\n\n# Usage\n\nThis repo handles only the conversion to the Windows OS. The original GNU nano **[documentation](https://www.nano-editor.org/docs.php)** covers all the usage instructions. For a quick reference, you can just press F1 within nano to open the integrated help.\n\nThe interface customization file is located in the user profile and has good descriptions of each setting. To edit it, just open a powershell terminal, and type:\n```pwsh\nnano ~/.nanorc\n```\n# Notes\n\n- When using Windows Terminal and the screen is resized within nano, after returning to the shell there could be some corruption due to the new size. To fix the issue without losing the terminal history just resize the terminal window to zero lines and return to the desired size.\n\n- Feel free to open any issue you find, or use the [Discussions](https://github.com/okibcn/nano-for-windows/discussions) section for any other issue, suggestion, question, etc...\n"
  },
  {
    "path": "UTF-8.txt",
    "content": "UTF-8 encoded sample plain-text file\n‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾\nEmojis!    >😀💃👍🪟😜🍕🍔🍟🌭🍿💘<      Greek:    Αγάλι-αγάλι γίνεται η αγουρίδα μέλι.<\nCurrencies > €.₩.₨.₤.₢.₠ <               Amharic:  ሰማይ አይታረስ ንጉሥ አይከሰስ።  \nSpanish    >Ñandú ñoño<                  Cyrillic: ЙйКкЛлМмНнОоПпРрСс<\nChinese    >的一是在不了有和人这中大<    Braille:  ⡍⠜⠇⠑⠹ ⠺⠁⠎ ⠙⠑⠁⠙⠒ ⠞⠕ ⠃⠑⠛⠔ ⠺⠊⠹⠲ ⡹⠻⠑ ⠊⠎ ⠝⠕ ⠙⠳⠃⠞\nKorean     >나는 케이팝을 사랑안녕<      Runes: ᚻᛖ ᚳᚹᚫᚦ ᚦᚫᛏ ᚻᛖ ᛒᚢᛞᛖ ᚩᚾ ᚦᚫᛗ ᛚᚪᚾᛞᛖ ᚾᚩᚱᚦᚹᛖᚪᚱᛞᚢᛗ ᚹᛁᚦ ᚦᚪ ᚹᛖᛥᚫ\nJapanese   >やあ< \n\nMathematics and sciences:                Linguistics and dictionaries:\n\n∮ E⋅da = Q,  n → ∞, ∑ f(i) = ∏ g(i),     ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn\n2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm    Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]\n\nBox drawing alignment tests:                                          █             Wide chars:\n                                                                      ▉             \n  ╔══╦══╗  ┌──┬──┐  ╭──┬──╮  ╭──┬──╮  ┏━━┳━━┓  ┎┒┏┑   ╷  ╻ ┏┯┓ ┌┰┐    ▊ ╱╲╱╲╳╳╳     ＡＰＰＬＥ\n  ║┌─╨─┐║  │╔═╧═╗│  │╒═╪═╕│  │╓─╁─╖│  ┃┌─╂─┐┃  ┗╃╄┙  ╶┼╴╺╋╸┠┼┨ ┝╋┥    ▋ ╲╱╲╱╳╳╳      ＡＰＰＬＥ\n  ║│╲ ╱│║  │║   ║│  ││ │ ││  │║ ┃ ║│  ┃│ ╿ │┃  ┍╅╆┓   ╵  ╹ ┗┷┛ └┸┘    ▌ ╱╲╱╲╳╳╳       ＡＰＰＬＥ\n  ╠╡ ╳ ╞╣  ├╢   ╟┤  ├┼─┼─┼┤  ├╫─╂─╫┤  ┣┿╾┼╼┿┫  ┕┛┖┚     ┌┄┄┐ ╎ ┏┅┅┓ ┋ ▍ ╲╱╲╱╳╳╳        ＡＰＰＬＥ \n  ║│╱ ╲│║  │║   ║│  ││ │ ││  │║ ┃ ║│  ┃│ ╽ │┃  ░░▒▒▓▓██ ┊  ┆ ╎ ╏  ┇ ┋ ▎\n  ║└─╥─┘║  │╚═╤═╝│  │╘═╪═╛│  │╙─╀─╜│  ┃└─╂─┘┃  ░░▒▒▓▓██ ┊  ┆ ╎ ╏  ┇ ┋ ▏\n  ╚══╩══╝  └──┴──┘  ╰──┴──╯  ╰──┴──╯  ┗━━┻━━┛  ▗▄▖▛▀▜   └╌╌┘ ╎ ┗╍╍┛ ┋  ▁▂▃▄▅▆▇█\n                                               ▝▀▘▙▄▟"
  }
]