Hello everyone!
I have been working on my own Kanban program for offline small projects and I would like people to try/test it and hopefully enjoy it. It is open source and pay what you can for the precompiled version. So you can use it for free or give money to support the development!
You can get it for Mac and Linux here:
If you want to compile it yourself or criticize my coding of the project then you can look here:
Sorry to the Windows users out there as Windows was having so many issues that I took it down until I can fix it. Windows canât draw the cards correctly the way it is implemented.
Are you on an Apple device? I am on Linux and was able to build for all platforms. Not sure if there are extra requirements when building on Apple. I donât have the hardware to test though Xojo support was able to do Apple when I asked them about my Windows issues. But I donât think they built it just debug.
Using a URL and then replacing some characters is not a good practice. In windows you will end with an invalid path and this function is going to crash:
Sub ReadFile(filePath as string)
Var f As FolderItem= New FolderItem(filePath)
Var t As TextInputStream
Var contents As String
If f <> Nil Then
t = TextInputStream.Open(f)
t.Encoding = Encodings.UTF8 //specify encoding of input stream
contents = t.ReadAll
t.Close
Return contents
End If
return ""
End Sub
New FolderItem throus an exception instead of just be Nil. Maybe changing the URL por a NativePath?
xojo sucks having overlapping controls but, why do you have 2 subclased canvas inside a container if you can draw directly on the container??? With that and refreshing the main windows and the lines in the RepositionCards, it works ok.
All I can say is that itâs the first Xojo project Iâve ever done, Iâm usually Java and Python SQL apps at work. I made it the way it was making sense and working!
Also yes if you were to share with me I would update and credit you! Up to you though. Also thank you for the advice and looking into it!