Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev dylan #81

Merged
merged 6 commits into from
Apr 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CIAPPO Installer Project/Product.wxs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension">
<Product Id="2B013C4C-1160-42CE-B226-FA0235364023" Name="Canadian Incident Action Plan Program" Language="1033" Version="1.0.5.0" Manufacturer="CIFFC" UpgradeCode="14f3f8c0-721f-4c77-9daa-d33b6accf00d">
<Product Id="6B6045CC-EC89-44D6-A5D4-7DAACF28CED9" Name="Canadian Incident Action Plan Program" Language="1033" Version="1.0.6.0" Manufacturer="CIFFC" UpgradeCode="14f3f8c0-721f-4c77-9daa-d33b6accf00d">
<Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" Keywords='Installer' Description="CIFFC Incident Action Plan Program"
Manufacturer='CIFFC' />

Expand Down
2 changes: 1 addition & 1 deletion WF-ICS-ClassLibrary/Globals.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public static class Globals
static Globals()
{
//Gets the connection string from the calling website and uses it throughout the class library
ProgramName = "Canadian Incident Action Plan Producer";
ProgramName = "Canadian Incident Action Plan Program";
ProgramURL = "https://www.icscanada.ca";
}

Expand Down
4 changes: 2 additions & 2 deletions WF-ICS-ClassLibrary/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.5.1")]
[assembly: AssemblyFileVersion("1.0.5.1")]
[assembly: AssemblyVersion("1.0.6.1")]
[assembly: AssemblyFileVersion("1.0.6.1")]
10 changes: 6 additions & 4 deletions Wildfire ICS Assist/AirOperationsForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -147,10 +147,12 @@ private void Program_OpPeriodChanged(IncidentOpPeriodChangedEventArgs e)

private void LoadPreparedBy()
{
cboPreparedBy.DataSource = null;
cboPreparedBy.DataSource = CurrentOrgChart.Clone().ActiveRoles; cboPreparedBy.DisplayMember = "RoleNameWithIndividualAndDepth"; cboPreparedBy.ValueMember = "RoleID";
if (CurrentAirOpsSummary.PreparedByPositionID != Guid.Empty && CurrentOrgChart.ActiveRoles.Any(o => o.RoleID == CurrentAirOpsSummary.PreparedByPositionID)) { cboPreparedBy.SelectedValue = CurrentAirOpsSummary.PreparedByPositionID; }

if (cboPreparedBy != null && CurrentAirOpsSummary != null && CurrentOrgChart != null)
{
cboPreparedBy.DataSource = null;
cboPreparedBy.DataSource = CurrentOrgChart.Clone().ActiveRoles; cboPreparedBy.DisplayMember = "RoleNameWithIndividualAndDepth"; cboPreparedBy.ValueMember = "RoleID";
if (CurrentAirOpsSummary.PreparedByPositionID != Guid.Empty && CurrentOrgChart.ActiveRoles.Any(o => o.RoleID == CurrentAirOpsSummary.PreparedByPositionID)) { cboPreparedBy.SelectedValue = CurrentAirOpsSummary.PreparedByPositionID; }
}
}

private void LoadMainData()
Expand Down
98 changes: 63 additions & 35 deletions Wildfire ICS Assist/CheckedInResourcesForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading