From 8c0c2303801fa879c8d8991262da2cfd72433635 Mon Sep 17 00:00:00 2001 From: James Date: Wed, 8 Aug 2018 20:50:36 +1000 Subject: [PATCH] Update README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 573dd6b..06b2456 100644 --- a/README.md +++ b/README.md @@ -8,11 +8,11 @@ This is still a heavy work in progress 🚧 but expect some regular updates over The challenges going forward are: -~~- styling the text, especially around differentiating the portion of the quote which represents the time (this would be easy on the web, but I don't think one can simply bold text in the middle of a string drawn to an `NSView` 🧐).~~ -~~- resizing the text based on the amount, and wrapping text to a new line where it makes sense.~~ -- reworking the data structure used to store the quotes (thinking a dictionary 📖 would be good, where the keys are the time and the values are the array of associated quotes; this would give us O(1) access times and an easy way to randomise a quote if we have multiple to choose from. -- accounting for different screen sizes (currently works on a 15" Retina display or up, set to a 1650x1080 resolution equivalent). -- adding more themes and customisable styling. +- [x] styling the text, especially around differentiating the portion of the quote which represents the time (this would be easy on the web, but I don't think one can simply bold text in the middle of a string drawn to an `NSView` 🧐). +- [x] resizing the text based on the amount, and wrapping text to a new line where it makes sense. +- [ ] reworking the data structure used to store the quotes (thinking a dictionary 📖 would be good, where the keys are the time and the values are the array of associated quotes; this would give us O(1) access times and an easy way to randomise a quote if we have multiple to choose from. +- [ ] accounting for different screen sizes (currently works on a 15" Retina display or up, set to a 1650x1080 resolution equivalent). +- [ ] adding more themes and customisable styling. ~~I've only been at it for a day, but it's been a super fun learning exercise and a great excuse to get back into Swift 😃~~