[...] also don't worry about the save game issue if that actually happens in 0.3 again we give you a skip option.
Or why not read
You must be registered to see the links
and make sure that the next update will be save compatible whatever you change ?
Here, the two most obvious compatibility issue between 0.1 and 0.2 are the removing of the "Person" and "Abilities" classes. Which can be easily fixed:
Code:
init python:
class Person():
pass
Abilities = Person
label after_load:
python:
for atom in [ "social_list", "abilities_list" ]:
if hasattr( store, atom ):
delattr( store, atom )
No need to more apparently (haven't took a full look at the code) since the associated values where stored outside of the objects ; anyway it wouldn't have been a big issue either if they were only stored in the objects, just a little more code to wrote to move the value from the old place to the new one.
As for the other compatibility issues (like the name change due to the incest patch), they are explicitly covered by the linked How-To.