-
-
Notifications
You must be signed in to change notification settings - Fork 526
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into fix-custom-dates
- Loading branch information
Showing
45 changed files
with
452 additions
and
528 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: '' | ||
labels: bug | ||
assignees: '' | ||
|
||
--- | ||
|
||
## Bug report | ||
|
||
Hello! Thank you for reporting an issue! | ||
If you would fill out the below points, that would make our process a whole lot easier! | ||
|
||
* **Please tell us about your environment:** | ||
- Jrnl version: (run `jrnl -v`) | ||
- How you installed Jrnl | ||
- Operating system [MacOS, Linux, Windows?] | ||
|
||
* **What is the current behavior?** | ||
|
||
* **Please provide the steps to reproduce and if possible a minimal demo of the problem** | ||
|
||
* **What is the expected behavior?** | ||
|
||
* **Other information** (e.g. detailed explanation, stacktraces, related issues, suggestions how to fix, links for us to have context, eg. stackoverflow, gitter, etc) |
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 @@ | ||
blank_issues_enabled: false |
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,19 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for jrnl | ||
title: '' | ||
labels: enhancement | ||
assignees: '' | ||
|
||
--- | ||
|
||
## Feature Request | ||
|
||
Hello! Thank you for reporting an issue! | ||
If you would fill out the below points, that would make our process a whole lot easier! | ||
|
||
* **What is the motivation / use case for changing the behavior?** | ||
|
||
* **Please provide examples of the usage** | ||
|
||
* **Other information** (e.g. detailed explanation, stacktraces, related issues, suggestions how to fix, links for us to have context, eg. stackoverflow, gitter, etc) |
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,27 @@ | ||
--- | ||
name: Support Request | ||
about: Get help with jrnl | ||
title: '' | ||
labels: support | ||
assignees: '' | ||
|
||
--- | ||
|
||
## Support request | ||
|
||
Hello! Thank you for reporting an issue! | ||
If you would fill out the below points, that would make our process a whole lot easier! | ||
|
||
* **Please tell us about your environment:** | ||
|
||
- Jrnl version: (run `jrnl -v`) | ||
- How you installed Jrnl | ||
|
||
- Operating system [MacOS, Linux, Windows?] | ||
|
||
* **What are you trying to do?** | ||
|
||
* **What have you tried?** | ||
|
||
* **Other information** (e.g. detailed explanation, stacktraces, related issues, suggestions how to fix, links for us to have context, eg. stackoverflow, gitter, etc) | ||
|
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,19 @@ | ||
|
||
# **TEMPLATE PLEASE EDIT** | ||
*Thank you for wanting to contribute! Please fill out this description as well as look at the checklist!* | ||
|
||
*Short block of text containing: | ||
- Relevant changes in text form | ||
- related issues | ||
- Motivation (if applicable) | ||
- Example of usage (if applicable) | ||
- Example of changes to config files (if applicable) | ||
* | ||
### Checklist | ||
- [ ] The code change is tested and works locally. | ||
- [ ] Tests pass. Your PR cannot be merged unless tests pass | ||
- [ ] There is no commented out code in this PR. | ||
- [ ] Have you followed the guidelines in our Contributing document? | ||
- [ ] Have you checked to ensure there aren't other open [Pull Requests](../pulls) for the same update/change? | ||
- [ ] Have you added an explanation of what your changes do and why you'd like us to include them? | ||
- [ ] Have you written new tests for your core changes, as applicable? |
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 |
---|---|---|
@@ -1,8 +1,10 @@ | ||
dist: xenial # required for Python >= 3.7 | ||
language: python | ||
python: "3.7" | ||
git: | ||
depth: false | ||
before_install: | ||
- pip install poetry | ||
- pip install poetry~=0.12.17 | ||
install: | ||
# we run `poetry version` here to appease poetry about '0.0.0-source' | ||
- poetry version | ||
|
@@ -11,7 +13,6 @@ script: | |
- poetry run python --version | ||
- poetry run behave | ||
before_deploy: | ||
- pip install poetry | ||
- poetry config http-basic.pypi $PYPI_USER $PYPI_PASS | ||
- poetry version $TRAVIS_TAG | ||
- poetry build | ||
|
@@ -22,3 +23,10 @@ deploy: | |
on: | ||
branch: master | ||
tags: true | ||
after_deploy: | ||
- git config --global user.email "[email protected]" | ||
- git config --global user.name "Jrnl Bot" | ||
- git checkout master | ||
- git add pyproject.toml | ||
- git commit -m "Incrementing version to ${TRAVIS_TAG}" | ||
- git push https://${GITHUB_TOKEN}@github.com/jrnl-org/jrnl.git master |
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
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
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
Oops, something went wrong.