Manuel Ebert
ba59b1bded
Fix references to Sphinx in contributing.md
2020-04-10 11:51:55 -07:00
Justin Proffitt
c249c8ded9
Add '-not' flag for excluding tags from filter
...
Add tests for the excluding tags with -not
2020-04-10 11:51:55 -07:00
Dawid Zych
bd806efb98
Handle KeyboardInterrupt when installing journal
2020-04-10 11:51:55 -07:00
MinchinWeb
e14910c83f
Switch to hashmark Markdown headers on export
...
Closes #487
[Markdown Export] deal with linebreaks in jrnl files
[YAML Exporter] apply fix just applied to Markdown Exporter
2020-04-10 11:51:55 -07:00
Micah Jerome Ellison
8abbdf4db5
[GH-632] confirming that each journal can be parsed during upgrade, and aborting upgrade if not
...
[GH-632] raising exception in upgrade.py on fail
Handling it in install.py to prevent config from being overwritten when upgrade fails
[GH-632] removing unnecessary whitespace
[GH-632] removing unreachable return statement
[GH-632] adding call to action to report issue when upgrade fails
2020-04-10 11:51:55 -07:00
Manuel Ebert
328faa401c
Smaller doc fixes, fixes #486
...
Found and removed another angsty teenager
2020-04-10 11:51:55 -07:00
Greg Bodnar
623fa6c307
Create encrypted journal
...
Add failing test for configuring an encrypted journal
Overload open for EncryptedJournal
This avoids the execution path that calls EncryptedJournal._create()
without a password parameter. It results in duplication of code that
requests and stores a password, which should be factored out in a
subsequent change.
Modify test to test for returned strings
The entered string for the password is not being used by the test and I
don't understand why.
Use util wrapper for getpass
This allows for tests to run without prompting for user input.
2020-04-10 11:51:55 -07:00
Jonathan Wren
b260ff35b9
#631 Escape data in square brackets
2020-04-10 11:51:55 -07:00
Jonathan Wren
b84f862253
fix a few linting errors
2020-04-10 11:51:55 -07:00
Jonathan Wren
97f8a4751e
change pinned label to a super cool emoji ⭐ ️
2020-04-10 11:51:55 -07:00
Jonathan Wren
14b7fcc1fc
move stablebot back up to 60 days now that backlog is a bit more cleared out
2020-04-10 11:51:55 -07:00
Jonathan Wren
7c5ea2f5e5
reduce the number of days an issue can be open with no activity before marked stale
...
We will increase this again later, but we want to clean out the backlog of old issues
sooner, if possible. This will allow us to do that.
2020-04-10 11:51:55 -07:00
Jonathan Wren
98e86a168d
Update stalebot config now that the backlog is better tagged
2020-04-10 11:51:55 -07:00
Manuel Ebert
b7e077be68
Moving from sphinx to mkdocs
...
Cleaning up docs
Lighter side bar
Landing page refresh
Add JSON-LD and semantic tags
2020-04-10 11:51:55 -07:00
Micah Jerome Ellison
3a72313d06
Updating Python version and jrnl version for v2.0-rc3
2020-04-10 11:51:55 -07:00
Micah Jerome Ellison
f37f82f782
[GH-614] resolving issues around unreadable dates and unparsed dates
2020-04-10 11:51:55 -07:00
Jonathan Wren
e3d36645d9
[GH-610] Fix for old crypto module ( #621 )
2020-04-10 11:51:55 -07:00
Jonathan Wren
b66fbb1658
[GH-607] Add stalebot config
2020-04-10 11:51:55 -07:00
Micah Jerome Ellison
57f6f2c3d7
[GH-605] pointing to a more comprehensive GitHub issue re DayOne
2020-04-10 11:51:55 -07:00
Micah Jerome Ellison
20e0daadf5
[GH-605] mentioning lack of Day One support and relevant history in readme
2020-04-10 11:51:55 -07:00
Micah Jerome Ellison
e563a94456
[GH-600] updating Travis build badge and restoring pypi badges
2020-04-10 11:51:55 -07:00
Jonathan Wren
4ad554fe80
[GH-602] Add a code of conduct file (rather than adding to contributing)
2020-04-10 11:51:55 -07:00
Micah Jerome Ellison
1e0920eff0
[GH-598] Changing references from jrnl-plus back to jrnl and ensuring the URLs are valid (except build badge)
2020-04-10 11:51:55 -07:00
Jonathan Wren
20c6010621
update contributing file
2020-04-10 11:51:55 -07:00
Micah Jerome Ellison
38b1bcbc4d
[GH-1] updating readme to mention fork, instability
...
[GH-1] adding build badge back in
[GH-1] fussing with author text
2020-04-10 11:51:55 -07:00
Jonathan Wren
d3b7819bc1
[GH-3] update build badges
2020-04-10 11:51:55 -07:00
Micah Jerome Ellison
ccf0b7e039
#6 allowing template interpreter to interpret common Python commands
2020-04-10 11:51:55 -07:00
Micah Jerome Ellison
b56026d989
#5 Removing DayOne tests
2020-04-10 11:51:55 -07:00
Jonathan Wren
716ad98f97
update python version for ci
2020-04-10 11:51:55 -07:00
Jonathan Wren
13631b9a68
Fix issue #584 YAMLLoadWarning ( #585 )
2020-04-10 11:51:55 -07:00
hoclun-rigsep
6826f07b6e
Use shlex to parse editor commandline as per 2.0-rc1 ( #556 )
2018-08-16 15:16:29 -07:00
Emma Humphries
240fb883cc
Add instructions for VS Code ( #544 )
2018-06-26 11:28:23 -07:00
Jenny Li
9ec6569628
minor typo fixes ( #515 )
2018-02-16 14:35:47 -08:00
Radomír Bosák
d6db0c1549
Remove --use-mirrors switch from travis setup ( #477 )
...
The --use-mirrors pip switch does not work since pip 7.0.0. This caused
travis builds to fail.
This commit removes the --use-mirrors switch.
2017-03-10 09:47:43 -08:00
Radomír Bosák
8fe8e00e1b
Catch keyboard interrupt when opening journal ( #476 )
...
If the journal is encrypted, jrnl asks for a password using the
getpass.getpass function. If user presses the keyboard interrupt (e.g.
ctrl+c) during the password prompt, jrnl crashes and prints a stack
trace. This however is not very user friendly.
This commit adds a check for KeyboardInterrupt Exception and prints a
message whenever this exception occurs and exits. Stack is no longer
printed.
Fixes #450
2017-03-10 08:54:02 -08:00
Radomír Bosák
ca2d9f072f
Fix python2 error in template_explorer.py ( #471 )
...
If template_explorer.py was imported in python2, it would fail because
it uses unicode_literals which would ultimately cause passing an unicode
string as the first argument to the 'type' built-in function.
This commit fixes this by converting the unicode to string before it is
passed to the 'type' function.
Fixes #456
2017-03-09 11:59:03 -08:00
Radomír Bosák
095369f705
Fix behave tests by adding asteval dependency ( #469 )
2017-03-09 11:56:44 -08:00
Manuel Ebert
549a3e9d8f
Clean up
2016-08-19 23:23:14 +00:00
Manuel Ebert
60a955de20
Template exporting FTW
2016-08-19 23:20:31 +00:00
Manuel Ebert
f4dfecb62f
Fix JSON export
2016-08-19 21:44:12 +00:00
Manuel Ebert
6a53da5efd
Indent character optional
2016-08-19 21:44:01 +00:00
Manuel Ebert
bdc9dc598d
Fix Keyring tests
2016-08-19 21:43:27 +00:00
Manuel Ebert
69fc08f6f3
Upgrade to cryptography 1.4
2016-08-17 13:41:54 +00:00
Manuel Ebert
e7b8158d22
Update Cryptography
...
Fixes SSL issues described in
https://github.com/pyca/cryptography/issues/2750
2016-08-16 11:00:08 +02:00
Manuel Ebert
85934c1980
Exports
2016-07-17 13:35:35 -07:00
Philip Douglass
ba05411a80
User defined indent character ( #419 )
...
Make indent character configurable.
2016-04-15 23:00:49 -07:00
Manuel Ebert
dbf912c661
Merge pull request #417 from philipsd6/2.0-strip_entry_body
...
Fully strip title and body after SENTENCE_SPLITTER search
2016-04-07 13:15:12 -07:00
Manuel Ebert
4e153c6e09
Merge pull request #420 from philipsd6/2.0-better_textwrap
...
Clean up text wrapping once and for all --- Please!
2016-04-07 13:13:54 -07:00
Philip Douglass
b2147d53c5
Fully strip title and body after SENTENCE_SPLITTER search
2016-04-07 14:31:16 -04:00
Philip Douglass
eec009fd18
Clean up text wrapping once and for all
2016-04-07 14:29:28 -04:00