├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── README.md └── incognito.md /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve Sync 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **Steps to Reproduce** 14 | 1. Go to '...' 15 | 2. Click on '....' 16 | 3. Scroll down to '....' 17 | 4. See error 18 | 19 | **Expected behavior** 20 | A clear and concise description of what you expected to happen. 21 | 22 | **Screenshots** 23 | If applicable, add screenshots to help explain your problem. 24 | 25 | **Smartphone (please complete the following information):** 26 | - Device: [e.g. Pixel 6] 27 | - Android: [e.g. 12] 28 | - Sync version: [e.g. v22.5.20] 29 | - Sync variant: [e.g. pro] 30 | 31 | **Additional context** 32 | Add any other context about the problem here. 33 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Describe alternatives you've considered** 17 | A clear and concise description of any alternative solutions you've considered. 18 | 19 | **Additional context** 20 | Add any other context, screenshot(s) or video(s) about the feature request here. 21 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Sync for Lemmy 2 | Issue tracker for the app Sync for Lemmy 3 | 4 | ![Sync logo](https://i.imgur.com/MnsM49X.png) 5 | -------------------------------------------------------------------------------- /incognito.md: -------------------------------------------------------------------------------- 1 | # Chrome Custom Tabs incognito setup 2 | 3 | To enable incognito tabs you must set two flags in chrome: 4 | 5 | chrome://flags/#cct-incognito 6 | 7 | chrome://flags/#cct-incognito-available-to-third-party 8 | 9 | ----- 10 | 11 | You will need to copy the above links and open them in Chrome as they cannot be directly linked 12 | 13 | ----- 14 | 15 | Along with the the "incognito custom tabs" option in Sync under "Link Handling". 16 | 17 | **Be warned this is a little buggy...** 18 | 19 | Finally this only works with Chrome and not Firefox. 20 | --------------------------------------------------------------------------------