forked from bumptech/glide
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduce issue templates "the right way".
- Loading branch information
1 parent
6f5ce95
commit 5eef34d
Showing
4 changed files
with
65 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
<!-- | ||
Please fill in the below fields with some data to help us best diagnose the issue. | ||
The more specific you are, the better! You can help a lot by not making us ask these questions. | ||
Feel free to remove any irrelevant parts that you know are not related to the issue. | ||
Any HTML comment like this will be stripped when rendering markdown, no need to delete them. | ||
--> | ||
|
||
|
||
<!-- What version of Glide you're running, for example: 3.7.1 | 3.8.0-SNAPSHOT | 4.0.0-SNAPSHOT | ||
It's essentially the version number from your build.gradle: `dependencies { compile '...:x.y.z' }` --> | ||
**Glide Version**: | ||
|
||
<!-- Do you use any integration library, like OkHttp3 or Volley? For example: | ||
Fails to display with stock networking, but works with okhttp3-1.4.0 --> | ||
**Integration libraries**: | ||
|
||
<!-- What devices you managed to get the issue to come up on? For example: | ||
fails on Galaxy S4/GT-I9500 4.4.2, works fine on Nexus 6P 5.1 and Genymotion Nexus 5 5.0.1 --> | ||
**Device/Android Version**: | ||
|
||
<!-- Share the details of your issue in prose, detailing actual and expected behavior. It also helps if you give some info **why** you are trying to do something as opposed to **what** is not working. --> | ||
**Issue details / Repro steps / Use case background**: | ||
|
||
<!-- How do you use Glide? | ||
Make sure you include everything as is in your app's code: | ||
Changing a single method parameter can yield totally different results. | ||
Please clarify any magic variables that appear in the code, for example: "// `this` is a Fragment" | ||
--> | ||
**Glide load line / `GlideModule` (if any) / list Adapter code (if any)**: | ||
```java | ||
Glide.with... | ||
``` | ||
|
||
<!-- How does your app look like? | ||
We're most interested in the layout attributes and the hierarchy around the ImageView --> | ||
**Layout XML**: | ||
```xml | ||
<FrameLayout xmlns:android="... | ||
``` | ||
<!-- | ||
What is the error message that you got in the log? | ||
You can find some help on diagnosing issues here: https://github.com/bumptech/glide/wiki/Debugging-and-Error-Handling | ||
--> | ||
**Stack trace / LogCat**: | ||
```ruby | ||
paste stack trace and/or log here | ||
``` | ||
<!-- Bonus points if you attach a relevant screenshot, screen recording or a small demo project --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<!-- Make sure you've run `gradlew clean check jar assemble` before commit. --> | ||
<!-- Don't forget that you can always force push to your private branches to make changes. --> | ||
<!-- Please make sure there are no weird commits in the change set by rebasing to latest upstream. --> | ||
<!-- Please squash typo/checkstyle/review fix commits into the base commit. --> | ||
|
||
## Description | ||
<!-- Please describe the changes you made on a high level. --> | ||
<!-- Make sure you reference the GitHub issue here if this change is related to one. --> | ||
|
||
## Motivation and Context | ||
<!-- Why is this change required? What problem does it solve? --> | ||
<!-- If it's fixing a bug reference it or provide repro steps. --> | ||
|
||
<!-- If you have any issues feel free to create the PR anyway, we'll help to resolve them. --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters