Joe Neuman

Results 36 comments of Joe Neuman

@joostlek I have changed this over to being a service with a response for the torrents. I still need to test if this works in a car as stated above,...

There are no new sensors here anymore, I have removed them and the torrent info is now only accessible via the service call, like you originally asked for. So it...

Though you may be right that it'd be worth still having new sensors to give the "count" of current total torrents as its state

Let me add sensors for now that don't have the torrent list attributes (for database size concerns). So it'll just have a state with the count of torrents, then we...

haha get some rest. This should be review now once you're ready for it

I don't think I can do stacked pull requests here, so I'll have to wait til we get this merged before I can submit the other pull request

I have also found a workaround, but its messy, tweaks a bit when the page is first opened, and requires work for each specific case. Here is a gif with...

If it is new content it could still fade in using UITableView beginUpdate and endUpdate, just like rearranging. This could also solve another problem. Right now when the datasource is...

@sestinj the website also still states to use the old shortcut. This issue was the only way I was able to figure out to do something different https://continue.dev/docs/how-to-use-continue

Tried a couple things ``` swift self.datasource = tempDatasource self.tableView.reloadData() ``` ``` swift self.tableView.beginUpdates() tempDatasource.addObject(posts[0] as Post) self.datasource = tempDatasource self.tableView.insertRowsAtIndexPaths([NSIndexPath(forRow: self.datasource.count-1, inSection: 0)], withRowAnimation: UITableViewRowAnimation.Fade) self.tableView.endUpdates() ``` tried wrapping...