Nice work! Thanks for usefull wiki! ^_^
Bit info about compatibility:
To run this app on windows I have made one change to wikiview.cpp file:
This code:
if (!url.scheme().isEmpty()) {
Was replaced to this:
if( !url.scheme().isEmpty() && url.scheme().size() > 1 ) {
Because disks C:, D: etc in windows - is also schemes (but should be seen as internal urls).
Ratings & Comments
1 Comment
Nice work! Thanks for usefull wiki! ^_^ Bit info about compatibility: To run this app on windows I have made one change to wikiview.cpp file: This code: if (!url.scheme().isEmpty()) { Was replaced to this: if( !url.scheme().isEmpty() && url.scheme().size() > 1 ) { Because disks C:, D: etc in windows - is also schemes (but should be seen as internal urls).