You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I paste the contents of a blueprint into a file and save it, that file can't be decoded by this tool. I think the newline that almost all text editors add to the end of every text file is not being handled by your parser. POSIX compliant text editing tools require that text files end with a new line and will enforce it by default.
There is no requirement that something in the clipboard have a newline at the end, so using your tool with the clipboard works fine.
Also, base64 encoded stuff is often wrapped at 80 characters or less, and you may consider stripping newlines entirely before parsing a file if you don't already.
I'm not stuck or anything, and you don't owe me nothin' so if you don't want to make this change, that's fine with me. I just wanted to let you know about this.
The text was updated successfully, but these errors were encountered:
When I paste the contents of a blueprint into a file and save it, that file can't be decoded by this tool. I think the newline that almost all text editors add to the end of every text file is not being handled by your parser. POSIX compliant text editing tools require that text files end with a new line and will enforce it by default.
There is no requirement that something in the clipboard have a newline at the end, so using your tool with the clipboard works fine.
Also, base64 encoded stuff is often wrapped at 80 characters or less, and you may consider stripping newlines entirely before parsing a file if you don't already.
I'm not stuck or anything, and you don't owe me nothin' so if you don't want to make this change, that's fine with me. I just wanted to let you know about this.
The text was updated successfully, but these errors were encountered: