Release schedule?

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
4 messages Options
Reply | Threaded
Open this post in threaded view
|

Release schedule?

MarkHamann
Hello,

I really want the fix for https://github.com/LibreCAD/LibreCAD/issues/1715 because I want to push my .dxf files to github and let people other than me use that file. The fix is sitting there waiting for the next release. Is there a release schedule? For now, each time I want to commit, I guess I'll have to close LibreCAD, run a script that ingests the .dxf file, eats the absolute path part, then rewrites it, and then I can commit to git and reopen the .dxf file.

Thanks,
Mark
Reply | Threaded
Open this post in threaded view
|

Re: Release schedule?

MarkHamann
BTW, here is my python script:
from pathlib import Path
from re import sub
map = Path(".") / "map.dxf"

dxf = map.read_text()

# Find C:/ ... /./ and replace with ./
dxf = sub("C:/.*/\.", ".", dxf)

map.write_text(dxf)
Reply | Threaded
Open this post in threaded view
|

Re: Release schedule?

flywire
Just do a GitHub PR, if it's accepted it will be in the next Continuous Build release.
Reply | Threaded
Open this post in threaded view
|

Re: Release schedule?

LordOfBikes
Administrator
In reply to this post by MarkHamann
I just checked, if I can pull this for a 2.2.0 bug fix release.
But the changes in the referenced issue #1715 is just the end of a bunch of commits addressing this problem, thus it's not so easy.
On the other hand, the latest master has merged a bunch of buggy features and there are still issues popping up, so I think it's not ready for a release yet.

Armin
investing less than half an hour into Search function can save hours or days of waiting for a solution