Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
Authors of Eggdrop
Last revised: July 27, 2010

------------------------------------------------------------------------------

Expand Down Expand Up @@ -97,7 +96,12 @@ versions 1.3.24i-1.3.28, 1.4.x, 1.5.x, 1.6.x and 1.8.x.
Cizzle, Geo, mortmann, pseudo, simple, thommey

1.9:
Cizzle, Geo, mortmann, thommey
bryand, Cizzle, CrazyCat, dereckson, eryg-kai, Geo, mortmann, PeGaSuS,
slyngshede, thommey

1.10
CrazyCat, DasBrain, Geo, iamnimnul, Lord255, MeNearly, mortmann, PeGaSuS,
simple, thommey, ZarTek
Comment on lines +99 to +104
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This section is generally more for core contributors, not one-time contributors (that's the purpose of THANKS below). I think we need to pare this down a bit

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

feel free to edit to your liking. and ill try to keep this in mind for next time. tho' i only added ppl that created PRs, not the additional ones that opened Issues.


See also: THANKS, doc/Versions, doc/Changes

Expand Down
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ Git Development Snapshot

To clone the repository, simply type:

git clone https://github.com/eggheads/eggdrop.git
git clone https://github.com/eggheads/eggdrop.git

Otherwise, you can download the development snapshot as a tar archive
from:
Expand Down
10 changes: 7 additions & 3 deletions THANKS
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
Eggdrop Developers and Contributors
Last revised: December 21, 2018

------------------------------------------------------------------------------

Expand Down Expand Up @@ -50,7 +49,7 @@ Q [email protected]
Robey Robey Pointer [email protected]
rfc [email protected]
rtc Peter 'Rattacresh' Backes [email protected]
simple Jonathan Rudolph [email protected]
simple Jonathan G. Rudolph [email protected]
stdarg [email protected]
Sup Teemu Hjelt [email protected]
SuperS Kevin Lamothe [email protected]
Expand Down Expand Up @@ -98,6 +97,7 @@ archon
argg Paul Anderson [email protected]
Arkadietz Kiril Georgiev [email protected]
Armand [email protected]
Arno
arthur2 arthur2
axel_v
aXs
Expand Down Expand Up @@ -207,6 +207,7 @@ debaser
demon
denali
DennisMV
dereckson
derrick
DFrank
Dicctr0s
Expand Down Expand Up @@ -296,6 +297,7 @@ hobb
hoopycat
Hue Truong
Hunger
iamnimnul
iceman
Igmar
illi
Expand Down Expand Up @@ -384,6 +386,7 @@ Mastr
MBroLad
mc Rico Gloeckner [email protected]
MC_8 Carl M. Gregory [email protected]
MeNearly
Melvan
metatron
mho [email protected]
Expand All @@ -409,7 +412,7 @@ Mo-Ize Guillaume Leclanche [email protected]
monkers
moonwolf
MORA
mortmann Michael Ortmann
mortmann Michael Ortmann [email protected]
Mr. Wizard
mrbond
mrBuG [email protected]
Expand Down Expand Up @@ -553,6 +556,7 @@ slix
sloot
slt
slug Chris Porter [email protected]
slyngshede
smash Patrick Ringl [email protected]
smok
softlord
Expand Down
2 changes: 1 addition & 1 deletion doc/sphinx_source/using/features.rst
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Eggdrop Features
* A file system where users can upload and download files in an
environment that looks and acts (for the most part) like a typical
UNIX system. It also has the ability to mark files and directories
as hidden -- unaccessible to people without certain user flags.
as hidden -- inaccessible to people without certain user flags.

* Console mode: you can view each channel through dcc chat or telnet,
selectively looking at mode changes, joins and parts, channel talk,
Expand Down
2 changes: 1 addition & 1 deletion src/mod/irc.mod/chan.c
Original file line number Diff line number Diff line change
Expand Up @@ -1300,7 +1300,7 @@ static int got353(char *from, char *msg)
}
/* The assumption here is the user enabled userhost-in-names because WHO
* is disabled. We remove the pending flag here because we'll never get a
* a WHO to do it
* WHO to do it.
*/
if (chan) {
chan->status |= CHAN_ACTIVE;
Expand Down
2 changes: 1 addition & 1 deletion src/mod/python.mod/scripts/greet.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def joinGreetOp(nick, host, handle, channel, **kwargs):
putmsg(channel, f"{nick} is an operator on this channel!")

# For now, unfortunately if Eggdrop is rehashed, previously existing binds will be duplicated.
# This is example code to check for previously-existbing binds after the script reloaded and
# This is example code to check for previously-existing binds after the script reloaded and
# delete them.
if 'GREET_BINDS' in globals():
for greetbind in GREET_BINDS:
Expand Down
Loading