├── .github └── ISSUE_TEMPLATE │ ├── config.yml │ ├── feature_request.yml │ └── bug_report.yml ├── README.md └── assets └── images └── logo.svg /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | contact_links: 3 | - name: 💬 General Question 4 | url: https://github.com/tabulartools/pbi-explorer/discussions/categories/q-a 5 | about: Please ask and answer questions as a discussion thread 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------------- 2 | We have stopped active development on PBI Explorer, \ 3 | but are working on releasing the C# Object Model for \ 4 | Power BI Reports as open source to support other projects. 5 | 6 | Sorry for any inconvenience 7 | 8 | -------------------------------------------------------------------------------------- 9 | 10 | # PBI Explorer 11 | This repository collects all the issues related to the [PBI Explorer tool](https://www.pbiexplorer.com). 12 | 13 | 14 | 15 | ## Issues 16 | 17 | To submit bugs, feature requests, or general questions: [Submit an Issue](https://github.com/tabulartools/pbi-explorer/issues/new/choose) 18 | 19 | ## Copyright 20 | © Tabular Tools Corp. [https://www.tabulartools.com](https://www.tabulartools.com) 21 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- 1 | name: 💡 Feature Request 2 | labels: ["enhancement", "untriaged"] 3 | description: Suggest an idea for this project 4 | body: 5 | - type: markdown 6 | attributes: 7 | value: | 8 | Thanks for submitting a feature request! 9 | 10 | --- 11 | - type: textarea 12 | id: the-feature-request 13 | attributes: 14 | label: The feature request 15 | description: 16 | Write a clear and concise description of what the feature or problem is. 17 | validations: 18 | required: true 19 | - type: textarea 20 | id: proposed-solution 21 | attributes: 22 | label: Proposed solution 23 | description: Share how this will benefit PBI Explorer and its users. 24 | validations: 25 | required: true 26 | - type: textarea 27 | id: additional-context 28 | attributes: 29 | label: Additional context 30 | description: 31 | Please include any other context, like screenshots or mockups, if applicable. 32 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- 1 | name: 🐛 Bug Report 2 | labels: ["bug", "untriaged"] 3 | description: Let us know if something is expected to work, but doesn't. 4 | body: 5 | - type: markdown 6 | attributes: 7 | value: | 8 | Before opening a bug report please search for the behaviour in the existing issues. 9 | 10 | --- 11 | - type: textarea 12 | id: describe-problem 13 | attributes: 14 | label: Describe the problem 15 | description: 16 | Describe the issue you are experiencing. 17 | Provide a clear and concise description of what you were trying to do and what happened, along with any error messages you encountered. 18 | validations: 19 | required: true 20 | - type: input 21 | id: pbiExplorer 22 | attributes: 23 | label: PBI Explorer 24 | description: 25 | Enter the specific version of PBI Explorer used (e.g. `0.3.1`, `0.2.2`, `BETA1`, `BETA2`) 26 | validations: 27 | required: true 28 | - type: input 29 | id: powerbi 30 | attributes: 31 | label: Power BI 32 | description: 33 | Enter the specific Power BI engine and version used (e.g. `Power BI Desktop version March 2022`, `Azure Analysis Services`, `SSAS 2019`) 34 | validations: 35 | required: true 36 | - type: input 37 | id: windows 38 | attributes: 39 | label: Windows 40 | description: 41 | Enter the specific version of Windows used (e.g. `Windows 11 Pro 22H2`, `22621.2283`) 42 | validations: 43 | required: true 44 | - type: textarea 45 | id: steps-to-reproduce 46 | attributes: 47 | label: Steps to reproduce the behavior 48 | description: Provide steps to reproduce the problem you are experiencing. 49 | placeholder: | 50 | 1. Go to '...' 51 | 2. Click on '....' 52 | 3. Scroll down to '....' 53 | 4. See error 54 | - type: textarea 55 | id: additional-context 56 | attributes: 57 | label: Additional context 58 | description: 59 | Add any other context about the problem you are experiencing here. 60 | - type: textarea 61 | id: screenshots 62 | attributes: 63 | label: Screenshots 64 | description: Add screenshots to help explain your problem, if applicable. 65 | - type: textarea 66 | id: logs 67 | attributes: 68 | label: Anything else ? 69 | description: 70 | Links ? References ? Anything that will give us more context about the issue you are encountering. 71 | You can enter a message text from the application diagnostic or upload a diagnostic log file, if applicable. 72 | placeholder: 73 | You can attach log files by clicking this area to highlight it and then dragging the files in. 74 | -------------------------------------------------------------------------------- /assets/images/logo.svg: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------