Skip to content

Commit

Permalink
#48: Finished off implementation of last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
damienhaynes committed Apr 6, 2016
1 parent ec54dc2 commit d084030
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions TraktRater.Designer.cs

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

6 changes: 6 additions & 0 deletions TraktRater.cs
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ protected override void OnLoad(EventArgs e)
chkListalEnabled.Checked = AppSettings.EnableListal;
chkCritickerEnabled.Checked = AppSettings.EnableCriticker;
chkLetterboxdEnabled.Checked = AppSettings.EnableLetterboxd;
chkSetWatchedOnReleaseDay.Checked = AppSettings.WatchedOnReleaseDay;
nudBatchSize.Value = AppSettings.BatchSize;

SetTMDbControlState();
Expand Down Expand Up @@ -474,6 +475,11 @@ private void lnkLogFolder_LinkClicked(object sender, LinkLabelLinkClickedEventAr
Process.Start(FileLog.LogDirectory);
}

private void chkSetWatchedOnReleaseDay_CheckedChanged(object sender, EventArgs e)
{
AppSettings.WatchedOnReleaseDay = chkSetWatchedOnReleaseDay.Checked;
}

private void nudBatchSize_ValueChanged(object sender, EventArgs e)
{
AppSettings.BatchSize = (int)nudBatchSize.Value;
Expand Down
3 changes: 3 additions & 0 deletions TraktRater.resx
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,9 @@
<metadata name="tipHelp.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>
<metadata name="tipHelp.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>
<data name="txtImdbWebUsername.ToolTip" xml:space="preserve">
<value>Your IMDb User ID starts with 'ur', you can get this from the IMDb website from the address bar when in your profile.

Expand Down

0 comments on commit d084030

Please sign in to comment.