Skip to content

Commit

Permalink
v1.7.8670
Browse files Browse the repository at this point in the history
Version 1.7.8670
-----------------------------------------------------------------
Frontend related changes
- Improvement: Set FitToContent = Width

Backend related changes
- Improvement: Stability on COMPort Access
  • Loading branch information
c3rebro committed Sep 27, 2023
1 parent 0b83dd5 commit 9192888
Show file tree
Hide file tree
Showing 10 changed files with 4,899 additions and 2,358 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,5 @@
/setup example.wxs
*.pdf
*.xml
*.zip
*.zip
*.htm
1 change: 1 addition & 0 deletions RFiDGear/Arguments.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
REPORTTARGETPATH="D:\CardCheck_data\KP-000005-5_final.pdf" REPORTTEMPLATEFILE="D:\CardCheck_data\KP-000005-5_.pdf" CUSTOMPROJECTFILE="D:\CardCheck_data\KPruefung_Vorlagen\00_RFID_Gear_Vorlage\CardCheckAssistant_FreeMemDesfireOnly.rfPrj" $JOBNUMBER="KP-000005" $CHIPNUMBER="5" AUTORUN=1
2 changes: 1 addition & 1 deletion RFiDGear/DataAccessLayer/Local/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ namespace RFiDGear.DataAccessLayer

public static class Constants
{
public static readonly int MAX_WAIT_INSERTION = 200; //timeout for chip response in ms
public static readonly uint MAX_WAIT_INSERTION = 200; //timeout for chip response in ms
public static readonly string TITLE_SUFFIX = ""; //turns out special app versions
//public const string TITLE_SUFFIX = "DEVELOPER PREVIEW"; //turns out special app versions
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,6 @@ public DatabaseReaderWriter()
{
try
{
//AsyncRelayCommandLoadDB = new AsyncRelayCommand<TextReader>(LoadXML,AsyncRelayCommandOptions.AllowConcurrentExecutions);

// Combine the base folder with the specific folder....
appDataPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), "RFiDGear");

Expand Down Expand Up @@ -120,7 +118,6 @@ public bool ReadDatabase(string _fileName = "")

try
{
//var serializer = new XmlSerializer(typeof(ChipTaskHandlerModel));
AsyncRelayCommandLoadDB.ExecuteAsync(reader);
}
catch (Exception e)
Expand Down Expand Up @@ -167,6 +164,7 @@ public bool ReadDatabase(string _fileName = "")
{
XmlSerializer serializer = new XmlSerializer(typeof(ChipTaskHandlerModel));
SetupModel = (serializer.Deserialize(reader) as ChipTaskHandlerModel);
reader.Close();
}
catch (Exception e)
{
Expand Down Expand Up @@ -251,7 +249,6 @@ public void WriteDatabase(ChipTaskHandlerModel objModel, string _path = "")
catch (XmlException e)
{
LogWriter.CreateLogEntry(e, FacilityName);
Environment.Exit(0);
}
}

Expand Down
Loading

0 comments on commit 9192888

Please sign in to comment.