Skip to content

Commit

Permalink
Added missing files to the previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
FireCore, LLC committed Jan 5, 2012
1 parent 7b0e212 commit 4d62df4
Show file tree
Hide file tree
Showing 40 changed files with 447 additions and 703 deletions.
188 changes: 0 additions & 188 deletions Seas0nPass/ArchiveUtils.cs

This file was deleted.

2 changes: 1 addition & 1 deletion Seas0nPass/Controls/StartControl.Designer.cs

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

11 changes: 10 additions & 1 deletion Seas0nPass/Controls/StartControl.cs
Expand Up @@ -34,6 +34,7 @@ public StartControl()
tetherNotRequiredImage = tetheredPictureBox.BackgroundImage;
tetherDisabledImage = tetheredPictureBox.InitialImage;
tetherEnabledImage = tetheredPictureBox.ErrorImage;

}

public event EventHandler<CreateIPSWFirmwareClickedEventArgs> CreateIPSW_fwVersion_Clicked;
Expand Down Expand Up @@ -70,7 +71,7 @@ private void tetheredPoctureBox_Click(object sender, EventArgs e)
}

public void DisableTether()
{
{
tetheredPictureBox.BackgroundImage = tetherDisabledImage;
tetheredPictureBox.Enabled = false;
tetherLabel.Enabled = false;
Expand Down Expand Up @@ -139,5 +140,13 @@ public SynchronizationContext SyncContext
{
get { return new WindowsFormsSynchronizationContext(); }
}


public void ResetState()
{
SetPressedState(tetheredPictureBox, false);
SetPressedState(ipswPictureBox, false);

}
}
}
39 changes: 0 additions & 39 deletions Seas0nPass/HookResolver.cs

This file was deleted.

3 changes: 3 additions & 0 deletions Seas0nPass/Interfaces/IMainModel.cs
Expand Up @@ -17,5 +17,8 @@ public interface IMainModel
{
bool IsTetherPossible();
void SetFirmwareVersionModel(IFirmwareVersionModel firmwareVersionModel);

IEnumerable<string> GetProgramsToWarnNames();

}
}
6 changes: 6 additions & 0 deletions Seas0nPass/Interfaces/IMainView.cs
Expand Up @@ -20,7 +20,13 @@ public interface IMainView
void ShowControl(IView control);
void ShowTetherMessage(string fwName);
void ShowNotEnoughFreeSpaceMessage();
void ShowCantAccessOriginalFirmwareMessage(string fileName);
void ShowManualRestoreInstructions(string fileName);
void ShowCompatibleITunesVersionIsNotInstalled(string requiredITunesVersion, string installedITunesVersion);
void ShowProgramsWarning(IEnumerable<string> programNames);
void ShowCrashMessage();


event EventHandler Loaded;
}
}
2 changes: 2 additions & 0 deletions Seas0nPass/Interfaces/IStartView.cs
Expand Up @@ -28,5 +28,7 @@ public interface IStartView : IView
void EnableTether();
void SetTetherNotRequiredState();
void InitFirmwaresList(FirmwareVersion[] firmwares);

void ResetState();
}
}

0 comments on commit 4d62df4

Please sign in to comment.