Skip to content

Commit

Permalink
Merge pull request #25 from mystasly48/installer
Browse files Browse the repository at this point in the history
Installer
  • Loading branch information
mystasly48 committed Apr 22, 2020
2 parents 95678fc + 60daec3 commit 74eb797
Show file tree
Hide file tree
Showing 13 changed files with 5,960 additions and 482 deletions.
12 changes: 10 additions & 2 deletions Mystter_SendTweet.sln
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.24720.0
# Visual Studio Version 16
VisualStudioVersion = 16.0.30011.22
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Mystter_SendTweet", "Mystter_SendTweet\Mystter_SendTweet.csproj", "{9F3C8D62-3C6F-4FA3-A9B6-30A6B88AA5CB}"
EndProject
Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "MystterSetup", "Setup\Setup.vdproj", "{3C32369E-BF89-48A5-AE09-3DA5D3736FD6}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -15,8 +17,14 @@ Global
{9F3C8D62-3C6F-4FA3-A9B6-30A6B88AA5CB}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9F3C8D62-3C6F-4FA3-A9B6-30A6B88AA5CB}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9F3C8D62-3C6F-4FA3-A9B6-30A6B88AA5CB}.Release|Any CPU.Build.0 = Release|Any CPU
{3C32369E-BF89-48A5-AE09-3DA5D3736FD6}.Debug|Any CPU.ActiveCfg = Debug
{3C32369E-BF89-48A5-AE09-3DA5D3736FD6}.Release|Any CPU.ActiveCfg = Release
{3C32369E-BF89-48A5-AE09-3DA5D3736FD6}.Release|Any CPU.Build.0 = Release
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {582B2C98-8C9E-4004-9453-EEDF011B7FE3}
EndGlobalSection
EndGlobal
1,750 changes: 1,604 additions & 146 deletions Mystter_SendTweet/AboutForm.resx

Large diffs are not rendered by default.

13 changes: 8 additions & 5 deletions Mystter_SendTweet/AuthBrowser.Designer.cs

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

1,750 changes: 1,604 additions & 146 deletions Mystter_SendTweet/AuthBrowser.resx

Large diffs are not rendered by default.

50 changes: 30 additions & 20 deletions Mystter_SendTweet/Form1.Designer.cs

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

5 changes: 5 additions & 0 deletions Mystter_SendTweet/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -285,11 +285,16 @@ public partial class Form1 : Form {
settings = (Settings)serializer.Deserialize(reader);
reader.Close();
} else {
CreateSettingsFolder();
SaveSettings();
LoadSettings();
}
}

private void CreateSettingsFolder() {
Directory.CreateDirectory(Information.SettingsFolder);
}

private void TwitterInit() {
if (settings.Twitter.Count > 0) {
for (int i = 0; i < settings.Twitter.Count; i++) {
Expand Down
Loading

0 comments on commit 74eb797

Please sign in to comment.