Commit 245bd846 authored by Francesco Carraro's avatar Francesco Carraro
Browse files

fixed saving info about singleAcquisitions as source for averaged file; fixed...

fixed saving info about singleAcquisitions as source for averaged file; fixed issue in saving files onto cloud;
parent 1cfd973e
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -2,11 +2,11 @@
<logbook>
	<updates>
		<fixes>
			<fix>Fixed crash when user tries to zoom a chart region</fix>
			<fix>Fixed issue in changing unit of measure for wavelengths</fix>
			<fix>Fixed issue in saving input lab files. Previously no Level was set</fix>
		</fixes>
		<addings>
			<adding>Added way to classify sample as meteor by assigning it a class</adding>
			<adding>Creation of averaged files from single acquisitions</adding>
			<adding>Save single acquisitions into DB as source of averaged file and retrieve as info</adding>
		</addings>
	</updates>
</logbook>
 No newline at end of file
+3 −1
Original line number Diff line number Diff line
@@ -216,6 +216,7 @@ namespace INAF.Apps.Uwp.SLabDataManager.Extensions
                Filename = model.Filename,
                ParentId = model.ParentId,
                Type = model.Type,
                Level = model.Level,
                Xml = model.ToXmlString()
            };
        }
@@ -227,7 +228,8 @@ namespace INAF.Apps.Uwp.SLabDataManager.Extensions
                Id = model.Id,
                Filename = model.Filename,
                ParentId = model.ParentId,
                Type = model.Type
                Type = model.Type,
                Level = model.Level
            };
        }

+3 −1
Original line number Diff line number Diff line
@@ -86,7 +86,9 @@ namespace INAF.Apps.Uwp.SLabDataManager.Helpers.FileReaders
                {
                    try
                    {
                        string[] tmp = Regex.Split(x, @"\s+", RegexOptions.IgnoreCase);
                        List<string> tmp = Regex.Split(x, @"\s+", RegexOptions.IgnoreCase).ToList();

                        int n = tmp.RemoveAll(t => string.IsNullOrEmpty(t));

                        double xVal = double.NaN;
                        double yVal = double.NaN;
+1 −1
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@
  <Identity
    Name="INAF.Apps.Uwp.SLabDataManager"
    Publisher="CN=INAF-IAPS, O=INAF, C=IT"
    Version="1.0.13.0" />
    Version="1.0.16.0" />

  <mp:PhoneIdentity PhoneProductId="07F38165-05DE-4ED7-8514-60D1E8CDCBFE" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>

+3 −0
Original line number Diff line number Diff line
@@ -1066,4 +1066,7 @@
  <data name="FolderListOfParentFilesLabel.Text" xml:space="preserve">
    <value>Parent files for current RAW spectrum</value>
  </data>
  <data name="FolderFilesProcessingCompletedWithErrorMessage" xml:space="preserve">
    <value>An error occurred while trying to process selected files</value>
  </data>
</root>
 No newline at end of file
Loading