├── .github └── ISSUE_TEMPLATE │ ├── bug_report.yaml │ └── config.yml └── README.md /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- 1 | name: Bug Report 2 | description: Report a bug encountered while using Logseq 3 | body: 4 | - type: markdown 5 | attributes: 6 | value: | 7 | Thank you very much for opening a bug report with Logseq. 8 | 9 | Please make sure to provide a descriptive, deterministic, and reproducible report. It saves time for both the developers and users who are looking for solutions. Providing as much information as possible, including screenshots and logs, is highly appreciated. This will help us to better understand the issue and respond more effectively. For issues that involve external files e.g. importing, please add specific files to help reproduce the issue. 10 | 11 | Please DO NOT use this template to ask questions. There are other appropriate channels to ask questions. This template is strictly for reporting bugs. 12 | - type: checkboxes 13 | id: confirm-search 14 | attributes: 15 | label: Search first 16 | description: Please search [existing issues](https://github.com/logseq/db-test/issues) and the [Logseq Forum](https://discuss.logseq.com/) before reporting. 17 | options: 18 | - label: I searched and no similar issues were found 19 | required: true 20 | - type: textarea 21 | id: problem 22 | attributes: 23 | label: What Happened? 24 | description: | 25 | Please provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner. 26 | validations: 27 | required: true 28 | - type: textarea 29 | id: reproduce 30 | attributes: 31 | label: Reproduce the Bug 32 | description: | 33 | Please tell us the steps to reproduce the bug. 34 | placeholder: | 35 | 1. Go to '...' 36 | 2. Click on '....' 37 | 3. Scroll down to '....' 38 | 4. See error 39 | validations: 40 | required: true 41 | - type: textarea 42 | id: expected 43 | attributes: 44 | label: Expected Behavior 45 | description: | 46 | Please tell us what's the behavior you expect. 47 | validations: 48 | required: false 49 | - type: textarea 50 | id: files 51 | attributes: 52 | label: Files 53 | description: | 54 | If applicable, add files, screenshots or screen recordings to help explain your problem. 55 | validations: 56 | required: false 57 | - type: textarea 58 | id: platform 59 | attributes: 60 | label: Browser, Desktop or Mobile Platform Information 61 | description: | 62 | Please tell us the system information about your desktop or mobile platform. The exact app version is helpful and found in `Settings` (press `t s`) by clicking on the version e.g. `0.10.10`. A notification pops up with the exact version. 63 | placeholder: | 64 | OS version, Browser or App, Logseq App version 65 | example: macOS 12.2, Desktop App v0.5.9 66 | example: iPhone 12, iOS8.1, v0.5.9 67 | example: Pixel XL, Android 12, v0.5.9 68 | validations: 69 | required: false 70 | - type: textarea 71 | id: additional 72 | attributes: 73 | label: Additional Context 74 | description: | 75 | If applicable, add additional context to help explain your problem. 76 | validations: 77 | required: false 78 | 79 | - type: checkboxes 80 | id: ask-pr 81 | attributes: 82 | label: Are you willing to submit a PR? If you know how to fix the bug. 83 | description: | 84 | If you are not familiar with programming, you can skip this step. 85 | If you are a developer and know how to fix the bug, you can [submit a PR to fix it](https://github.com/logseq/logseq/blob/master/CONTRIBUTING.md#submit-pr). 86 | Your contributions are greatly appreciated and play a vital role in helping to improve the project! 87 | options: 88 | - label: I'm willing to submit a PR (Thank you!) 89 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | contact_links: 3 | - name: Features/Enhancement Issues 4 | url: https://discord.com/invite/VNfUaTtdFb 5 | about: Find existing requests in `#alpha-db-feedback` channel and vote on them. If none exist, create a new one. 6 | - name: Questions 7 | url: https://discord.com/invite/VNfUaTtdFb 8 | about: Ask questions in `#alpha-db-chat` channel. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # db-test 2 | Used for Database version test 3 | 4 | ## Resources 5 | - [DB Version feature documentation](https://github.com/logseq/docs/blob/master/db-version.md) 6 | - [Changes in DB Version](https://github.com/logseq/docs/blob/master/db-version-changes.md) 7 | --------------------------------------------------------------------------------