diff --git a/app/app/styles/font.scss b/app/app/styles/font.scss index 7c6cce5b..5d5c9b5a 100644 --- a/app/app/styles/font.scss +++ b/app/app/styles/font.scss @@ -1,3 +1,8 @@ +html, html a { + -webkit-font-smoothing: antialiased; + text-shadow: 1px 1px 1px rgba(0,0,0,0.004); +} + .fixed-width-font { font-family: 'courier new', courier; } diff --git a/app/app/templates/components/section/trello/type-editor.hbs b/app/app/templates/components/section/trello/type-editor.hbs index f772b9ca..6ea76281 100644 --- a/app/app/templates/components/section/trello/type-editor.hbs +++ b/app/app/templates/components/section/trello/type-editor.hbs @@ -10,7 +10,7 @@
You have no team boards to share - personal boards are never shown.
{{else}} - +
diff --git a/core/section/trello/master_template.go b/core/section/trello/master_template.go index 5fb902a1..d3ce657f 100644 --- a/core/section/trello/master_template.go +++ b/core/section/trello/master_template.go @@ -15,13 +15,13 @@ const renderTemplate = ` {{if eq .Since ""}}

Preparing...

{{else}} -

Activity since {{.Since}} for boards: -{{range $idx, $brd := .Boards}}{{if gt $idx 0}}, {{end}}{{$brd.Board.OrgName}}/{{$brd.Board.Name}}{{end}}.

+ {{end}}` + - labelsTemplate + - boardsTemplate + - graphsTemplate + - membersTemplate + - archiveTemplate + + //labelsTemplate + + //boardsTemplate + + //graphsTemplate + + //membersTemplate + + //archiveTemplate + tradTemplate + `` diff --git a/core/section/trello/trello.go b/core/section/trello/trello.go index 4fa3e36f..d18931a1 100644 --- a/core/section/trello/trello.go +++ b/core/section/trello/trello.go @@ -351,7 +351,7 @@ func getBoards(config *trelloConfig) (boards []trelloBoard, err error) { goto foundID } } - boards[bx].Included = true // include boards by default + boards[bx].Included = false // don't include boards by default foundID: }