Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

max message size and header guards #5

Open
wants to merge 50 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
11ca73b
Port to libotr4
TingPing Dec 13, 2014
52be5df
Switch to autotools and remove old files
TingPing Dec 13, 2014
09f7e1d
Add new readme
TingPing Dec 13, 2014
29f46f6
Remove extra #endif
TingPing Dec 13, 2014
6b844d3
Mass reformat
TingPing Dec 13, 2014
b6c02dc
Add basic help message for /otr
TingPing Dec 13, 2014
5215f32
Fix unsafe string handling
TingPing Dec 13, 2014
d975730
Fix header include syntax
TingPing Dec 13, 2014
f6f252d
Don't use libgen.h
TingPing Dec 13, 2014
dd01a83
Remove extra fields from formats
TingPing Dec 13, 2014
d684c29
More unsafe string handling
TingPing Dec 13, 2014
7142362
Fix detecting if tab is a dialog
TingPing Dec 13, 2014
2f2114a
Use g_strsignal
TingPing Dec 13, 2014
2cbadab
Fix building as c89
TingPing Dec 13, 2014
fafcb6a
Improve makeformats.py
TingPing Dec 13, 2014
859b965
Start porting over old upstream changes
TingPing Dec 13, 2014
ed0ac5f
Add /otr start command
TingPing Dec 14, 2014
472df04
Include usage in readme
TingPing Dec 14, 2014
2845436
Add /otr authq command
TingPing Dec 14, 2014
e8f12f9
Remove check for PM context in hook_privmsg()
zeriam Dec 22, 2015
0c36a02
Remove dependency on gnome-common
TingPing Dec 22, 2015
326d159
Simplify context type code
TingPing Dec 22, 2015
6a7ce25
Still ignore incoming channel messages
TingPing Dec 23, 2015
13daf87
Fix sending messages to non-otr query
zeriam Dec 27, 2015
d6b1642
Improve help text
TingPing Dec 30, 2015
d2284e1
Mass warning cleanup
TingPing Feb 13, 2016
1348c4b
Build system cleanup
TingPing Feb 13, 2016
0c24d4e
Remove irssi references
TingPing Feb 13, 2016
9d4448a
Add editorconfig file
TingPing Feb 13, 2016
eae4c2f
Bump version
TingPing Feb 13, 2016
232aa7b
Fix generating formats
TingPing Feb 13, 2016
58db3e0
Fix typos discovered by codespell.
petterreinholdtsen Feb 18, 2016
b7d593c
Merge pull request #11 from petterreinholdtsen/fix-english-typos
TingPing Feb 18, 2016
14ec997
makeformats: Fix Python syntax
TingPing Feb 18, 2016
ffa471f
Check exit values from read() and write() when generating OTR keys.
petterreinholdtsen Feb 18, 2016
5fe6c93
Consistently include license headers
TingPing Feb 18, 2016
9cf5779
build: Print useful error when autoconf-archive missing
TingPing Feb 23, 2016
243efd2
Use network rather than server for account name
petterreinholdtsen May 20, 2016
12f8470
Ignore format-nonliteral error in newer GCC
TingPing May 20, 2016
b38b648
Bump version to 0.2.1
TingPing Aug 7, 2016
41fb576
Ignore format-nonliteral error in clang
wahjava Feb 5, 2017
2ef419e
Fix format error on some compilers
TingPing Apr 13, 2017
c27d6de
Bump version
TingPing Apr 13, 2017
a7a6016
add prototypes to fix -Werror=missing-prototypes
fridim Apr 25, 2017
d9ccf68
Port buildsystem to Meson
TingPing Sep 23, 2018
22d5495
Add metainfo file
TingPing Sep 23, 2018
3459088
fix and use enum lvls
cagney May 12, 2020
d874847
change <<enum lvls {...}>> to <<typedef enum {...} MessageLevel>>
cagney May 26, 2020
1b1e0bb
minor edits to Readme.md and application prompts (#34)
notmike-5 Dec 21, 2021
4ed3a35
max message size and header guards
notmike-5 Dec 23, 2021
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
6 changes: 6 additions & 0 deletions .clang-format
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
BasedOnStyle: Webkit
BreakBeforeBraces: Allman
UseTab: Always
TabWidth: 4
SpaceBeforeParens: Always
PointerAlignment: Right
8 changes: 8 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
root = true
[*]
end_of_line = lf
charset = utf-8
indent_style = tab
indent_size = 4
insert_final_newline = true
trim_trailing_whitespace = true
10 changes: 1 addition & 9 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1 @@
*.o
*.so
term.h
statusbar.h
mainwindows.h
.exrc
*.swp
cscope.files
cscope.out
/build/
285 changes: 0 additions & 285 deletions CMakeLists.txt

This file was deleted.

16 changes: 0 additions & 16 deletions ChangeLog

This file was deleted.

17 changes: 0 additions & 17 deletions HOWTO_PACKAGE

This file was deleted.

33 changes: 0 additions & 33 deletions INSTALL

This file was deleted.

7 changes: 0 additions & 7 deletions Packaging-DEB.cmake

This file was deleted.

Loading