Page 1 of 1

Building on Debian Jessie

Posted: Mon Apr 04, 2016 6:46 pm
by jand.kinderkamer
while building Community Version: 3.13.2.0 (3.13.2)
for Qt Version: 4.8.6
on Architecture: x86_64 --- :

To be able to use the component library I had to install the package libqt4-sql-sqlite,
This is not mentioned in the build advise web-page.

Perhaps since QT is in general already installed on any Debian distribution, that I hit this problem.

cheers,

j.

Re: Building on Debian Jessie

Posted: Mon Apr 04, 2016 8:49 pm
by jand.kinderkamer
This is presumably NOT specific to Debian Jessie.

The help button goes here:
"http://www.qcad.org/en/doc/qcad/3.13.2/ ... index.html"

So in the file :
~/qcad/scripts/Help/BrowseUserManual/BrowseUserManual.js

I changed (near the bottom):
Help.openUrl(
"http://www.qcad.org/doc/qcad/%1.%2.%3/r ... index.html"
.arg(RSettings.getMajorVersion())
.arg(RSettings.getMinorVersion())
.arg(RSettings.getRevisionVersion())
.arg(dir)
);

to
Help.openUrl(
"http://www.qcad.org/doc/qcad/latest/ref ... index.html"
.arg(dir)
);

cheers,

j.