markdown_exec 2.0.0 → 2.0.1
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/Gemfile.lock +1 -1
- data/bin/tab_completion.sh +2 -2
- data/lib/input_sequencer.rb +1 -1
- data/lib/markdown_exec/version.rb +1 -1
- data/lib/menu.src.yml +2 -3
- data/lib/menu.yml +10 -11
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e4a008bd8a59ebf3683d4f8690f94caff7fe6f39566ad32cb4aff6063e7fc51b
|
4
|
+
data.tar.gz: d54bd5737ec0d943c8a67999aab02428cdf86bab5250cf9a4897b59f1fa69cee
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 43b989b43f34c9cc2c3cbb331461e0f215757f453839a2127b318a3f03d78825b29264bb9c2cce89dba40ad8debd606504b59e4eaaa3a0d737c36f4bdf9429ec
|
7
|
+
data.tar.gz: 48e8bf62d6582f4c78bdc89aa81decf74e15d348c01d50a7a8eb1147b27bc445bc1d73b13c918fbd33c72e568e94693afebf7192e7c87717791463fefc2f8ea6
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
data/bin/tab_completion.sh
CHANGED
@@ -13,7 +13,7 @@ __filedirs_all()
|
|
13
13
|
}
|
14
14
|
|
15
15
|
_mde_echo_version() {
|
16
|
-
echo "2.0.
|
16
|
+
echo "2.0.1"
|
17
17
|
}
|
18
18
|
|
19
19
|
_mde() {
|
@@ -186,4 +186,4 @@ _mde() {
|
|
186
186
|
|
187
187
|
complete -o filenames -o nospace -F _mde mde
|
188
188
|
# _mde_echo_version
|
189
|
-
# echo "Updated: 2024-02-
|
189
|
+
# echo "Updated: 2024-02-09 19:17:33 UTC"
|
data/lib/input_sequencer.rb
CHANGED
data/lib/menu.src.yml
CHANGED
@@ -219,7 +219,7 @@
|
|
219
219
|
end tell
|
220
220
|
|
221
221
|
set winHeight to (screenHeight * 2 / 3)
|
222
|
-
set winWidth to (screenWidth /
|
222
|
+
set winWidth to (screenWidth * 2 / 3)
|
223
223
|
set xoff to menubarHeight * %{batch_index}
|
224
224
|
set yoff to xoff mod (screenHeight - winHeight)
|
225
225
|
|
@@ -229,9 +229,8 @@
|
|
229
229
|
tell the current session
|
230
230
|
write text "s=\"%{script_filespec}\""
|
231
231
|
write text "o=\"%{output_filespec}\""
|
232
|
-
write text "echo -ne \"\\033]; %{started_at} - %{document_filename} - %{block_name} \\007\""
|
233
232
|
write text "cd \"%{home}\""
|
234
|
-
write text "
|
233
|
+
write text "echo -ne \"\\033]; %{started_at} - %{document_filename} - %{block_name} \\007\""
|
235
234
|
write text "\"$s\" | tee -a \"$o\""
|
236
235
|
end tell
|
237
236
|
end tell
|
data/lib/menu.yml
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# MDE - Markdown Executor (2.0.
|
1
|
+
# MDE - Markdown Executor (2.0.1)
|
2
2
|
---
|
3
3
|
- :description: Show current configuration values
|
4
4
|
:procname: show_config
|
@@ -183,16 +183,15 @@
|
|
183
183
|
tell\n tell application process \"Finder\"\n set {missing
|
184
184
|
value, menubarHeight} to the size of menu bar 1\n end tell\n end
|
185
185
|
tell\n\n set winHeight to (screenHeight * 2 / 3)\n set winWidth
|
186
|
-
to (screenWidth /
|
187
|
-
yoff to xoff mod (screenHeight - winHeight)\n \n create
|
188
|
-
default profile\n tell the first window\n set bounds
|
189
|
-
yoff, xoff + winWidth, yoff + winHeight}\n tell the current
|
190
|
-
\
|
191
|
-
text \"o=\\\"%{output_filespec}\\\"\"\n write text \"
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
| tee -a \\\"$o\\\"\"\n end tell\n end tell\n end tell'\n"
|
186
|
+
to (screenWidth * 2 / 3)\n set xoff to menubarHeight * %{batch_index}\n
|
187
|
+
\ set yoff to xoff mod (screenHeight - winHeight)\n \n create
|
188
|
+
window with default profile\n tell the first window\n set bounds
|
189
|
+
to {xoff, yoff, xoff + winWidth, yoff + winHeight}\n tell the current
|
190
|
+
session\n write text \"s=\\\"%{script_filespec}\\\"\"\n write
|
191
|
+
text \"o=\\\"%{output_filespec}\\\"\"\n write text \"cd \\\"%{home}\\\"\"\n
|
192
|
+
\ write text \"echo -ne \\\"\\\\033]; %{started_at} - %{document_filename}
|
193
|
+
- %{block_name} \\\\007\\\"\"\n write text \"\\\"$s\\\" | tee -a
|
194
|
+
\\\"$o\\\"\"\n end tell\n end tell\n end tell'\n"
|
196
195
|
:description: execute_command_format
|
197
196
|
:env_var: MDE_EXECUTE_COMMAND_FORMAT
|
198
197
|
:opt_name: execute_command_format
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: markdown_exec
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Fareed Stevenson
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-02-
|
11
|
+
date: 2024-02-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: clipboard
|