mirror of
https://github.com/XFox111/GUTSchedule.git
synced 2026-04-22 06:58:01 +03:00
Revert "- Updated first week of the first semester start date"
This reverts commit 423646eed5.
This commit is contained in:
@@ -92,19 +92,19 @@ namespace GUTSchedule.Droid.Activities
|
||||
start.Text = startDate.ToShortDateString();
|
||||
|
||||
groupTitle.Checked = prefs.GetBoolean("AddGroupToHeader", false);
|
||||
authorize.Checked = false; // prefs.GetBoolean("Authorize", true);
|
||||
authorize.Checked = prefs.GetBoolean("Authorize", true);
|
||||
|
||||
//email.Text = prefs.GetString("email", "");
|
||||
//password.Text = prefs.GetString("password", "");
|
||||
email.Text = prefs.GetString("email", "");
|
||||
password.Text = prefs.GetString("password", "");
|
||||
|
||||
/*try
|
||||
try
|
||||
{
|
||||
AvailableOccupations = await Parser.CheckAvailableOccupations(email.Text, password.Text);
|
||||
}
|
||||
catch
|
||||
{
|
||||
AvailableOccupations = new List<(string, string)>();
|
||||
}*/
|
||||
}
|
||||
}
|
||||
|
||||
private void Export_Click(object sender, EventArgs e)
|
||||
|
||||
@@ -32,7 +32,6 @@
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:checked="true"
|
||||
android:visibility="gone"
|
||||
android:text="@string/authorizeCheckbox"/>
|
||||
|
||||
<LinearLayout
|
||||
@@ -40,7 +39,7 @@
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical"
|
||||
android:visibility="visible">
|
||||
android:visibility="gone">
|
||||
|
||||
<TextView
|
||||
android:layout_width="match_parent"
|
||||
@@ -77,8 +76,7 @@
|
||||
android:id="@+id/professorParams"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical"
|
||||
android:visibility="gone">
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:layout_width="match_parent"
|
||||
@@ -248,4 +246,4 @@
|
||||
android:layout_height="wrap_content"
|
||||
android:text="v$(Build.BuildNumber) (ci-id #$(Build.BuildId))"/>
|
||||
</LinearLayout>
|
||||
</ScrollView>
|
||||
</ScrollView>
|
||||
|
||||
@@ -69,8 +69,8 @@ namespace GUTSchedule.Test
|
||||
var list = await Parser.GetSchedule(new DefaultExportParameters
|
||||
{
|
||||
Course = "0",
|
||||
FacultyId = "50005",
|
||||
GroupId = "54222",
|
||||
FacultyId = faculty.id,
|
||||
GroupId = group.id,
|
||||
EndDate = DateTime.Today.AddDays(7),
|
||||
StartDate = DateTime.Today
|
||||
});
|
||||
@@ -95,4 +95,4 @@ namespace GUTSchedule.Test
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user