I've added simple dialog where you can sent message title and message text which you can use to publish notification. It is invoked by double clicking on topic or right-click and selecting menu item in Main form.
I've added simple dialog where you can sent message title and message text which you can use to publish notification. It is invoked by double clicking on topic or right-click and selecting menu item in Main form.

alexhorner
(Migrated from github.com)
left a comment
Copy Link
Copy Source
Hi there @seba76
I have provided a set of changes for you to review. Please don't hesitate to ask if you need further clarification on anything I have said.
Thanks for your contiribution!
Hi there @seba76
I have provided a set of changes for you to review. Please don't hesitate to ask if you need further clarification on anything I have said.
Thanks for your contiribution!
The rest of the project uses explicit type declarations instead of var. For consistency, please could you update all instances of var with their explicit types?
The rest of the project uses explicit type declarations instead of `var`. For consistency, please could you update all instances of `var` with their explicit types?
It appears with the null conditional ? that topicAndHost could be null resulting in a NullReferenceException in the following two lines should there be an issue. Please could you verify whether ToString()can return null, and if so, handle the condition with an error dialog box accordingly?
It appears with the null conditional ? that `topicAndHost` could be null resulting in a `NullReferenceException` in the following two lines should there be an issue. Please could you verify whether `ToString()`can return null, and if so, handle the condition with an error dialog box accordingly?
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
I've added simple dialog where you can sent message title and message text which you can use to publish notification. It is invoked by double clicking on topic or right-click and selecting menu item in Main form.

Hi there @seba76
I have provided a set of changes for you to review. Please don't hesitate to ask if you need further clarification on anything I have said.
Thanks for your contiribution!
@@ -147,0 +157,4 @@fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { exitToolStripMenuItem1, settingsToolStripMenuItem });fileToolStripMenuItem.Name = "fileToolStripMenuItem";fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);fileToolStripMenuItem.Text = "File";Nice-to-have: It'd be good if an icon was found from the VS Icon Pack and placed against this menu item the same as all other menu items
The rest of the project uses explicit type declarations instead of
var. For consistency, please could you update all instances ofvarwith their explicit types?It appears with the null conditional ? that
topicAndHostcould be null resulting in aNullReferenceExceptionin the following two lines should there be an issue. Please could you verify whetherToString()can return null, and if so, handle the condition with an error dialog box accordingly?Please handle the return value and return an error dialog box if we don't get a success response
This doesn't appear to handle credentials on a topic. You can retrieve the topic from
SubscribedTopicsByUniquewithin this class@@ -0,0 +1,108 @@namespace ntfysh_client{partial class SendMessageFormPlease add a title to the window so that it doesn't just say "SendMessageForm" in the title bar
View command line instructions
Checkout
From your project repository, check out a new branch and test the changes.