├── .github
├── ISSUE_TEMPLATE
│ ├── 01-bug-report.yaml
│ ├── 02-feature-request.yaml
│ ├── 03-question.yaml
│ └── config.yml
└── stale.yml
└── README.md
/.github/ISSUE_TEMPLATE/01-bug-report.yaml:
--------------------------------------------------------------------------------
1 | name: 🐞 Bug report
2 | description: If you found something that we should know about
3 | labels: ["Bug"]
4 | body:
5 | - type: markdown
6 | attributes:
7 | value: |
8 | Thanks for taking the time to fill out this bug report!
9 |
10 | - type: checkboxes
11 | attributes:
12 | label: Please answer the following questions for yourself before submitting an issue.
13 | options:
14 | - label: I checked the [knowledge base](https://adguard-vpn.com/kb/) and found no answer
15 | required: true
16 | - label: I checked to make sure that this issue has not already been filed
17 | required: true
18 |
19 | - type: input
20 | id: app_version
21 | attributes:
22 | label: AdGuard VPN version
23 | description: What version of our application are you running?
24 | placeholder: For example, 2.2
25 | validations:
26 | required: true
27 |
28 | - type: textarea
29 | attributes:
30 | label: Environment
31 | description: |
32 | Examples:
33 | - **OS**: 17.3
34 | - **Device**: iPhone 15
35 | value: |
36 | - OS:
37 | - Device:
38 | validations:
39 | required: true
40 |
41 | - type: dropdown
42 | id: tunnel_mode
43 | attributes:
44 | label: Operating mode
45 | description:
46 | multiple: false
47 | options:
48 | - VPN
49 | - Integrated
50 | validations:
51 | required: true
52 |
53 | - type: dropdown
54 | id: exclusions_mode
55 | attributes:
56 | label: Exclusions mode
57 | description:
58 | multiple: false
59 | options:
60 | - None, AdGuard VPN app works in integrated mode
61 | - Regular
62 | - Selective
63 | validations:
64 | required: true
65 |
66 | - type: dropdown
67 | id: dns_protection
68 | attributes:
69 | label: Which DNS server do you use?
70 | multiple: false
71 | options:
72 | - None, AdGuard VPN app works in integrated mode
73 | - Default
74 | - AdGuard DNS
75 | - AdGuard DNS Family Protection
76 | - AdGuard DNS Non-filtering
77 | - Google DNS
78 | - Cloudflare DNS
79 | - Cloudflare for Families - Malware and Adult Content
80 | - Cloudflare for Families - Malware Blocking
81 | - Open DNS
82 | - Open DNS with Family Shield
83 | - Quad9
84 | - Custom DNS
85 | validations:
86 | required: true
87 |
88 | - type: textarea
89 | id: custom_dns
90 | attributes:
91 | label: Custom DNS
92 | description: Please provide a link to the custom DNS you use
93 | placeholder: If you have enabled DNS from the pre-defined list, skip this step.
94 | validations:
95 | required: false
96 |
97 | - type: textarea
98 | id: what-happened
99 | attributes:
100 | label: Issue Details
101 | description: Please provide a set of steps to reproduce the issue
102 | placeholder:
103 | value: |
104 | Steps to reproduce:
105 | 1.
106 | 2.
107 | 3.
108 | validations:
109 | required: true
110 |
111 | - type: textarea
112 | id: how_it_should_be
113 | attributes:
114 | label: Expected Behavior
115 | description:
116 | placeholder: A clear and concise description of what you expected to happen.
117 | validations:
118 | required: false
119 |
120 | - type: textarea
121 | id: how_it_is
122 | attributes:
123 | label: Actual Behavior
124 | placeholder: A clear description of what happened instead.
125 | validations:
126 | required: true
127 |
128 | - type: textarea
129 | id: screens
130 | attributes:
131 | label: Screenshots
132 | description: |
133 | If applicable add screenshots explaining your problem.
134 | You can drag and drop images or paste them from clipboard.
135 | Use `Screenshot 1
139 |
140 |
141 |
142 |
3 |
6 |
12 | Your online safety and anonymity guaranteed by a trusted developer. 13 |
14 | 15 |
16 | Website |
17 | Reddit |
18 | Twitter |
19 | Telegram
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
44 |
45 |
46 |
47 |
51 |
54 |
58 |
62 |