Ecosyste.ms: Timeline

Browse the timeline of events for every public repo on GitHub. Data updated hourly from GH Archive.

Jericho

Jericho created a review on a pull request on Jericho/ZoomNet

View on GitHub

Jericho created a review comment on a pull request on Jericho/ZoomNet
Thanks for fixing the XML comments. Probably a copy/paste issue on my part.

View on GitHub

Jericho created a review comment on a pull request on Jericho/ZoomNet
```suggestion /// The call forwarding route settings. It's only required for the <see cref="CallForwardingSubsettings"/>. ``` CS1574 XML comment has cref attribute 'CallForwardingSubSettings'...

View on GitHub

Jericho created a review comment on a pull request on Jericho/ZoomNet
Is there a reason to perform validation here? Our `StringEnumConverter` already validates enum values so you should be able to simply : ```csharp var data = new JsonObject { { "settings",...

View on GitHub

Jericho created a review comment on a pull request on Jericho/ZoomNet
```suggestion /// - The <see cref="BusyOnAnotherCallAction"/> is set to 1 (Forward to a voicemail).(Only applicable to the User). ``` Satisfy SA1629: Documentation text should end with a per...

View on GitHub

Jericho created a review on a pull request on Jericho/ZoomNet
Thank you for your submission. I know how tedious it can be to add all the model classes so I am impress how thorough you were. Especially with the very detailed XML comments. I am looking forwa...

View on GitHub

Jericho created a review on a pull request on Jericho/ZoomNet
Thank you for your submission. I know how tedious it can be to add all the model classes so I am impress how thorough you were. Especially with the very detailed XML comments. I am looking forwa...

View on GitHub

Jericho created a comment on an issue on Jericho/ZoomNet
@cropter123 You and I worked on #354 a few months ago because you were receiving values in the `device` node that did not correspond to the documented possible values which caused ZoomNet to throw ...

View on GitHub

Jericho pushed 2 commits to develop Jericho/Picton

View on GitHub

Jericho pushed 3 commits to develop Jericho/Picton.Messaging

View on GitHub

Jericho created a comment on an issue on Jericho/ZoomNet
You're welcome. I raised #374 to warn developers about the breaking changes and guide them to resolution. Hopefully my instructions are clear.

View on GitHub

Jericho pushed 1 commit to develop Jericho/ZoomNet

View on GitHub

Jericho created a comment on an issue on Jericho/ZoomNet
<!-- GitReleaseManager release comment --> :tada: This issue has been resolved in version 0.83.0 :tada: The release is available on: - [GitHub Release](https://github.com/jericho/ZoomNet/releases...

View on GitHub

Jericho created a comment on an issue on Jericho/ZoomNet
<!-- GitReleaseManager release comment --> :tada: This issue has been resolved in version 0.83.0 :tada: The release is available on: - [GitHub Release](https://github.com/jericho/ZoomNet/releases...

View on GitHub

Jericho created a comment on an issue on Jericho/ZoomNet
<!-- GitReleaseManager release comment --> :tada: This issue has been resolved in version 0.83.0 :tada: The release is available on: - [GitHub Release](https://github.com/jericho/ZoomNet/releases...

View on GitHub

Jericho published a release on Jericho/ZoomNet
0.83.0
As part of this release we had [3 issues](https://github.com/Jericho/ZoomNet/milestone/97?closed=1) closed. __Breaking Changes__ See #374 for a discussion of the breaking changes listed below...
Jericho created a tag on Jericho/ZoomNet

0.83.0 - .NET client library for the Zoom.us REST API v2

Jericho pushed 13 commits to main Jericho/ZoomNet
  • Merge branch 'main' into develop 9b7c1ea
  • Sort the properties on IZoomClient and ZoomClient alphabetically 8a180f1
  • Add two new MeetingListType values Resolves #372 4963090
  • Fix Meetings integration test. 650d260
  • Added default_password param to CreateMeeting APIs (#280) * added default_password * Fixed interface * Update ... 0c9addb
  • Use enums rather than hardcoded values 669f238
  • Add the preSchedule parameter to CreateScheduledMeetingAsync and CreateRecurringMeetingAsync Resolves #373 a973dc9
  • Formatting 8a8d689
  • Move the generatePassword towards the end of the method signature. I am hoping this will reduce the likelihood of de... 8223ba7
  • XML comment mus end with a period e1b9958
  • Fix integration test f493911
  • Refresh build script ed13511
  • Merge branch 'release/0.83.0' ca7a7fc

View on GitHub

Jericho pushed 2 commits to develop Jericho/ZoomNet
  • Merge branch 'release/0.83.0' ca7a7fc
  • Merge branch 'main' into develop 417ea84

View on GitHub

Jericho pushed 3 commits to develop Jericho/ZoomNet

View on GitHub

Jericho opened an issue on Jericho/ZoomNet
Breaking changes in 0.83.0
As a result of breaking changes introduced in 0.83.0 (see #281 and #373 ), there's a good chance you will get a compile time error if you invoke `Meetings.CreateInstantMeetingAsync`, `Meetings.Crea...
Jericho pushed 1 commit to main Jericho/resources

View on GitHub

Jericho closed an issue on Jericho/ZoomNet
Additional parameter when creating a meeting: `pre_schedule`
It appears that Zoom has added a new parameter some time ago which is currently not available in the ZoomNet library: - `pre_schedule`: Whether to create a prescheduled meeting via the [GSuite a...
Jericho pushed 4 commits to develop Jericho/ZoomNet
  • Use enums rather than hardcoded values 669f238
  • Add the preSchedule parameter to CreateScheduledMeetingAsync and CreateRecurringMeetingAsync Resolves #373 a973dc9
  • Formatting 8a8d689
  • Move the generatePassword towards the end of the method signature. I am hoping this will reduce the likelihood of de... 8223ba7

View on GitHub

Jericho pushed 1 commit to develop Jericho/Picton

View on GitHub

Jericho closed an issue on Jericho/ZoomNet
Allow for creating a meeting using a default password
When creating a meeting there are 3 security options, and you must pick at least one. If you use the API to create a meeting these security options don't match the API 1-to-1, but rather you nee...
Jericho pushed 1 commit to develop Jericho/ZoomNet
  • Added default_password param to CreateMeeting APIs (#280) * added default_password * Fixed interface * Update ... 0c9addb

View on GitHub

Jericho closed a pull request on Jericho/ZoomNet
Added default_password param to CreateMeeting APIs
If you want to make a meeting and have zoom pick a password you need to send this param. I've tested it and get back passwords in the JoinUrl. https://developers.zoom.us/docs/api/rest/reference/...
Jericho pushed 1 commit to develop mxswd/ZoomNet
  • Throw an exception if developer specifies a custom password and also requests a randomly generated password. 8b33228

View on GitHub

Jericho created a review comment on a pull request on Jericho/ZoomNet
Parameter added to the `CreateInstantMeetingAsync ` method

View on GitHub

Load more