Browse Source

fix in config (#228)

pull/218/head 1.0.28
Rasmus Lindroth 3 years ago committed by GitHub
parent
commit
a3578f5126
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      config.example.ini
  2. 8
      config/default_config.go
  3. 2
      main.go

8
config.example.ini

@ -13,12 +13,10 @@ mouse-support=false
# Timelines adds windows of feeds. You can customize the number of feeds, what
# they should show and the key to activate them.
#
# Available timelines: home, direct, local, federated, special-all,
# special-boosts, special-replies, bookmarks, saved, favorited, notifications,
# lists, tag
# Available timelines: home, direct, local, federated, special, bookmarks,
# saved, favorited, notifications, lists, tag
#
# The ones named special-* are the home timeline with only boosts and/or
# replies. All contains both, -boosts only boosts and -replies only replies.
# The one named special are the home timeline with only boosts and/or replies.
#
# Tag is special as you need to add the tag after, see the example below.
#

8
config/default_config.go

@ -15,12 +15,10 @@ mouse-support=false
# Timelines adds windows of feeds. You can customize the number of feeds, what
# they should show and the key to activate them.
#
# Available timelines: home, direct, local, federated, special-all,
# special-boosts, special-replies, bookmarks, saved, favorited, notifications,
# lists, tag
# Available timelines: home, direct, local, federated, special, bookmarks,
# saved, favorited, notifications, lists, tag
#
# The ones named special-* are the home timeline with only boosts and/or
# replies. All contains both, -boosts only boosts and -replies only replies.
# The one named special are the home timeline with only boosts and/or replies.
#
# Tag is special as you need to add the tag after, see the example below.
#

2
main.go

@ -8,7 +8,7 @@ import (
"github.com/rivo/tview"
)
const version = "1.0.27"
const version = "1.0.28"
func main() {
util.SetTerminalTitle("tut")

Loading…
Cancel
Save