diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 000000000..b189e59e8 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,47 @@ +--- +name: Bug report +about: Create a report to help us improve +title: "[Bug]" +labels: '' +assignees: '' + +--- + +**Describe the bug** +A clear and concise description of what the bug is. + +**To Reproduce** +Steps to reproduce the behavior: +1. Go to '...' +2. Click on '....' +3. Scroll down to '....' +4. See error + +**Expected behavior** +A clear and concise description of what you expected to happen. + +**Screenshots** +If applicable, add screenshots to help explain your problem. + +**Desktop (please complete the following information):** +- Olive version: [e.g. Git hash from window title or Help > About] +- Source: [e.g. AppImage, Website etc.] +- Operating system: [e.g. Ubuntu 18.04 64-bit] +- CPU: [e.g. Intel i5-4300U] +- RAM: [e.g. 8GB] +- GPU: [e.g. NVIDIA Geforce GT 1030 2GB (Driver ver xxx.xx.xx)] + +### Output Log + +``` +[Paste output log] +``` + +### GDB/CDB Backtrace (for crashes) + +``` +[If you can reproduce this issue, try running Olive through GDB and retrieving a backtrace, then paste the backtrace here. Instructions are available in the Wiki on how to acquire this backtrace.] +``` + +**Additional context** +Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 000000000..11d81bb48 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,28 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: "[Feature Request]" +labels: '' +assignees: '' + +--- + +**I have read the following** +- [ ] The Olive Wiki +- [ ] Previous issues that include "FR" or "Feature Request" +- [ ] Olive's Project Tab + +**Is your feature request related to a problem? Please describe.** +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +**Describe the solution you'd like** +A clear and concise description of what you want to happen. + +**Describe alternatives you've considered** +A clear and concise description of any alternative solutions or features you've considered. + +**Do you know any libraries or sources that can help the Olive Team include the feature?** +List open-source libraries related to the feature. + +**Additional context** +Add any other context or screenshots about the feature request here. diff --git a/ISSUE_TEMPLATE.md b/ISSUE_TEMPLATE.md deleted file mode 100644 index 62e0d8064..000000000 --- a/ISSUE_TEMPLATE.md +++ /dev/null @@ -1,55 +0,0 @@ -[If you are requesting a feature, please try to fill out all the information below. If you are reporting a bug, you can clear the template below.] - -### I have read the following - -- [ ] The [Olive Wiki](https://github.com/olive-editor/olive/wiki) - -- [ ] Previous issues that include ["FR"](https://github.com/olive-editor/olive/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+FR)or ["Feature Request"](https://github.com/olive-editor/olive/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+Feature+Request) - -- [ ] Olive's [Project Goals](https://github.com/olive-editor/olive/projects) - -### Detailed description of the feature request - -[Describe the feature request to the best of your ability. Do you know any libraries/sources that can help the Olive Team include the feature?] - -### Why should Olive include the feature? What are the benefits? - -[Explain the feature's importance to Olive and NLEs in general.] - ---- - -[If you are reporting a bug, please try to fill out all the information below. If you are requesting a feature, you can clear the template above.] - -### System Information - -**Olive version:** [e.g. Git hash from window title or Help > About] - -**Source:** [e.g. AppImage, Website etc.] - -**Operating system:** [e.g. Ubuntu 18.04 64-bit] - -**CPU:** [e.g. Intel i5-4300U] - -**RAM:** [e.g. 8GB] - -**GPU:** [e.g. NVIDIA Geforce GT 1030 2GB (Driver ver xxx.xx.xx)] - -### Detailed Description - -[Describe the issue you're having] - -### Steps to reproduce - -[Describe the steps to demonstrate the issue you're reporting] - -### Output Log - -``` -[Paste output log] -``` - -### GDB/CDB Backtrace (for crashes) - -``` -[If you can reproduce this issue, try running Olive through GDB and retrieving a backtrace, then paste the backtrace here. Instructions are available in the Wiki on how to acquire this backtrace.] -``` diff --git a/global/global.cpp b/global/global.cpp index 9f7ada144..f956662ae 100644 --- a/global/global.cpp +++ b/global/global.cpp @@ -62,7 +62,7 @@ OliveGlobal::OliveGlobal() : version_id = QString(" | %1").arg(GITHASH); #endif - olive::AppName = QString("Olive (March 2019 | Alpha%1)").arg(version_id); + olive::AppName = QString("Olive (April 2019 | Alpha%1)").arg(version_id); // set the file filter used in all file dialogs pertaining to Olive project files. project_file_filter = tr("Olive Project %1").arg("(*.ove)");