Skip to content

Commit

Permalink
Installer and readme
Browse files Browse the repository at this point in the history
  • Loading branch information
02strich committed Oct 1, 2011
1 parent 90a63e4 commit 86b0c29
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Install32.cmd
@@ -0,0 +1,2 @@
%windir%\Microsoft.NET\Framework\v4.0.30319\regasm /codebase GravatarOSC.dll
%windir%\regedit.exe SocialProvider.reg
2 changes: 2 additions & 0 deletions Install64.cmd
@@ -0,0 +1,2 @@
%windir%\Microsoft.NET\Framework64\v4.0.30319\regasm /codebase GravatarOSC.dll
%windir%\regedit.exe SocialProvider.reg
12 changes: 12 additions & 0 deletions Readme.md
@@ -0,0 +1,12 @@
Outlook Social connector for Gravatar
========
This connector allows you to see the Gravatar picture of your email participants.

Install Instructions:
1. Extract into a folder of your liking
2. Depending on whether you use 32 or 64 bit Outlook, execute the appropriate Install batch script
3. When ever you move the files, you have to re-execute the install script

.NET Library for Gravatar
=======
Fork of http://gravatarnet.codeplex.com to better up the code and incorporate Gravatar profile support.

This comment has been minimized.

Copy link
@einzdhi

einzdhi Sep 8, 2018

mohh
id:851-964-007

Binary file added SocialProvider.reg
Binary file not shown.
9 changes: 9 additions & 0 deletions create_package.py
@@ -0,0 +1,9 @@
import os
import zipfile

myZipFile = zipfile.ZipFile("gravatar-osc.zip", "w" )
myZipFile.write("Install32.cmd")
myZipFile.write("Install64.cmd")
myZipFile.write("GravatarOSC\\bin\\Release\\Gravatar.NET.dll", "Gravatar.NET.dll")
myZipFile.write("GravatarOSC\\bin\\Release\\GravatarOSC.dll", "GravatarOSC.dll")
myZipFile.write("GravatarOSC\\bin\\Release\\OutlookSocialProvider.dll", "OutlookSocialProvider.dll")

0 comments on commit 86b0c29

Please sign in to comment.