Skip to content

Commit

Permalink
Prepare version 0.3.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
abenson committed Sep 18, 2019
1 parent cbf10f8 commit c318c4d
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 19 deletions.
24 changes: 10 additions & 14 deletions minitalk.1
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
.\" Automatically generated by Pandoc 2.0.6
.\" Automatically generated by Pandoc 2.7.3
.\"
.TH "MINITALK" "1" "November 2018" "Minitalk User Manual" "Minitalk 0.2.5"
.TH "MINITALK" "1" "September 2019" "Minitalk User Manual" "Minitalk 0.3.0"
.hy
.SH NAME
.PP
minitalk \- small, simple chat system
minitalk - small, simple chat system
.SH SYNOPSIS
.PP
minitalk FILE [NICK]
Expand All @@ -13,30 +13,26 @@ minitalk FILE [NICK]
.B FILE
File to use as \[lq]room\[rq].
Must have read/write permissions.
.RS
.RE
.TP
.B NICK
Specify nick to use.
Default is current username.
.RS
.RE
.SH EXAMPLE
.PP
Join a room controlled via /var/chat/general.
.IP
.nf
\f[C]
$\ minitalk\ /var/chat/general
\f[]
$ minitalk /var/chat/general
\f[R]
.fi
.PP
The same, but specifying the username \[lq]admin\[rq].
.IP
.nf
\f[C]
$\ minitalk\ /var/chat/general\ admin
\f[]
$ minitalk /var/chat/general admin
\f[R]
.fi
.SH NOTES
.PP
Expand All @@ -47,15 +43,15 @@ Anyone that needs read from the room needs read access.
Anyone that has access to these \[lq]control\[rq] files can also inject
anything they want into the chat.
This truly is built on the honor system, and was designed around a
single purpose: multi\-user chat between trusted users on a single host.
single purpose: multi-user chat between trusted users on a single host.
.PP
Don't expect this to be secure.
Don\[cq]t expect this to be secure.
.SH AUTHORS
.PP
Andrew Benson.
.SH COPYRIGHT
.PP
Copyright © 2018 Andrew Benson.
Copyright \[co] 2019 Andrew Benson.
License: MIT
.SH AUTHORS
Andrew Benson.
6 changes: 3 additions & 3 deletions minitalk.1.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
% MINITALK(1) Minitalk User Manual | Minitalk 0.2.5
% MINITALK(1) Minitalk User Manual | Minitalk 0.3.0
% Andrew Benson
% November 2018
% September 2019

# NAME

Expand Down Expand Up @@ -42,4 +42,4 @@ Andrew Benson.

# COPYRIGHT

Copyright © 2018 Andrew Benson. License: MIT
Copyright © 2019 Andrew Benson. License: MIT
4 changes: 2 additions & 2 deletions minitalk.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
Copyright (c) 2018 Andrew Benson
Copyright (c) 2019 Andrew Benson
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand All @@ -24,7 +24,7 @@ SOFTWARE.

/* minichat - small chat system for multiple users on a UNIX-like host */

#define VERSION "0.2.5"
#define VERSION "0.3.0"

#include <stdio.h>
#include <stdlib.h>
Expand Down

0 comments on commit c318c4d

Please sign in to comment.