Skip to content

Commit

Permalink
0.0.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
maratbakirov committed Sep 17, 2020
1 parent 5d581aa commit 759617a
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 18 deletions.
5 changes: 4 additions & 1 deletion OutlookTfsConnector/Code/Settings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,10 @@ public void Load()
{

RegistryKey key = Registry.CurrentUser.OpenSubKey(RegistryPath);
RegexToParseEmailSubjects = (string)key.GetValue("RegexToParseEmailSubjects", "");
if (key != null)
{
RegexToParseEmailSubjects = (string)key.GetValue("RegexToParseEmailSubjects", "");
}
if (string.IsNullOrWhiteSpace(RegexToParseEmailSubjects))
{
RegexToParseEmailSubjects = @"#[\d]+";
Expand Down
2 changes: 1 addition & 1 deletion OutlookTfsConnector/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("0.0.3.0")]
[assembly: AssemblyFileVersion("0.0.4.0")]

20 changes: 6 additions & 14 deletions OutlookTfsSetup/OutlookTfsSetup.vdproj
Original file line number Diff line number Diff line change
Expand Up @@ -9703,23 +9703,23 @@
"Name" = "8:Microsoft Visual Studio"
"ProductName" = "8:OutlookTfsSetup"
"ProductCode" = "8:{98A6698D-4E75-4E20-8E38-7427918F6E4C}"
"PackageCode" = "8:{67B65416-71A8-41F6-8817-FDC9C1B1EC7F}"
"PackageCode" = "8:{91D5B630-14C7-49F1-9A9A-6546CA9C31DE}"
"UpgradeCode" = "8:{6BBA0451-CBE1-4BEE-A50A-EE865EF483E3}"
"AspNetVersion" = "8:4.0.30319.0"
"RestartWWWService" = "11:FALSE"
"RemovePreviousVersions" = "11:FALSE"
"DetectNewerInstalledVersion" = "11:TRUE"
"InstallAllUsers" = "11:FALSE"
"ProductVersion" = "8:1.0.0"
"Manufacturer" = "8:Default Company Name"
"Manufacturer" = "8:Marat Bakirov"
"ARPHELPTELEPHONE" = "8:"
"ARPHELPLINK" = "8:"
"Title" = "8:OutlookTfsSetup"
"Subject" = "8:"
"ARPCONTACT" = "8:Default Company Name"
"ARPCONTACT" = "8:Marat Bakirov"
"Keywords" = "8:"
"ARPCOMMENTS" = "8:"
"ARPURLINFOABOUT" = "8:"
"ARPURLINFOABOUT" = "8:https://github.com/maratbakirov/outlooktfsconnector/"
"ARPPRODUCTICON" = "8:"
"ARPIconIndex" = "3:0"
"SearchPath" = "8:"
Expand Down Expand Up @@ -9779,7 +9779,7 @@
{
"{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_A933D4A6CAB84073BD343F12119F48B5"
{
"Name" = "8:AddinsCustomData"
"Name" = "8:AddIns"
"Condition" = "8:"
"AlwaysCreate" = "11:FALSE"
"DeleteAtUninstall" = "11:FALSE"
Expand All @@ -9790,7 +9790,7 @@
{
"Name" = "8:OutlookTfsConnector"
"Condition" = "8:"
"AlwaysCreate" = "11:FALSE"
"AlwaysCreate" = "11:TRUE"
"DeleteAtUninstall" = "11:TRUE"
"Transitive" = "11:FALSE"
"Keys"
Expand All @@ -9806,14 +9806,6 @@
"ValueTypes" = "3:1"
"Value" = "8:OutlookTfsConnector"
}
"{ADCFDA98-8FDD-45E4-90BC-E3D20B029870}:_501675AD66DF48AF9BC141C1E89A9D63"
{
"Name" = "8:RegexToParseEmailSubjects"
"Condition" = "8:"
"Transitive" = "11:FALSE"
"ValueTypes" = "3:1"
"Value" = "8:#[\\d]+"
}
"{ADCFDA98-8FDD-45E4-90BC-E3D20B029870}:_B561C376AC8F4FD39605F86D35E6BFF5"
{
"Name" = "8:Description"
Expand Down
15 changes: 13 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
# version history
## 0.0.4

Donate to this project
issues closed

item urls are now working and copied to clipboard
the product now remembers the last choices for project/item type
you can now select the user story
some work on the installer

https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=CKQHEAZRP6BSW&currency_code=AUD&source=url


# installation notes

the installation only works "for current user".
i have not fond the way to remove "for everyone" yet

0 comments on commit 759617a

Please sign in to comment.