├── .github
├── ISSUE_TEMPLATE
│ ├── config.yml
│ ├── 03-question.yaml
│ ├── 02-feature-request.yaml
│ └── 01-bug-report.yaml
└── stale.yml
└── README.md
/.github/ISSUE_TEMPLATE/config.yml:
--------------------------------------------------------------------------------
1 | 'blank_issues_enabled': true
2 | 'contact_links':
3 | - 'about': >
4 | Please report filtering issues, for example advertising filters
5 | misfiring or safe browsing false positives, using the form on our
6 | website
7 | 'name': 'AdGuard filters issues'
8 | 'url': 'https://link.adtidy.org/forward.html?action=report&app=home&from=github'
9 | - 'about': >
10 | Please check AdGuard Knowledgebase for more useful information about our products
11 | 'name': 'Knowledgebase'
12 | 'url': 'https://adguard.com/kb/'
13 |
--------------------------------------------------------------------------------
/.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 to make sure that this issue has not already been filed
15 | required: true
16 |
17 | - type: textarea
18 | id: question
19 | attributes:
20 | label: Ask a question
21 | placeholder: If you want to know more about how the app works.
22 | validations:
23 | required: true
--------------------------------------------------------------------------------
/.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 | - 'Feature_Request'
12 | - 'feature request'
13 | - 'feature_request'
14 | - 'Localization'
15 | # Label to use when marking an issue as stale
16 | staleLabel: 'Wontfix'
17 | # Comment to post when marking an issue as stale. Set to `false` to disable
18 | markComment: >
19 | This issue has been automatically marked as stale because it has not had
20 | recent activity. It will be closed if no further activity occurs. Thank you
21 | for your contributions.
22 | # Comment to post when closing a stale issue. Set to `false` to disable
23 | closeComment: false
24 |
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/02-feature-request.yaml:
--------------------------------------------------------------------------------
1 | ---
2 |
3 | name: 🌱 Feature request
4 | description: Create a feature request to help us improve AdGuard for Mac.
5 | labels: ['Feature request']
6 | body:
7 | - type: textarea
8 | id: what-happened
9 | attributes:
10 | label: Issue Details
11 | description: What happened?
12 | placeholder: Is your feature request related to a problem? Please add a clear and concise description of what the problem is.
13 | validations:
14 | required: false
15 | - type: textarea
16 | id: how_it_should_be
17 | attributes:
18 | label: Proposed solution
19 | description:
20 | placeholder: Describe the solution you'd like in a clear and concise manner.
21 | validations:
22 | required: false
23 | - type: textarea
24 | id: additional
25 | attributes:
26 | label: Alternative solution
27 | description:
28 | placeholder: A clear and concise description of any alternative solutions or features you've considered.
29 | validations:
30 | required: false
31 | - type: markdown
32 | attributes:
33 | value: |
34 | ---
35 | Upvote [important issues](https://github.com/AdguardTeam/AdguardForMac/issues?q=is%3Aissue+is%3Aopen+sort%3Areactions-%2B1-desc+) with a :+1:
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
The most advanced system-wide content blocker for Mac
8 |
9 | All-round protection from all kinds of online ads, tracking and malvertising.
10 |