├── README.md
└── .github
└── ISSUE_TEMPLATE
└── bug_report.yml
/README.md:
--------------------------------------------------------------------------------
1 |
2 |
3 | # Fuck for VIP
4 |
5 | [](https://github.com/bug-bit/fckvip)
6 |

7 | [](https://github.com/bug-bit/fckvip/releases)
8 |

9 |

10 |
11 | 一个解锁部分软件会员与拓展功能增强的模块(详情见模块内)
12 |
13 |
14 |
15 | ----
16 |
17 | ### 注意
18 | - **对于适配应用来说** 模块**可能**并不是通杀的 你需要下载模块内标注的对应适配版本才可能正常使用模块的功能。
19 |
20 | ----
21 |
22 | ### 免责声明
23 | - **禁止发送、分享至国内平台!否则一切后果自行承担!**
24 | - 本模块仅供个人学习研究使用,请在下载后24小时内删除。请勿用于任何非法用途,否则后果自负!
25 | - 本模块不是为了破坏相应软件正常运营和作者的合法权益。请在使用本模块时,尊重相应作者的劳动成果,支持正版!不要利用本模块进行非法活动或其他损害相应软件合法权益的行为。
26 |
27 | ----
28 |
29 | ### 须知
30 | - 该模块是完全免费的,如果你是从任何收费渠道获得,那么恭喜你,你被骗啦!请不遗余力的进行举报🔆
31 | - 唯一Telegram频道:@bugccx
32 |
33 | ---
34 |
35 | ## Star History
36 |
37 | [](https://star-history.com/#bug-bit/fckvip&Timeline)
38 |
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/bug_report.yml:
--------------------------------------------------------------------------------
1 | name: "BUG反馈"
2 | description: "Hook功能不生效或有其他BUG,请选择此项进行反馈。"
3 | title: "【BUG反馈】"
4 | labels: [ "Bug/错误" ]
5 | body:
6 | - type: checkboxes
7 | id: checklist
8 | attributes:
9 | label: ⚠️ 反馈须知
10 | description: 请在提交前确保你已完成以下检查,否则 Issue 可能会被直接关闭。
11 | options:
12 | - label: 我确认我是 **LSPosed 用户**,其他框架不提供支持。
13 | required: true
14 | - label: 我确认已升级至 [最新的 release 版本](https://github.com/bug-bit/fckvip/releases/latest)。
15 | required: true
16 | - label: 我已在 [已有 Issues](https://github.com/bug-bit/fckvip/issues?q=is%3Aissue+is%3Aclosed) 中查询过,未发现类似问题。
17 | required: true
18 | - label: 我确认适配软件的版本与模块适配版本一致,适配软件包名与模块适配包名一致。
19 | required: true
20 | - label: 我已了解 **VIP 显示与 Hook 成功无关**,即使 Hook 成功,软件也可能不会显示 VIP,但功能仍然可用。
21 | required: true
22 |
23 | - type: input
24 | id: xposed-framework
25 | attributes:
26 | label: 🛠️ 使用框架
27 | description: 请填写你使用的 LSPosed 版本及分支。
28 | placeholder:
29 | validations:
30 | required: true
31 |
32 | - type: input
33 | id: device-model
34 | attributes:
35 | label: 📱 设备型号
36 | description: 请输入你的设备型号。
37 | placeholder: 例如:一加 12
38 | validations:
39 | required: true
40 |
41 | - type: input
42 | id: android-version
43 | attributes:
44 | label: 📟 Android 版本
45 | description: 请输入你的 Android 系统版本。
46 | placeholder: 例如:Android 15
47 | validations:
48 | required: true
49 |
50 | - type: input
51 | id: app-name
52 | attributes:
53 | label: 📦 应用名称
54 | description: 请输入遇到问题的软件名称。
55 | validations:
56 | required: true
57 |
58 | - type: input
59 | id: app-version
60 | attributes:
61 | label: 🏷 应用版本号
62 | description: 请输入遇到问题的应用版本号。
63 | validations:
64 | required: true
65 |
66 | - type: input
67 | id: module-version
68 | attributes:
69 | label: 🔧 模块版本号
70 | description: 请输入你使用的模块版本号。
71 | validations:
72 | required: true
73 |
74 | - type: textarea
75 | id: problem-description
76 | attributes:
77 | label: 📝 问题描述
78 | description: 请详细描述你遇到的问题,包括复现步骤、预期行为和实际行为。
79 | render: text
80 | validations:
81 | required: true
82 |
83 | - type: textarea
84 | id: issues-screenshot
85 | attributes:
86 | label: 📷 问题截图/视频
87 | description: 请上传相关截图或视频(必须提供截图或视频,否则 Issue 可能不会被受理)。
88 | validations:
89 | required: true
90 |
91 | - type: textarea
92 | id: issues-lsposedlog
93 | attributes:
94 | label: 📜 LSPosed 日志
95 | description: 请前往 LSPosed 管理器清空日志,然后重新复现问题后,粘贴最新的 LSPosed 模块日志。
96 | validations:
97 | required: true
98 |
--------------------------------------------------------------------------------