Add Publishing #7 #16
Reference in New Issue
Block a user
No description provided.
Delete Branch "seba76/master"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
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 ofvar
with their explicit types?It appears with the null conditional ? that
topicAndHost
could be null resulting in aNullReferenceException
in 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
SubscribedTopicsByUnique
within this class@@ -0,0 +1,108 @@
namespace ntfysh_client
{
partial class SendMessageForm
Please 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.