coltrane 3.1.2 → 3.1.3
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 +5 -0
- data/Gemfile.lock +1 -1
- data/README.md +4 -0
- data/exe/coltrane +8 -1
- data/lib/coltrane/version.rb +1 -1
- 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: ac0d46eac3d20a2fedcaa721b417747a825114751af354ee2006e216ed07c7f4
|
|
4
|
+
data.tar.gz: ec03e35092ad2006a41031755b91be814d0e7c7a211fe859a5714823ac7ce7e7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4e752677867bafe244e6fcb5df03957a16b1f35b2f2fce127778394197509afabd99a916444d27d90a50694e6dd11fab39cf78d4f17653aa9ef5f8d0b644bfe9
|
|
7
|
+
data.tar.gz: ceeee17fffeb15eb6e1cffbb8b9780152d68e7784f656894e543a579f9b195f83e8c8abd5cbf83933d9da2725d5e099d44dab821db46cdd786d5a8006d5ef285
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,11 @@
|
|
|
5
5
|
- Fix chords so that they generate a barre and a non-barre version and prevent
|
|
6
6
|
barre chords from picking notes before the barre.
|
|
7
7
|
|
|
8
|
+
## [3.1.3]
|
|
9
|
+
- Several fixes.
|
|
10
|
+
- Interactive mode
|
|
11
|
+
- It's all or nothing! If the terminal doesn't support true color, default to black and white and display message suggesting some cool terminal apps
|
|
12
|
+
|
|
8
13
|
## [3.0.0]
|
|
9
14
|
|
|
10
15
|
### Changes
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -237,6 +237,10 @@ iv-I-V-II in F Blues Major (2 notes out)
|
|
|
237
237
|
|
|
238
238
|
PS: Notice that vi-IV-I-V is the well known I-V-vi-IV progression, [used in a lot of songs](http://www.wikiwand.com/en/List_of_songs_containing_the_I–V–vi–IV_progression).
|
|
239
239
|
|
|
240
|
+
### Interactive mode (shell)
|
|
241
|
+
|
|
242
|
+
Simply type `coltrane` or `coltrane shell` to enable interactive mode. You can then run commands without typing `coltrane ` before, E.G.: `scale D harmonic minor`
|
|
243
|
+
|
|
240
244
|
## Installation
|
|
241
245
|
|
|
242
246
|
```bash
|
data/exe/coltrane
CHANGED
|
@@ -9,7 +9,14 @@ require 'color'
|
|
|
9
9
|
require 'pedrozath-mercenary'
|
|
10
10
|
require 'coltrane/commands'
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
if ENV['COLORTERM'] == 'truecolor'
|
|
13
|
+
Paint.mode = 0xFFFFFF
|
|
14
|
+
else
|
|
15
|
+
Paint.mode = 0
|
|
16
|
+
puts "This terminal doesn't seem to support true color. " \
|
|
17
|
+
"Try something like iTerm2 (for macOS), VTE or Konsole (for linux) or Hyper" \
|
|
18
|
+
" (for Windows) and you'll see the true magic!"
|
|
19
|
+
end
|
|
13
20
|
|
|
14
21
|
Mercenary.program(:Coltrane) do |p|
|
|
15
22
|
p.version Coltrane::VERSION
|
data/lib/coltrane/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: coltrane
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.1.
|
|
4
|
+
version: 3.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Pedro Maciel
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-04-
|
|
11
|
+
date: 2018-04-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tty-reader
|