├── .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 `
` tag to hide screenshots under the spoiler. 136 | placeholder: If applicable add screenshots explaining your problem. 137 | value: | 138 |
Screenshot 1 139 | 140 | 141 | 142 |
143 | validations: 144 | required: false 145 | 146 | - type: textarea 147 | id: additional 148 | attributes: 149 | label: Additional Information 150 | description: 151 | placeholder: Add any other context about the problem here. 152 | validations: 153 | required: false 154 | 155 | - type: markdown 156 | attributes: 157 | value: | 158 | --- 159 | Upvote [important issues](https://github.com/AdguardTeam/AdGuardVPNForiOS/issues?q=is%3Aissue+is%3Aopen+sort%3Areactions-%2B1-desc+) with a :+1: -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/02-feature-request.yaml: -------------------------------------------------------------------------------- 1 | name: 🌱 Feature request 2 | description: If you know how AdGuard VPN can be improved 3 | labels: ["Feature request"] 4 | body: 5 | - type: textarea 6 | id: what-happened 7 | attributes: 8 | label: Issue Details 9 | description: What happened? 10 | placeholder: Is your feature request related to a problem? Please add a clear and concise description of what the problem is. 11 | validations: 12 | required: true 13 | 14 | - type: textarea 15 | id: how_it_should_be 16 | attributes: 17 | label: Proposed solution 18 | placeholder: Describe the solution you'd like in a clear and concise manner. 19 | validations: 20 | required: true 21 | 22 | - type: textarea 23 | id: additional 24 | attributes: 25 | label: Alternative solution 26 | placeholder: A clear and concise description of any alternative solutions or features you've considered. 27 | validations: 28 | required: false 29 | 30 | - type: markdown 31 | attributes: 32 | value: | 33 | --- 34 | Upvote [important issues](https://github.com/AdguardTeam/AdGuardVPNForiOS/issues?q=is%3Aissue+is%3Aopen+sort%3Areactions-%2B1-desc+) with a :+1: -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/03-question.yaml: -------------------------------------------------------------------------------- 1 | name: ❓ Question 2 | description: If the options above do not work for you 3 | labels: ["Question"] 4 | body: 5 | - type: markdown 6 | attributes: 7 | value: Thanks for taking the time to fill out this form! 8 | 9 | - type: checkboxes 10 | attributes: 11 | label: Please answer the following questions for yourself before submitting a question. 12 | options: 13 | - label: I am running the latest version 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: textarea 20 | id: question 21 | attributes: 22 | label: Ask a question 23 | placeholder: If you want to know more about how the app works. 24 | validations: 25 | required: true -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | 'blank_issues_enabled': true 2 | 'contact_links': 3 | - 'about': > 4 | Please check AdGuard VPN Knowledgebase for more useful information about our products 5 | 'name': 'Knowledgebase' 6 | 'url': 'https://adguard-vpn.com/kb/' -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- 1 | # Number of days of inactivity before an issue becomes stale 2 | daysUntilStale: 60 3 | # Number of days of inactivity before a stale issue is closed 4 | daysUntilClose: 7 5 | # Issues with these labels will never be considered stale 6 | exemptLabels: 7 | - 'Bug' 8 | - 'Compatibility' 9 | - 'Enhancement' 10 | - 'Feature request' 11 | - 'Localization' 12 | # Label to use when marking an issue as stale 13 | staleLabel: 'Wontfix' 14 | # Comment to post when marking an issue as stale. Set to `false` to disable 15 | markComment: > 16 | This issue has been automatically marked as stale because it has not had 17 | recent activity. It will be closed if no further activity occurs. Thank you 18 | for your contributions. 19 | # Comment to post when closing a stale issue. Set to `false` to disable 20 | closeComment: false -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |   2 |

3 | 4 | 5 | AdGuard VPN for iOS 6 | 7 |

8 | 9 |

Fast, flexible and reliable VPN solution for iOS

10 | 11 |

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 | Release 37 | 38 | 39 | Latest version 40 | 41 |

42 | 43 |

44 | 45 | Download on the App Store 46 | 47 |

48 | 49 |   50 |

51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 |

64 | 65 | > **Disclaimer** 66 | > * AdGuard VPN for iOS is not an open source project. We use GitHub as an open bug tracker for users to see what developers are working on. However, we at AdGuard create [a lot of open source software](https://github.com/search?o=desc&q=topic%3Aopen-source+org%3AAdguardTeam+fork%3Atrue&s=stars&type=Repositories). 67 | > * Privacy policy: https://adguard-vpn.com/privacy.html 68 | 69 | AdGuard VPN serves to protect your online privacy, encrypt your connection, hide your IP address and websites you visit from anyone (including your ISP). Cutting-edge technologies and multiple customization options will help conceal your location and ensure anonymous browsing on the web. 70 | 71 | To get more information and to download AdGuard VPN for iOS, visit our website [https://adguard-vpn.com/](https://adguard-vpn.com/). 72 | 73 | 74 | 75 | ## Feedback options 76 | 77 | We appreciate your feedback and always welcome both constructive critisism and new ideas. 78 | 79 | You can use GitHub to report a bug or to submit a feature request. To do so, go to [this page](https://github.com/AdguardTeam/AdguardVPNForios/issues), click the _New issue_ button and choose between creating a bug report or feature request. 80 | --------------------------------------------------------------------------------