semantic-release-bot f90f431540 🔖 chore(release): v1.3.0 [skip ci]
# [1.3.0](https://github.com/perfect-panel/ppanel-web/compare/v1.2.0...v1.3.0) (2025-08-15)

### ♻ Code Refactoring

* Refactoring and adding multiple features ([65c9b9f](https://github.com/perfect-panel/ppanel-web/commit/65c9b9f))

###  Features

* **api**: Add getClient API endpoint to retrieve subscription applications ([7a279e6](https://github.com/perfect-panel/ppanel-web/commit/7a279e6))
* **marketing**: Add marketing management features and localization updates ([ea08de0](https://github.com/perfect-panel/ppanel-web/commit/ea08de0))
* **protocol**: Add template preview functionality with localization support ([0448d21](https://github.com/perfect-panel/ppanel-web/commit/0448d21))
* **subscribe**: Update subscription management localization and add new fields ([1d9b0a4](https://github.com/perfect-panel/ppanel-web/commit/1d9b0a4))

### 🐛 Bug Fixes

* **bun**: Update bun.lockb to reflect dependency changes ([bbcd018](https://github.com/perfect-panel/ppanel-web/commit/bbcd018))
* **editor**: Add Go template editor component and update related schemas ([9d9c3cd](https://github.com/perfect-panel/ppanel-web/commit/9d9c3cd))
* **editor**: Enhance Go Template Editor to support trimmed template tags and improve range/end matching ([641ed5e](https://github.com/perfect-panel/ppanel-web/commit/641ed5e))
* **editor**: Enhance Go Template Editor with schema support and improved completion ([5b21d8a](https://github.com/perfect-panel/ppanel-web/commit/5b21d8a))
* **enhaced-input**: Disable autocomplete for EnhancedInput component ([f190c68](https://github.com/perfect-panel/ppanel-web/commit/f190c68))
* **global**: Add user agent limit settings to subscription configuration ([822416d](https://github.com/perfect-panel/ppanel-web/commit/822416d))
* **locales**: Update 'conf' output format to use uppercase 'CONF' ([fce9119](https://github.com/perfect-panel/ppanel-web/commit/fce9119))
* **locales**: Update "userAccount" label to "user" in multiple localization files ([48415e9](https://github.com/perfect-panel/ppanel-web/commit/48415e9))
* **protocol-form**: Swap 'description' and 'user_agent' columns for improved clarity in the table ([72a4106](https://github.com/perfect-panel/ppanel-web/commit/72a4106))
* **protocol-form**: Update protocol options descriptions for clarity and add new security and transport options ([e5d4deb](https://github.com/perfect-panel/ppanel-web/commit/e5d4deb))
* **protocol**: Add 'conf' output format option and update translations ([292efdf](https://github.com/perfect-panel/ppanel-web/commit/292efdf))
* **protpcp-form**: Rename 'schema' to 'scheme' for consistency across the application ([6ab2ba9](https://github.com/perfect-panel/ppanel-web/commit/6ab2ba9))
* **register**: Update localization files to include trial subscription settings and descriptions ([33daa1f](https://github.com/perfect-panel/ppanel-web/commit/33daa1f))
* **system**: Add time unit translations for user registration settings in multiple languages ([296a6c1](https://github.com/perfect-panel/ppanel-web/commit/296a6c1))
* Update privacy policy and terms of service schemas to use correct field names ([0e6ba5b](https://github.com/perfect-panel/ppanel-web/commit/0e6ba5b))
2025-08-21 21:27:33 -07:00
2025-07-30 23:55:34 -07:00
2025-08-10 03:07:37 -07:00
2025-08-15 09:16:02 -07:00
2025-08-14 09:00:22 -07:00
2024-11-14 01:22:43 +07:00
2025-08-21 18:23:28 -07:00
2025-08-21 21:27:33 -07:00
2025-07-24 16:48:59 -07:00
2024-11-14 01:22:43 +07:00
2025-08-21 21:27:33 -07:00
2025-08-16 09:38:50 -07:00

部署步骤

https://ppanel.dev/zh-CN/docs/user/node

熟练部署命令

APP_NAME="ppanel-admin-web"
tar -xzvf ${APP_NAME}.tar.gz && pm2 start ${APP_NAME} && pm2 list
unset APP_NAME # 显式销毁变量

构建开发环境

  1. 执行 ./scripts/publish-dev.sh 构建产物在 out-dev文件夹
  2. 上传out/zip.gz到服务器
  3. tar -xzvf ppanel-user-web-dev.tar.gz 解压
  4. tar -xzvf ppanel-user-web-dev.tar.gz
# 第一次启动
pm2 start ecosystem.config.js
pm2 save
pm2 startup

# 后续启动
pm2 start ppanel-user-web-dev
pm2 start ppanel-admin-web-dev

构建生产环境

  1. 执行 ./scripts/publish.sh 构建产物在 out文件夹
  2. 上传out/zip.gz到服务器
  3. tar -xzvf ppanel-user-web.tar.gz 解压
  4. tar -xzvf ppanel-admin-web.tar.gz
# 第一次启动
pm2 start ecosystem.config.js
pm2 save
pm2 startup
# 后续启动
pm2 start ppanel-user-web
pm2 start ppanel-admin-web
Description
No description provided
Readme GPL-3.0 8 MiB
Languages
TypeScript 98.9%
Shell 0.3%
CSS 0.3%
JavaScript 0.2%
Makefile 0.2%