By trying to find the cause of my issues with this new version of Sigil, I found something rare. In my stylesheet I had defined the following styles:
Code:
.fig3 {
-webkit-shape-outside: url("../Images/Fig-003.png");
shape-outside: url("../Images/Fig-003.png");
}
.fig4 {
-webkit-shape-outside: url("../Images/Fig-004.png");
shape-outside: url("../Images/Fig-004.png");
}
But after renaming images "Fig-003.png" to "Fig003.png" and "Fig-004.png" to "Fig004.png" the names of the pictures in my stylesheets remained the same, they weren't updated. I had 102 images in my epub; all of them were named as Fig-001.png, Fig-002.png, ..., Fig-102.png. I changed the name of all of them, by selecting them and then to choose the command "Rename...". I wrote "Fig001.png" and the names of the images were perfectly changed. But the names of the images in my stylesheet weren't changed
To me this is not normal. Always, when I have defined embedded fonts in my css stylesheet, if I rename the fonts, the name of the fonts are updated in my css; why does not happen the same with the images?