Announcements regarding our community

Hang out on our Discord?

here's an updated link! I set this one to not expire, hopefully that works? https://discord.gg/5EVb3w7

read more

A place to talk about whatever you want

GRUE DORF

If you look in the Blogs section of this site, you might see activity!

People are posting dev blogs there!

You can join us! By posting one update every seven days (or fewer) about your project!

That's it. That's GRUEDORF.

You need neither be GRUE nor DORF to GRUEDORF.

Come! Join us!

read more

Got a question? Ask away!

Blog category?

New rule: Blogs category also is for all gruedorf posts.

read more

Blog posts from individual members

Coolcoder360's Devlog/updates thread
C

Well the version numbering is still in progress, decided that I'm going to just not put in a date as part of the number because getting a date in CMake seems painful.
Still trying to get Jenkins to be able to pull out the full build number from CMake and use that to name the zip file, that way I can keep track of the artifacts better.

What I actually wanted to talk about is based on a discussion in the discord related to writing print on demand/ebooks. I've dabbled in writing since I was a kid, but I've never considered myself good and I've always been rather engineering brained, so I'm not going to talk about writing itself, instead I wanted to talk about writing toolchains, specifically the open source writing toolchains available. I'm well open to discussions on what you use or other writing/word processing tools that you use, definitely start up a convo on the discord, it should be a great time 😄

Yes I'm going to software engineering-ify writing books by saying that you use a toolchain to write/publish them, This mostly came about after I saw that the book publishing/formating/whatever you want to call it software I thought would be good to use doesn't support exporting ebooks, that software being Scribus. Apparently this is great for print media, it has color/printing features, defining trim/whatever, and it allows layout, but it doesn't export to epub, it mostly seems to export to pdf, and while you can turn that into an ebook format it isn't pretty and probably won't be reflowable, which if it isn't reflowable, it won't fit easily onto a lot of different screen sizes.

So what do you use? Just libreoffice? I thought about that and it does seem to be an acceptable option, but I've already started writing my current writing project on my phone in markdown, doing some more research on the Scribus forums I found a tool that I'd heard of before but never used called Pandoc which apparently is like the holy grail of typesetting format conversion. It can't go direct to Scribus' format but it goes to ODT which scribus can import so its good enough for me.

So what does this mean for me? Well I can just keep chunking along on my project in markdown, then later when I'm done with my writing, I can easily chunk it into a ODT, set it up with covers/cover art, all the copyright stuff and other heavier formatting stuff like table of contents, whatever, and then convert that puppy to epub with pandoc again, or import to Scribus to make a print pdf. Or I could even try to set up the table of contents within the markdown, or I can convert my markdown to LaTeX and set up a toc in there. So many options.

So how does this become a toolchain? Well, you can define a process of how you want the flow of your project to get published, say you do most of it in markdown, ignoring most formatting/page breaks/what have you, then you can convert it to ODT to go to Scribus for making a print book, or just go right to epub for an ebook, or take a stop in ODT to do more visual formatting and then go to ebook.

Then the next logical step is to have a CI/CD system in place to automatically generate your book once a week based on your current draft and don't forget the version control.

Okay okay maybe I'm going a bit overboard, but I did want to share Pandoc as being a useful typesetting/word processing tool, this sort of thing can be useful for more things than just writing fiction. School papers would probably have been way easier to focus on if I just did markdown or LaTeX first instead of having to use word, then converted it later, and I did my resume in LaTeX, with this I could update my resume by converting it to something else and do the formatting differently, or what have you.

That's all for this couple of weeks, hopefully next time I can have some game engine progress, maybe the version numbers will be finished and maybe I can have some IBL progress.

read more