main 45669956e0e4 cached
8 files
91.4 MB
2.7k tokens
1 requests
Download .txt
Repository: RipplePiam/MobaXterm-Chinese-Simplified
Branch: main
Commit: 45669956e0e4
Files: 8
Total size: 91.4 MB

Directory structure:
gitextract_vvjha81j/

├── .github/
│   └── workflows/
│       └── CHK_MXT_UPDATE.yml
├── .gitignore
├── MobaXterm_Portable_v22.1/
│   └── CygUtils.plugin
├── MobaXterm_Portable_v23.0/
│   └── CygUtils.plugin
├── MobaXterm_Portable_v24.2/
│   └── CygUtils.plugin
├── MobaXterm_Portable_v24.3/
│   ├── CygUtils.plugin
│   └── CygUtils64.plugin
└── README.md

================================================
FILE CONTENTS
================================================

================================================
FILE: .github/workflows/CHK_MXT_UPDATE.yml
================================================
name: Check MobaXterm Latest Version
env:
  GH_TOKEN: ${{ secrets.GH_TOKEN }}
on:
  schedule:
    - cron: '0 2 * * *' # 每天 UTC 时间 02:00 (北京时间 10:00)
  workflow_dispatch: # 允许手动触发
jobs:
  check-version:
    runs-on: ubuntu-latest

    steps:
      - name: checkout repo
        uses: actions/checkout@v4.2.2
        
      - name: Fetch MobaXterm Download Page
        run: |
          curl -sL "https://mobaxterm.mobatek.net/download-home-edition.html" -o mobaxterm.html
          echo "Downloaded mobaxterm.html"
      
      - name: Extract Version Number
        id: extract
        run: |
          # Extract the version from the "Portable edition" string using a regex.
          PATTERN="MobaXterm Home Edition v[0-9]+.[0-9]+<br />\(Portable edition\)"
          VERSION=$(grep -oE "$PATTERN" mobaxterm.html | grep -oE "[0-9]+.[0-9]+")
          if [ -z "$VERSION" ]; then
            echo "Failed to extract version number"
            exit 1
          fi
          echo "Latest MobaXterm version: $VERSION"
          echo "version=$VERSION" >> $GITHUB_OUTPUT

      - name: Send Email
        if: ${{ vars.MXT_VERSION != steps.extract.outputs.version }}
        uses: dawidd6/action-send-mail@v4
        with:
          connection_url: ${{ secrets.CONNECTION }}
          
          subject: "MobaXterm 发布版本更新"
          from: Github Actions
          to: ${{ secrets.EMAIL }}
          body: |
              MobaXterm 已发布新的软件版本 v${{ steps.extract.outputs.version }} 
      
      - name: Generate MXT Badge
        id: gen_mxt_bdg
        if: ${{ vars.MXT_VERSION != steps.extract.outputs.version }}
        run: |
          VERSION=${{ steps.extract.outputs.version }}
          mkdir -p assets
          cat > assets/mxt_badge.svg <<EOF
          <svg width="195" height="20" xmlns="http://www.w3.org/2000/svg">
           <g class="layer">
            <rect fill="#555" id="svg_1" height="20" width="155" rx="3" x="0" y="-0.08"/>
            <rect fill="#4c1" id="svg_2" height="20" width="40" rx="3" x="155" y="-0.08"/>
            <path fill="#4c1" id="svg_3" d="m153.09,-0.09l4.6,0l0,20l-4.6,0l0,-20z"/>
            <text fill="#fff" id="svg_4" font-family="Verdana" font-size="11" x="4" y="14">MobaXterm Latest Version</text>
            <text fill="#fff" id="svg_5" font-family="Verdana" font-size="11" x="158" y="14">v$VERSION</text>
           </g>
          </svg>
          EOF

      - name: Update Actions Variables
        if: ${{ vars.MXT_VERSION != steps.extract.outputs.version }}
        run: |
          VERSION=${{ steps.extract.outputs.version }}
          mxt_version=$(gh api repos/${{ github.repository }}/actions/variables/MXT_VERSION --jq '.value' 2>/dev/null || echo "00.0")
          echo mxt_version: $mxt_version
          if [ "$VERSION" != "$mxt_version" ]; then
            gh api -X PATCH repos/${{ github.repository }}/actions/variables/MXT_VERSION \
              -f name="MXT_VERSION" \
              -f value="$VERSION" \
              -f visible=true
            echo "actions.variables.MXT_VERSION is set to $VERSION"
          else
            echo "actions.variables.MXT_VERSION is already up to date."
          fi
      
      - name: Commit MXT Badge
        if: steps.gen_mxt_bdg.outcome == 'success'
        uses: EndBug/add-and-commit@v9.1.4
        with:
          author_name: Github Actions
          author_email: actions@github.com
          add: "assets/mxt_badge.svg"
          message: "update version badge to v${{ steps.extract.outputs.version }}"
      


================================================
FILE: .gitignore
================================================
.idea/
*.py
*.bak
*..md


================================================
FILE: MobaXterm_Portable_v22.1/CygUtils.plugin
================================================
[File too large to display: 15.3 MB]

================================================
FILE: MobaXterm_Portable_v23.0/CygUtils.plugin
================================================
[File too large to display: 17.1 MB]

================================================
FILE: MobaXterm_Portable_v24.2/CygUtils.plugin
================================================
[File too large to display: 21.6 MB]

================================================
FILE: MobaXterm_Portable_v24.3/CygUtils.plugin
================================================
[File too large to display: 21.6 MB]

================================================
FILE: MobaXterm_Portable_v24.3/CygUtils64.plugin
================================================
[File too large to display: 15.8 MB]

================================================
FILE: README.md
================================================
<p><h6 align="right"><a href="https://github.com/RipplePiam/MobaXterm-Chinese-Simplified/discussions/94">广播📡:关于防范软件倒卖行为,请大家支招</a></h6><br/></p> 
<p><h1 align="center">MobaXterm-Chinese-Simplified</h1><br/></p> 

<p align="center">
  <a href="https://github.com/ripplepiam/MobaXterm-Chinese-Simplified">
    <img src="https://img.shields.io/github/repo-size/RipplePiam/MobaXterm-Chinese-Simplified">
  </a>
  <a href="https://github.com/ripplepiam/MobaXterm-Chinese-Simplified/issues">
    <img src="https://img.shields.io/github/issues/ripplepiam/MobaXterm-Chinese-Simplified.svg">
  </a>
  <a href="https://github.com/ripplepiam/MobaXterm-Chinese-Simplified/stargazers">
    <img src="https://img.shields.io/github/stars/ripplepiam/MobaXterm-Chinese-Simplified.svg">
  </a>
  <a href="https://github.com/ripplepiam/MobaXterm-Chinese-Simplified/downloads">
    <img src="https://img.shields.io/github/downloads/RipplePiam/MobaXterm-Chinese-Simplified/total">
  </a>
  <a href="MobaXterm Latest Version">
    <img src="assets/mxt_badge.svg">
  </a>
  <a href="Latest Chinese Version">
    <img src="assets/chs_badge.svg">
  </a>
  <br/><br />
  <a href="https://www.star-history.com/#RipplePiam/MobaXterm-Chinese-Simplified&Date">
   <picture>
     <source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/svg?repos=RipplePiam/MobaXterm-Chinese-Simplified&type=Date&theme=dark" />
     <source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/svg?repos=RipplePiam/MobaXterm-Chinese-Simplified&type=Date" />
     <img alt="Star History Chart" src="https://api.star-history.com/svg?repos=RipplePiam/MobaXterm-Chinese-Simplified&type=Date" />
   </picture>
  </a>
</p>



### 一、声明

1. 本项目对软件本身功能**未作任何修改**;
2. 本项目**不提供** MobaXterm 软件的任何注册、破解技术;
3. 本项目为**非盈利**属性,仅用于研究汉化技术,欢迎提交 issue;
4. 若项目对您的知识产权构成侵权,请提供证明并联系,作者将第一时间处理;
5. 制作不易,酌请 :star: **Star** :star:  支持,谢谢。
6. 拿去卖钱的那些,人在做天在看,祝你这辈子吃不上两个菜!



### 二、简介

- 官网:[MobaXterm](https://mobaxterm.mobatek.net/) 

- 汉化:请从 [Releases](https://github.com/RipplePiam/MobaXterm-Chinese-Simplified/releases) 下载

- 介绍: [独家.MobaXterm v24.2 全能终端连接工具中文版](https://blog.csdn.net/qq_27677599/article/details/141603558)

  > **MobaXterm** 是一个增强型的 Windows 终端。
  >
  > 其为 Windows 桌面提供所有重要的 **远程网络工具**(SSH、X11、RDP、VNC、FTP、MOSH...)
  >
  > 和 **Unix 命令**(bash、ls、cat、sed、grep、awk、rsync...)。
  >
  > 您可以免费下载和使用 MobaXterm 家庭版。如果您想在公司内部使用它,您应该考虑订阅 MobaXterm 专业版。

- 主要特征:

  > ###### 嵌入式 X 服务器
  >
  > 基于 X.org 的完全配置的 Xserver
  >
  > ###### 轻松显示导出
  >
  > DISPLAY 从远程 Unix 导出到本地 Windows
  >
  > ###### X11-转发能力
  >
  > 您的远程显示器使用 SSH 进行安全传输
  >
  > ###### 带有 SSH 的选项卡式终端
  >
  > 基于具有抗锯齿字体和宏支持的 PuTTY
  >
  > ###### Windows 上的许多 Unix/Linux 命令
  >
  > 基本 Cygwin 命令(bash、grep、awk、sed、rsync、...)
  >
  > ###### 附加组件和插件
  >
  > 您可以使用插件扩展 MobaXterm 功能
  >
  > ###### 多功能会话管理器
  >
  > 一个应用程序中的所有网络工具:Rdp、Vnc、Ssh、Mosh、X11、...
  >
  > ###### 便携轻便的应用
  >
  > MobaXterm 已打包为单个可执行文件,不需要管理员权限,您可以从 U 盘启动
  >
  > ###### 专业应用
  >
  > MobaXterm Professional 专为安全性和稳定性而设计
  >
  > ###### 宏录制
  >
  > 支持图形化宏、桌面宏、终端宏等操作



### 三、项目看板

本仓库旨在对 MobaXterm Home Edition (Portable edition) 进行简体中文汉化。

不保证实时更新:

> MobaXterm Latest Version 24.3 (2024-10-30)
>
> 汉化最新版本:24.3, 总进度 100%
Download .txt
gitextract_vvjha81j/

├── .github/
│   └── workflows/
│       └── CHK_MXT_UPDATE.yml
├── .gitignore
├── MobaXterm_Portable_v22.1/
│   └── CygUtils.plugin
├── MobaXterm_Portable_v23.0/
│   └── CygUtils.plugin
├── MobaXterm_Portable_v24.2/
│   └── CygUtils.plugin
├── MobaXterm_Portable_v24.3/
│   ├── CygUtils.plugin
│   └── CygUtils64.plugin
└── README.md
Condensed preview — 8 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (7K chars).
[
  {
    "path": ".github/workflows/CHK_MXT_UPDATE.yml",
    "chars": 3523,
    "preview": "name: Check MobaXterm Latest Version\nenv:\n  GH_TOKEN: ${{ secrets.GH_TOKEN }}\non:\n  schedule:\n    - cron: '0 2 * * *' # "
  },
  {
    "path": ".gitignore",
    "chars": 24,
    "preview": ".idea/\n*.py\n*.bak\n*..md\n"
  },
  {
    "path": "README.md",
    "chars": 3225,
    "preview": "<p><h6 align=\"right\"><a href=\"https://github.com/RipplePiam/MobaXterm-Chinese-Simplified/discussions/94\">广播📡:关于防范软件倒卖行为,"
  }
]

// ... and 5 more files (download for full content)

About this extraction

This page contains the full source code of the RipplePiam/MobaXterm-Chinese-Simplified GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 8 files (91.4 MB), approximately 2.7k tokens. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!