-
-
Notifications
You must be signed in to change notification settings - Fork 449
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
Add a new Channel API for experimental plugins feature #5141
Merged
Merged
Changes from 11 commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
f8c3e50
Fix lua::push<T>(L, T) for enums
Mm2PL 0b14de3
Add UserData utility classes
Mm2PL b1d1230
Refactor script to allow including more files into the meta
Mm2PL 4283d53
Allow adding other files into lua meta file
Mm2PL f53c64a
Add IWeakResource interface that has API methods expected from weak_ptr
Mm2PL e2b0f63
Create ChannelRef (c2.Channel)
Mm2PL 0d83361
Add type information about c2.Channel
Mm2PL dcbe07e
Nuke c2.system_msg and c2.send_msg
Mm2PL f008530
Update documentation for Channel
Mm2PL 59f13d2
changelog
Mm2PL b5d2df8
prettier more like uglier
Mm2PL 0373497
Add lua::push(std::optional<T>)
Mm2PL 5a5d36f
nit: use enable_if_t instead of _enable_if<...>::type
pajlada bee2f4d
Add support for retrieving Twitch-specific information about a channel
Mm2PL 406ca14
Update lua type documentation
Mm2PL 76dca5b
It's RoomModes
Mm2PL 377350b
Document not being able to use non-Twitch channels for now
Mm2PL 6562715
Hide C++ only methods from showing up in the meta.lua file
Mm2PL 2c6041b
Merge branch 'feature/lua-channel-api' of github.com:Chatterino/chatt…
Mm2PL 429dd14
Update documentation
Mm2PL dd17ad6
Ensure the smartptr behind UserData gets destroyed
Mm2PL 3c50de1
Merge branch 'master' of github.com:Chatterino/chatterino2 into featu…
Mm2PL e07cc69
Update type defs
Mm2PL 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
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
Oops, something went wrong.
Oops, something went wrong.
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.
Isn't there
send_message
andadd_system_message
missing, becausesend_msg
andsystem_msg
were removed a few lines below this class definition and in theplugin-meta.lua
there are those functions defined as member ofChannel
?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.
They are missing, thank you for reminding me of that