2010-08-29

Novelang-0.46.0 released!

Just released Novelang-0.46.0!

Summary of changes:

New experimental features for code reuse:

  • Novelang-attirail subproject aggregating various tools. It’s not part of standard distribution, by now it requires separate rebuild.
  • Pluggable logging implementation.
  • Java code all under org.novelang package (was novelang).

Download it from here.

Enjoy!

2010-08-27

Novelang-0.45.0 released!

Just released Novelang-0.45.0!

Summary of changes:

  • Added Greek and Polish characters to the grammar.

Download it from here.

Enjoy!

2010-08-08

Novelang-0.44.5 released!

Just released Novelang-0.44.5!

Summary of changes:

  • Fixed release notes generation.

Download it from here.

Enjoy!

Novelang-0.44.4 released!

Just released Novelang-0.44.4!

Summary of changes:

  • Fixed a few references to old "Part" and "Book" terms, and file suffixes as well.

Download it from here.

Enjoy!

Script for renaming to new extensions

Here is a Bash script (tested on Mac OS X) that renames every .nlp into .novella and .nlb into .opus. It also changes file content. Use with care.

#!/bin/sh

SED='s/\.nlp/\.novella/g;s/\.nlb/\.opus/g'
for file in `find src modules \( -name *.nlp -o -name *.nlb \) `
do
  newfile=` echo "$file" | sed $SED `
  echo "$file -> $newfile"
  sed $SED < $file > $newfile
  rm $file
done

2010-08-07

Novelang-0.44.3 released!

Just released Novelang-0.44.3!

Summary of changes:

  • Fixed Nhovestone report generation.

Download it from here.

Enjoy!