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 # Timelines adds windows of feeds. You can customize the number of feeds, what
# they should show and the key to activate them. # they should show and the key to activate them.
# #
# Available timelines: home, direct, local, federated, special-all, # Available timelines: home, direct, local, federated, special, bookmarks,
# special-boosts, special-replies, bookmarks, saved, favorited, notifications, # saved, favorited, notifications, lists, tag
# lists, tag
# #
# The ones named special-* are the home timeline with only boosts and/or # The one named special are the home timeline with only boosts and/or replies.
# replies. All contains both, -boosts only boosts and -replies only replies.
# #
# Tag is special as you need to add the tag after, see the example below. # 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 # Timelines adds windows of feeds. You can customize the number of feeds, what
# they should show and the key to activate them. # they should show and the key to activate them.
# #
# Available timelines: home, direct, local, federated, special-all, # Available timelines: home, direct, local, federated, special, bookmarks,
# special-boosts, special-replies, bookmarks, saved, favorited, notifications, # saved, favorited, notifications, lists, tag
# lists, tag
# #
# The ones named special-* are the home timeline with only boosts and/or # The one named special are the home timeline with only boosts and/or replies.
# replies. All contains both, -boosts only boosts and -replies only replies.
# #
# Tag is special as you need to add the tag after, see the example below. # 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" "github.com/rivo/tview"
) )
const version = "1.0.27" const version = "1.0.28"
func main() { func main() {
util.SetTerminalTitle("tut") util.SetTerminalTitle("tut")

Loading…
Cancel
Save