2025-07-31 10:59:42 +08:00
|
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
|
|
|
|
# 隐私协议的缩略版内容
|
|
|
|
|
|
PRIVACY_POLICY_BRIEF = """
|
2025-07-31 11:05:44 +08:00
|
|
|
|
# FRAISEMOE Addons Installer NEXT 隐私政策摘要
|
2025-07-31 10:59:42 +08:00
|
|
|
|
|
|
|
|
|
|
本应用在运行过程中会收集和处理以下信息:
|
|
|
|
|
|
|
|
|
|
|
|
## 收集的信息
|
|
|
|
|
|
- 系统信息:操作系统版本、程序版本号
|
|
|
|
|
|
- 网络信息:IP 地址(Cloudflare 加速时)、域名解析、下载统计
|
|
|
|
|
|
- 文件信息:游戏安装路径、文件哈希值
|
|
|
|
|
|
|
|
|
|
|
|
## 系统修改
|
|
|
|
|
|
- 使用 Cloudflare 加速时会临时修改系统 hosts 文件
|
|
|
|
|
|
- 修改前会自动备份,程序退出时自动恢复
|
|
|
|
|
|
|
|
|
|
|
|
## 第三方服务
|
|
|
|
|
|
- Cloudflare 服务:用于测试和优化下载速度
|
|
|
|
|
|
- 云端配置服务:获取配置信息和下载链接
|
|
|
|
|
|
|
|
|
|
|
|
完整的隐私政策可在程序中访问github仓库查看。
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
|
|
# 隐私协议的英文版缩略版内容
|
|
|
|
|
|
PRIVACY_POLICY_BRIEF_EN = """
|
2025-07-31 11:05:44 +08:00
|
|
|
|
# FRAISEMOE Addons Installer NEXT Privacy Policy Summary
|
2025-07-31 10:59:42 +08:00
|
|
|
|
|
|
|
|
|
|
This application collects and processes the following information:
|
|
|
|
|
|
|
|
|
|
|
|
## Information Collected
|
|
|
|
|
|
- System info: OS version, application version
|
|
|
|
|
|
- Network info: IP address (for Cloudflare acceleration), DNS resolution, download statistics
|
|
|
|
|
|
- File info: Game installation paths, file hash values
|
|
|
|
|
|
|
|
|
|
|
|
## System Modifications
|
|
|
|
|
|
- Temporarily modifies system hosts file when using Cloudflare acceleration
|
|
|
|
|
|
- Automatically backs up before modification and restores upon exit
|
|
|
|
|
|
|
|
|
|
|
|
## Third-party Services
|
|
|
|
|
|
- Cloudflare services: Used for testing and optimizing download speeds
|
|
|
|
|
|
- Cloud configuration services: For obtaining configuration information and download links
|
|
|
|
|
|
|
|
|
|
|
|
The complete privacy policy can be found in the github repository of the program.
|
|
|
|
|
|
"""
|