-
Notifications
You must be signed in to change notification settings - Fork 181
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
Implement draft/message-redaction #2065
Merged
Merged
Changes from 4 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
2182b1d
Makefile: Add dependencies between targets
96c2440
Implement draft/message-redaction for channels
9fb2cff
Error when the given targetmsg does not exist
78cd9c9
gofmt
8039586
Add CanDelete enum type
cc11d0f
gofmt
f0c8989
Add support for PMs
e84a92d
Fix documentation of allow-individual-delete.
fd2f5b7
Remove 'TODO: add configurable fallback'
5707ed7
Revert "Makefile: Add dependencies between targets"
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,9 +7,9 @@ package caps | |
|
||
const ( | ||
// number of recognized capabilities: | ||
numCapabs = 32 | ||
numCapabs = 33 | ||
// length of the uint32 array that represents the bitset: | ||
bitsetLen = 1 | ||
bitsetLen = 2 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🎉 |
||
) | ||
|
||
const ( | ||
|
@@ -57,6 +57,10 @@ const ( | |
// https://gist.github.com/DanielOaks/8126122f74b26012a3de37db80e4e0c6 | ||
Languages Capability = iota | ||
|
||
// MessageRedaction is the proposed IRCv3 capability named "draft/message-redaction": | ||
// https://github.com/progval/ircv3-specifications/blob/redaction/extensions/message-redaction.md | ||
MessageRedaction Capability = iota | ||
|
||
// Multiline is the proposed IRCv3 capability named "draft/multiline": | ||
// https://github.com/ircv3/ircv3-specifications/pull/398 | ||
Multiline Capability = iota | ||
|
@@ -156,6 +160,7 @@ var ( | |
"draft/chathistory", | ||
"draft/event-playback", | ||
"draft/languages", | ||
"draft/message-redaction", | ||
"draft/multiline", | ||
"draft/persistence", | ||
"draft/pre-away", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd rather we didn't, this just slows down the build in the normal case?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it's only a stat() call...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(Make won't rebuild a target if a file with the same name already exists and is more recent than its dependencies)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh right, I normally don't use this feature of make (I normally do 100% phony targets). I would prefer if we didn't introduce it because I don't understand it very well :-|