Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
docelic committed Jan 6, 2023
1 parent e67c113 commit 3882fc0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion shard.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: tput
version: 1.0.5
version: 1.0.6

authors:
- Davor Ocelic <[email protected]>
Expand Down
8 changes: 4 additions & 4 deletions src/tput.cr
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ require "./tput/emulator"
# In all of the examples above, spaces exist just for clarity and are not part of actual escape
# sequences. For example, in "ESC [" or " Ps ; Ps ;" there are no actual spaces.
class Tput
VERSION = "1.0.5"
VERSION = "1.0.6"
include Namespace
include JSON::Serializable
include Crystallabs::Helpers::Logging
Expand All @@ -61,13 +61,13 @@ class Tput
DEFAULT_SCREEN_SIZE = Size.new 80, 24 # Opinions vary: 24, 25, 27

@[JSON::Field(ignore: true)]
property input : IO
property input : IO::FileDescriptor | IO::Memory

@[JSON::Field(ignore: true)]
property output : IO
property output : IO::FileDescriptor | IO::Memory

@[JSON::Field(ignore: true)]
property error : IO::FileDescriptor
property error : IO::FileDescriptor | IO::Memory

@[JSON::Field(ignore: true)]
@mode : LibC::Termios? = nil
Expand Down

0 comments on commit 3882fc0

Please sign in to comment.