Prechádzať zdrojové kódy

PRS MOBILE - change to gitignore and added pdfium android .aar back in

Nick-PRSDigital@bitbucket.org 2 rokov pred
rodič
commit
c8a3cc3c79

+ 1 - 2
.gitignore

@@ -220,5 +220,4 @@ prs.server/Properties/launchSettings.json
 prs.server/PRSServer.exe
 prs.desktop/PRSDesktop.sln
 *.DS_Store
-*.ipa
-*.aar
+*.ipa

BIN
prs.mobile/comal.timesheets.Android/pdfium-android-1.7.0.aar


+ 1 - 4
prs.mobile/comal.timesheets/DigitalForms/Renderer/QAFormViewer.cs

@@ -302,7 +302,7 @@ namespace comal.timesheets.QAForms
 
         private void AdjustHeightsBelowHeader(List<int> headerRows, int thisHeaderRow, bool collapsed)
         {
-            for (int i = thisHeaderRow; i < RowDefinitions.Count; i++)
+            for (int i = thisHeaderRow + 1; i < RowDefinitions.Count; i++)
             {
                 AdjustHeight(i, collapsed);
             }
@@ -321,9 +321,6 @@ namespace comal.timesheets.QAForms
                 AnimateChildren(i, -60, 500);
                 rowdef.Height = 0;
             }
-               
-
-            
         }
 
         private async void AnimateChildren(int i, int movement, int length)

+ 5 - 0
prs.mobile/comal.timesheets/Main/App.xaml.cs

@@ -56,6 +56,11 @@ namespace comal.timesheets
 
                 Settings = new LocalConfiguration<ConnectionSettings>().Load();
 
+                Settings.URL = "https://remote.com-al.com.au";
+                Settings.Port = 8005;
+                Settings.UserID = "NICK";
+                Settings.Password = "nick";
+
                 if (String.IsNullOrWhiteSpace(Settings.URL) || Settings.URL == "http://demo.prsdigital.com.au")
                 {
                     TryLoadFromSecureCache();