Skip to content

Commit

Permalink
merged develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Torkus committed Mar 6, 2023
2 parents 4e0d052 + e012409 commit 4d9575a
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 7 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

* characters in multi-line messages in the notice logger no longer get their descenders ('y', 'g', 'p', etc) truncated.
* ignored addons in the addon detail pane now display mutual dependencies (if any).

### Removed

## 6.0.0 - 2022-11-10
Expand Down
8 changes: 3 additions & 5 deletions TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ see CHANGELOG.md for a more formal list of changes by release
- embedded an older, smaller, lighter fontawesome and switched the glyphs
- done

* log pane, bug, the text 'catalogue' is being truncated in multi-line messages
- see screenshot Screenshot at 2022-09-24 08-56-35.png

* dark theme, 'wow' column text is black on black for some reason
- done

Expand All @@ -32,11 +35,6 @@ see CHANGELOG.md for a more formal list of changes by release
- how about a shallow clone?
- just the files are cloned to a directory


* log pane, bug, the text 'catalogue' is being truncated in multi-line messages
- see screenshot Screenshot at 2022-09-24 08-56-35.png


## todo bucket (no particular order)

* wowinterface, fetch addon data from secondary source
Expand Down
13 changes: 11 additions & 2 deletions src/strongbox/jfx.clj
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,10 @@
{:-fx-alignment "center"}

"#message.column-header .label"
{:-fx-alignment "center-left"}}
{:-fx-alignment "center-left"}

".table-row-cell .message-text"
{:-fx-fill "-fx-text-background-color"}}

;;
;; notice-logger-nav
Expand Down Expand Up @@ -1798,7 +1801,13 @@
column-list [{:id "source" :text "source" :pref-width source-width :max-width source-width :min-width source-width :cell-value-factory source-label}
{:id "level" :text "level" :max-width 80 :cell-value-factory (comp name :level)}
{:id "time" :text "time" :max-width 100 :cell-value-factory :time}
{:id "message" :text "message" :pref-width 500 :cell-value-factory :message}]
{:id "message" :text "message" :pref-width 500
:cell-factory {:fx/cell-type :table-cell
:describe (fn [row]
{:graphic {:fx/type :text
:style-class ["message-text"]
:text (get row :message "")}})}
:cell-value-factory identity}]

log-level-list [:debug :info :warn :error] ;; :report] ;; 'reports' won't be interesting, no need to filter by them right now.
log-level-list (if-not (contains? level-occurances :debug)
Expand Down

0 comments on commit 4d9575a

Please sign in to comment.