roblox-trello v2.0.0 is being written right now. A new thread will be made after the first stable release. However, pre-release versions will be available in github prior to that.
More information available here:
v2 Project: Motivation and path
I created a OOP Trello API
I am actively developing and updating the API, so feel free to create a github issue if you want to report a bug, or request a feature.
The documentation can be found in the github’s wiki.
Here is an example of code:
local Trello = require(script.Parent.Trello.Main)
local myBoard = Trello:GetBoardByName("SomeBoard")
local newBoard = Trello.new("Board", "AnotherBoard")
for _,v in pairs (myBoard:GetLists()) do
v:SetName(v:GetId()) --sets the name of every list to their own id
v:Move(newBoard) --moves all lists to the specified board
end
Another example:
game.Players.PlayerAdded:Connect(function(Plr)
local MainBoard = Trello:GetBoardByName("Name of the board")
local Fcard = MainBoard:GetCardByName(tostring(Plr.UserId))
if Fcard then
local newText = Fcard:GetDesc()
--more code
end
end)
I hope you like it! And please remember to give feedback either through a reply, or through a github issue.
License
This is free and unencumbered software released into the public domain.
Anyone is free to copy, modify, publish, use, compile, sell, or
distribute this software, either in source code form or as a compiled
binary, for any purpose, commercial or non-commercial, and by any
means.
In jurisdictions that recognize copyright laws, the author or authors
of this software dedicate any and all copyright interest in the
software to the public domain. We make this dedication for the benefit
of the public at large and to the detriment of our heirs and
successors. We intend this dedication to be an overt act of
relinquishment in perpetuity of all present and future rights to this
software under copyright law.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
For more information, please refer to <http://unlicense.org>
Documentation
The documentation for the API can be found here:
Home · HypheX/roblox-trello Wiki · GitHub
The wiki always features the documentation for the latest version.
Change log
The change log and downloads can be found here:
Releases · HypheX/roblox-trello · GitHub