Barry "BarmyArmy" Wimlett

Results 12 issues of Barry "BarmyArmy" Wimlett

This project compiles pretty much straight out the door for .netSTandard and .netCore 3.0 All that needs doing is to re-create the prjects files in the new format ( which...

For a user with alot of channels I am getting an internal error about casting TLDialogSlices to TDlialogs when doing the usual, var dialogs = await client.GetUserDialogsAsync() as TLDialogs; Now...

During debugging I've noticed that I always get an AUTH_RESTART message when I re-run the application if I authenticated on the last run. There is no way to actively disconnect/logout...

I want to run a transform on the solution level nuget.config file, dependent on the build configurration. Is this possible with slowcheetah ? It doesn't show the AddTransform context menu...

because I'm an idiot

This PR attempts to add some consistency to how events with secondary json files are handled. I started this because I wanted to access the navroute.json file, however this snowballed....

If you create two journalWatchers then they will recieve each others events. Using a shared static list of events means two independent journalwatchers end up recieving each other events. In...

Handle the journal event telling us that a new navroute has been written to NavRoute.json Ideally internally consume the journalevent and then parse the json file and trhow/fire a new...

This strikes me as a classic 'has a' vs 'Is a' design issue. Having checked through the code the only thing that "breaks" is that the void Parse(string line) method...

It would be useful for consumers if the JournalWatcher had an interface it implimented to allow it to be faked/mocked or susbstiuted using InversionOfControl.