Codebase list engauge-digitizer / 7acef20
Prep for release 12.2 markummitchell 4 years ago
6 changed file(s) with 13 addition(s) and 13 deletion(s). Raw diff Collapse all Expand all
6767 <content_attribute id="money-gambling">none</content_attribute>
6868 </content_rating>
6969 <releases>
70 <release date="2019-08-02" version="12.1">
70 <release date="2020-01-22" version="12.2">
7171 <description>
7272 <ul>
73 <li>Fix autorepeat with Segment Settings dialog</li>
74 <li>Display Coordinate Toolbar after import</li>
75 <li>Starting directory is saved and restored</li>
76 <li>Fix log scale over very small ranges</li>
77 <li>Fix tutorial page transition</li>
78 <li>Add Farsi support</li>
73 <li>Guidance for setting Export settings</li>
7974 </ul>
8075 </description>
8176 </release>
00 name: engauge-digitizer
1 version: '12.1'
1 version: '12.2'
22 summary: Interactively convert a bitmap graph or map into numbers.
33 description: Software tool for extracting numbers from images of graphs and maps.
44 grade: stable
11 <Wix xmlns='http://schemas.microsoft.com/wix/2006/wi'>
22 <Product Name='Engauge Digitizer'
33 Manufacturer='Engauge Open Source Developers'
4 Id='bd41327e-eb4b-4bee-a93e-dc8b8d41f840'
4 Id='5404AE92-DBF4-4B08-BBBF-6987BF9B96A5'
55 UpgradeCode='00A6792B-65ED-4894-A48B-B95D63C62CC6'
66 Language='1033' Codepage='1252'
7 Version='12.1'>
7 Version='12.2'>
88 <Package Id='*' Keywords='Installer' Description="Engauge Digitizer Installer"
99 Comments='Engauge Digitizer is available from github.com' Manufacturer='Engauge Open Source Developers'
1010 InstallerVersion='100' Languages='1033' Compressed='yes' SummaryCodepage='1252' />
11 <Wix xmlns='http://schemas.microsoft.com/wix/2006/wi'>
22 <Product Name='Engauge Digitizer'
33 Manufacturer='Engauge Open Source Developers'
4 Id='bd41327e-eb4b-4bee-a93e-dc8b8d41f840'
4 Id='5404AE92-DBF4-4B08-BBBF-6987BF9B96A5'
55 UpgradeCode='00A6792B-65ED-4894-A48B-B95D63C62CC6'
66 Language='1033' Codepage='1252'
7 Version='12.1'>
7 Version='12.2'>
88 <Package Id='*' Keywords='Installer' Description="Engauge Digitizer Installer"
99 Comments='Engauge Digitizer is available from github.com' Manufacturer='Engauge Open Source Developers'
1010 InstallerVersion='300' Languages='1033' Compressed='yes' SummaryCodepage='1252' InstallScope='perMachine' Platform='x64' />
55
66 #include "DlgImportCroppingNonPdf.h"
77 #include "ImportCroppingUtilNonPdf.h"
8 #include "Logger.h"
89 #include "NonPdf.h"
910 #include <QApplication>
1011 #include <QImage>
4445 NonPdfReturn NonPdf::loadWithCropping (const QString &fileName,
4546 QImage &image) const
4647 {
48 LOG4CPP_INFO_S ((*mainCat)) << "NonPdf::loadWithCropping fileName=" << fileName.toLatin1().data();
49
4750 NonPdfReturn nonPdfReturn = NON_PDF_RETURN_FAILED;
4851
4952 // Get page and extent. At this point it is always true that the image can be read
6770 NonPdfReturn NonPdf::loadWithoutCropping (const QString &fileName,
6871 QImage &image) const
6972 {
73 LOG4CPP_INFO_S ((*mainCat)) << "NonPdf::loadWithoutCropping fileName=" << fileName.toLatin1().data();
74
7075 NonPdfReturn nonPdfReturn = NON_PDF_RETURN_FAILED;
7176
7277 if (image.load (fileName)) {
88 // Every jump in the major version number will need:
99 // 1) changes to Document class
1010 // 2) at least one version-specific test case in the test subdirectory
11 const char *VERSION_NUMBER = "12.1";
11 const char *VERSION_NUMBER = "12.2";
1212
1313 QString engaugeWindowTitle()
1414 {