joplin 1.2.1 → 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (7) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +1 -1
  3. data/Makefile +1 -0
  4. data/bin/jp +912 -71
  5. data/lib/joplin/version.rb +1 -1
  6. data/readme.md +32 -2
  7. metadata +1 -1
@@ -1,3 +1,3 @@
1
1
  module Joplin
2
- VERSION = "1.2.1"
2
+ VERSION = "1.3.0"
3
3
  end
data/readme.md CHANGED
@@ -59,6 +59,7 @@ Commands:
59
59
  jp cal [DATE] # Show calendar
60
60
  jp cat TARGET... # Display note content
61
61
  jp edit TARGET # Edit a note or tag stack
62
+ jp export PATH # Export notes as Markdown with front matter
62
63
  jp flashback [DATE] # Show notes from this day in previous years
63
64
  jp help [COMMAND] # Describe available commands or one specific command
64
65
  jp info # Show JP and Joplin profile information
@@ -68,19 +69,48 @@ Commands:
68
69
  jp ls [TARGET] # List notebooks, notes, or tags
69
70
  jp mv SOURCE DESTINATION # Rename a notebook or tag
70
71
  jp random # Display a random note
71
- jp rm TARGET # Move a note to Trash or recursively remove a notebook or tag
72
+ jp rm TARGET # Move a note or notebook to Trash, or recursively remove a tag
72
73
  jp search QUERY # Search notes for text
73
74
  jp settings SUBCOMMAND # Manage settings
74
75
  jp test # Run tests
75
- jp trash SUBCOMMAND # Manage trashed notes
76
+ jp trash SUBCOMMAND # Manage trashed notes and notebooks
76
77
  jp tree # Print a tree of all available commands
77
78
  jp version # Show version
78
79
  ```
79
80
 
81
+ `jp export PATH` preserves the notebook hierarchy, writes note metadata as YAML
82
+ front matter, copies referenced resources, and rewrites resource links. Pass
83
+ `--no-resources` (`-N`) to export Markdown without copying resources.
84
+
85
+ On macOS, new notes and journal entries include the current coordinates when
86
+ `CoreLocationCLI` is installed and location access is allowed. Set
87
+ `CORE_LOCATION_CLI` to an executable path to use a non-default installation, or
88
+ to an empty string to disable location lookup.
89
+
90
+ Triggered reminders for incomplete to-dos are shown before normal command
91
+ output. Raw note output and shell completion do not include these warnings.
92
+
80
93
  ### joplin
81
94
 
82
95
  Commands that interact with Joplin via the API.
83
96
 
97
+ ```text
98
+ Commands:
99
+ joplin build # build a note from a note containing references
100
+ joplin clean # clean unused resources
101
+ joplin epub # build a note from a note (help build), write the note, and create an epub
102
+ joplin help [COMMAND] # Describe available commands or one specific command
103
+ joplin nb2n # concate all notes in a notebook to one note. Possible PDF export
104
+ joplin resource # get resource for note
105
+ joplin stats # statistics on joplin data
106
+ joplin tree # Print a tree of all available commands
107
+ joplin version # get version of program
108
+ joplin write # write a note
109
+
110
+ Options:
111
+ [--token=TOKEN]
112
+ ```
113
+
84
114
  ### joplin nb2n --token <yourtoken> 'notebook name'
85
115
 
86
116
  Will take a notebook and concatenate all notes into one for easy export to PDF
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: joplin
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.1
4
+ version: 1.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Bretoi