-
Notifications
You must be signed in to change notification settings - Fork 935
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 save, load to local file system #163
Comments
I've implemented this in #172, the UI isn't pretty but it's working. Regards, Martinus |
It looks pretty good. Currently it saves/loads: {
"tasks": [
{
"id": -1, I wonder if it should save/load: {
"project": {
"tasks": [{
"id": -1, Basically adding a top level "project" object. I think this would make it compatible with the server-generated JSON (it 's been a while since I've looked at this.) Perhaps @robicch can comment? |
This is possible in general, but the problem is how to check a single project integrity while editing. |
I was thinking not so much about multiple projects but more about server compatibility, just to enable a workflow like:
|
Hi Roberto So what do i need to do to save the project on the server? I will actually only ever work in one project so i don't even need the option to load other files. |
@alkis01 unfortunately, to save/load to/from the server, you need to implement the functionality yourself, because this project only have the client side code. Regards, Martinus |
It would be nice to be able to save the project to the local file system, and to load from the local file system. The functions could be invoked by the user clicking "Save File" and "Open File" buttons (next to the current "Save" and "Clear" buttons)
The text was updated successfully, but these errors were encountered: