journal-cli 1.0.21 → 1.0.22

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 484b18a0188aa705a9941742377f52ac7314fd8ea0e29c01d078df8334368543
4
- data.tar.gz: 2c1b6036031cd9d9cabf3fdcafbf923c768730f6420ac1c031d2a9211901650c
3
+ metadata.gz: 1255e03e2644a0bb96f72622c8815595f41bec61e1add52529b697097f4b94f6
4
+ data.tar.gz: 613eca7fbaccd6536b3edd23da7160c337ad1bf7dc7dc509b41ddf85e788c478
5
5
  SHA512:
6
- metadata.gz: c0799f9b88143f38ca52b515de35453e2edbbd6b97325e1a0e0c9c4748014995ca15e3423be014b129234573daaca82d769ca16e0c541a3e8d4976492e9984db
7
- data.tar.gz: 5164b850be461d04c6a81f83c4b0ec3b278fffbabbf61b60926813e19ce1f89cd66310ed5913d62887839fe2c0c6734769bb93efd2fed37396b97f20eadeccaf
6
+ metadata.gz: 34c25cc5c7c076f47dfa2fedd6bd7434dc8b7268b2662cef74bdcabbd6fdbe99b1a3882ad4c129e6c5434b169fd0d5a377bbeef78207e993b026125339386a96
7
+ data.tar.gz: 3a1fccc6120ed77cc602a1448a9949b49aa42ea658d3c93d11de7d77aad9a6bc0e707ac125f0faaa93bad5bb3de2b921fe35f57afd1a112a01982ce5bc9b01b6
data/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ### 1.0.22
2
+
3
+ 2023-09-18 10:23
4
+
5
+ #### IMPROVED
6
+
7
+ - Removed colon from timestamp of individual entries to better work with Obsidian Sync
8
+
1
9
  ### 1.0.21
2
10
 
3
11
  2023-09-13 11:00
data/README.md CHANGED
@@ -32,7 +32,7 @@ $ brew install gum
32
32
  If you want to use Day One with Journal, you'll need to [install the Day One CLI](https://dayoneapp.com/guides/tips-and-tutorials/command-line-interface-cli/). It's just one command:
33
33
 
34
34
  ```
35
- sudo bash /Applications/Day\ One.app/Contents/Resources/install_cli.sh
35
+ $ sudo bash /Applications/Day\ One.app/Contents/Resources/install_cli.sh
36
36
  ```
37
37
 
38
38
  ## Configuration
@@ -121,7 +121,7 @@ module Journal
121
121
 
122
122
  FileUtils.mkdir_p(dir) unless File.directory?(dir)
123
123
  @date.localtime
124
- filename = @date.strftime('%Y-%m-%d_%H:%M.md')
124
+ filename = @date.strftime('%Y-%m-%d_%H%M.md')
125
125
  target = File.join(dir, filename)
126
126
  File.open(target, 'w') { |f| f.puts to_markdown(yaml: true, title: true) }
127
127
  puts "Saved new entry to #{target}"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Journal
4
- VERSION = '1.0.21'
4
+ VERSION = '1.0.22'
5
5
  end
data/src/_README.md CHANGED
@@ -35,7 +35,7 @@ $ brew install gum
35
35
  If you want to use Day One with Journal, you'll need to [install the Day One CLI](https://dayoneapp.com/guides/tips-and-tutorials/command-line-interface-cli/). It's just one command:
36
36
 
37
37
  ```
38
- sudo bash /Applications/Day\ One.app/Contents/Resources/install_cli.sh
38
+ $ sudo bash /Applications/Day\ One.app/Contents/Resources/install_cli.sh
39
39
  ```
40
40
 
41
41
  ## Configuration
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: journal-cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.21
4
+ version: 1.0.22
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brett Terpstra
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-09-13 00:00:00.000000000 Z
11
+ date: 2023-09-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tty-which