From a0f931c1de6b7a4f36c88be524f8103380de20ed Mon Sep 17 00:00:00 2001 From: Steven Kalinke Date: Wed, 1 Jul 2020 08:57:48 +0200 Subject: [PATCH 01/19] Add GitHub Issue Templates --- .github/ISSUE_TEMPLATE/bug-report.md | 32 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/code-review.md | 21 +++++++++++++++ .github/ISSUE_TEMPLATE/feature-request.md | 24 +++++++++++++++++ 3 files changed, 77 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug-report.md create mode 100644 .github/ISSUE_TEMPLATE/code-review.md create mode 100644 .github/ISSUE_TEMPLATE/feature-request.md diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md new file mode 100644 index 000000000..7c1cd72c5 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-report.md @@ -0,0 +1,32 @@ +--- +name: "\U0001F41E Bug report" +about: Create a report to help us improve +title: "\U0001F41E [Describe Your Bug]" +labels: '' +assignees: '' + +--- + +**Describe the bug/issue** +A clear and concise description of what the bug is. + +**To Reproduce** +Steps to reproduce the behavior: +1. ... +2. ... +3. ... + +**Screenshots** +If applicable, add screenshots to help explain your problem. + +**Your System** +``` +Windows build number: (run "ver" at a command prompt) +Flow Launcher version: (Settings => About) +``` +**Flow Launcher Error Log** + diff --git a/.github/ISSUE_TEMPLATE/code-review.md b/.github/ISSUE_TEMPLATE/code-review.md new file mode 100644 index 000000000..caa334ca7 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/code-review.md @@ -0,0 +1,21 @@ +--- +name: "\U0001F50E Code Review" +about: Describe (bad) code that needs to be improved +title: "\U0001F50E [Describe Problematic Code]" +labels: '' +assignees: '' + +--- + +**Point to the corresponding file and line number(s) which could be improved.** + +Click on the line number in GitHub to create an anchored link to the corresponding code section. For example: + + +https://github.com/Flow-Launcher/Flow.Launcher/blob/master/Flow.Launcher/Storage/TopMostRecord.cs#L8 + +Provide your alternative implementation idea: + +``` +Code +``` diff --git a/.github/ISSUE_TEMPLATE/feature-request.md b/.github/ISSUE_TEMPLATE/feature-request.md new file mode 100644 index 000000000..187a8b687 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-request.md @@ -0,0 +1,24 @@ +--- +name: "⭐ Feature request" +about: Suggest an idea for this project +title: "⭐ [Describe Your Feature]" +labels: '' +assignees: '' + +--- + +**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. + +**Additional context** + +Add any other context or screenshots about the feature request here. From 16c7d5c5b7c0517e512cffafb92131d4d02d87e4 Mon Sep 17 00:00:00 2001 From: Steven Kalinke Date: Wed, 1 Jul 2020 08:57:48 +0200 Subject: [PATCH 02/19] Add GitHub Issue Templates --- .github/ISSUE_TEMPLATE/bug-report.md | 32 +++++++ .github/ISSUE_TEMPLATE/code-review.md | 21 +++++ .github/ISSUE_TEMPLATE/feature-request.md | 24 +++++ ISSUE_TEMPLATE.md | 102 ---------------------- 4 files changed, 77 insertions(+), 102 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/bug-report.md create mode 100644 .github/ISSUE_TEMPLATE/code-review.md create mode 100644 .github/ISSUE_TEMPLATE/feature-request.md delete mode 100644 ISSUE_TEMPLATE.md diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md new file mode 100644 index 000000000..7c1cd72c5 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-report.md @@ -0,0 +1,32 @@ +--- +name: "\U0001F41E Bug report" +about: Create a report to help us improve +title: "\U0001F41E [Describe Your Bug]" +labels: '' +assignees: '' + +--- + +**Describe the bug/issue** +A clear and concise description of what the bug is. + +**To Reproduce** +Steps to reproduce the behavior: +1. ... +2. ... +3. ... + +**Screenshots** +If applicable, add screenshots to help explain your problem. + +**Your System** +``` +Windows build number: (run "ver" at a command prompt) +Flow Launcher version: (Settings => About) +``` +**Flow Launcher Error Log** + diff --git a/.github/ISSUE_TEMPLATE/code-review.md b/.github/ISSUE_TEMPLATE/code-review.md new file mode 100644 index 000000000..caa334ca7 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/code-review.md @@ -0,0 +1,21 @@ +--- +name: "\U0001F50E Code Review" +about: Describe (bad) code that needs to be improved +title: "\U0001F50E [Describe Problematic Code]" +labels: '' +assignees: '' + +--- + +**Point to the corresponding file and line number(s) which could be improved.** + +Click on the line number in GitHub to create an anchored link to the corresponding code section. For example: + + +https://github.com/Flow-Launcher/Flow.Launcher/blob/master/Flow.Launcher/Storage/TopMostRecord.cs#L8 + +Provide your alternative implementation idea: + +``` +Code +``` diff --git a/.github/ISSUE_TEMPLATE/feature-request.md b/.github/ISSUE_TEMPLATE/feature-request.md new file mode 100644 index 000000000..187a8b687 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-request.md @@ -0,0 +1,24 @@ +--- +name: "⭐ Feature request" +about: Suggest an idea for this project +title: "⭐ [Describe Your Feature]" +labels: '' +assignees: '' + +--- + +**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. + +**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 8575ec9b6..000000000 --- a/ISSUE_TEMPLATE.md +++ /dev/null @@ -1,102 +0,0 @@ - - -### Are you submitting a bug report? - -(write your answer here) - - - - - -### Steps to reproduce - - - -1. -2. -3. - -### Flow Launcher Error Window text - - -(paste here) - - -### Detailed logs - - -(drop your log file here) - -### Screenshots (optional) - - -(drop your screenshot here) - From 8e38891c8be0de735da09431ef508b56452b01e2 Mon Sep 17 00:00:00 2001 From: Steven Kalinke Date: Thu, 2 Jul 2020 13:25:50 +0200 Subject: [PATCH 03/19] Update IssueTemplate --- .github/ISSUE_TEMPLATE/bug-report.md | 6 +++--- .github/ISSUE_TEMPLATE/code-review.md | 4 ++-- .github/ISSUE_TEMPLATE/discussion.md | 14 ++++++++++++++ .github/ISSUE_TEMPLATE/feature-request.md | 6 +++--- 4 files changed, 22 insertions(+), 8 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/discussion.md diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md index 7c1cd72c5..23ced593e 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.md +++ b/.github/ISSUE_TEMPLATE/bug-report.md @@ -1,8 +1,8 @@ --- name: "\U0001F41E Bug report" -about: Create a report to help us improve -title: "\U0001F41E [Describe Your Bug]" -labels: '' +about: Create a bug report to help us improve Flow Launcher +title: "[Describe Your Bug]" +labels: 'bug' assignees: '' --- diff --git a/.github/ISSUE_TEMPLATE/code-review.md b/.github/ISSUE_TEMPLATE/code-review.md index caa334ca7..5cc53abec 100644 --- a/.github/ISSUE_TEMPLATE/code-review.md +++ b/.github/ISSUE_TEMPLATE/code-review.md @@ -1,8 +1,8 @@ --- name: "\U0001F50E Code Review" about: Describe (bad) code that needs to be improved -title: "\U0001F50E [Describe Problematic Code]" -labels: '' +title: "[Describe Problematic Code]" +labels: 'code review' assignees: '' --- diff --git a/.github/ISSUE_TEMPLATE/discussion.md b/.github/ISSUE_TEMPLATE/discussion.md new file mode 100644 index 000000000..8bd88c90f --- /dev/null +++ b/.github/ISSUE_TEMPLATE/discussion.md @@ -0,0 +1,14 @@ +--- +name: "⁉️ Question/Discussion" +about: Create a report to help us improve +title: "[Ask a question or propose a change]" +labels: 'question/discussion' +assignees: '' + +--- + +**Question** +Describe your question. + +**Discussion** +Discuss a topic. diff --git a/.github/ISSUE_TEMPLATE/feature-request.md b/.github/ISSUE_TEMPLATE/feature-request.md index 187a8b687..593163235 100644 --- a/.github/ISSUE_TEMPLATE/feature-request.md +++ b/.github/ISSUE_TEMPLATE/feature-request.md @@ -1,8 +1,8 @@ --- name: "⭐ Feature request" -about: Suggest an idea for this project -title: "⭐ [Describe Your Feature]" -labels: '' +about: Suggest a new idea or a feature enhacement +title: "[Describe Your Feature]" +labels: 'enhancement' assignees: '' --- From 8a860ec674283510e651b198c4a09a56437aff01 Mon Sep 17 00:00:00 2001 From: Jeremy Wu Date: Thu, 2 Jul 2020 21:29:13 +1000 Subject: [PATCH 04/19] fix the width of the blur effect --- Flow.Launcher/Themes/BlurBlack.xaml | 1 + Flow.Launcher/Themes/BlurWhite.xaml | 1 + 2 files changed, 2 insertions(+) diff --git a/Flow.Launcher/Themes/BlurBlack.xaml b/Flow.Launcher/Themes/BlurBlack.xaml index 488048cf4..40ecbc778 100644 --- a/Flow.Launcher/Themes/BlurBlack.xaml +++ b/Flow.Launcher/Themes/BlurBlack.xaml @@ -21,6 +21,7 @@