Skip to content

Commit

Permalink
Correct :added metadata for things added in 1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
hlship committed May 5, 2023
1 parent ebc7be6 commit e7fcbde
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.4.1
1.4.2
6 changes: 3 additions & 3 deletions src/io/aviso/ansi.clj
Original file line number Diff line number Diff line change
Expand Up @@ -137,15 +137,15 @@
~@(for [[font-name desc code meta]
[['bold "in bold" 1]
['plain "as plain (not bold or faint)" 22 {:added "1.4"}]
['faint "as faint (not bold or plain)" 2 {:added "1.5"}]
['faint "as faint (not bold or plain)" 2 {:added "1.4.1"}]
['italic "italicized" 3]
['roman "as romain (not italic)" 23 {:added "1.4"}]
['inverse "as inverse (foreground and background colors reversed)" 7]
['normal "as normal (not inverse)" 27 {:added "1.4"}]
['default-foreground "with the default foreground color" 39 {:added "1.4"}]
['default-background "with the default background color" 49 {:added "1.4"}]
['underlined "underlined" 4 {:added "1.5"}]
['not-underlined "not underlined" 24 {:added "1.5"}]]]
['underlined "underlined" 4 {:added "1.4.1"}]
['not-underlined "not underlined" 24 {:added "1.4.1"}]]]
`(do
(def-sgr-fn ~font-name ~meta ~desc ~code)
(def-sgr-const ~(str font-name "-font") ~meta ~desc ~code)))))
Expand Down
3 changes: 2 additions & 1 deletion src/io/aviso/exception.clj
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@
:omitted-frame ansi/white-font})

(def ^:dynamic *app-frame-names*
"Set of filters (belong to your applications) to create more visual clarity."
"Set of strings or regular expressions defining the application's namespaces, which allows
such namespaces to be highlighted in exception output."
nil)

(def ^:dynamic *fonts*
Expand Down

0 comments on commit e7fcbde

Please sign in to comment.