Skip to content

Commit

Permalink
version bump to 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
darwin committed Jun 21, 2009
1 parent 463f03d commit ffb826b
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 13 deletions.
2 changes: 1 addition & 1 deletion ins/_build.bat
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
REM run this from xrefresh/ins direcotory
@SET XVERSION=1.0
@SET XVERSION=1.0.1
@SET PATH=%PATH%;wix-3
call vsvars32.bat

Expand Down
2 changes: 1 addition & 1 deletion src/firefox/install.rdf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
xmlns:em="http://www.mozilla.org/2004/em-rdf#">
<Description about="urn:mozilla:install-manifest">
<em:id>xrefresh@xrefresh.com</em:id>
<em:version>1.0</em:version>
<em:version>1.0.1</em:version>
<em:type>2</em:type>
<!-- Firefox -->
<em:targetApplication>
Expand Down
4 changes: 2 additions & 2 deletions src/iexplorer/ConnectionManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -398,13 +398,13 @@ CConnectionManager::ProcessMessage(Json::Value& msg)

if (answer)
{
log.Format(_T("Refresh request from %s: %s"), name, story);
log.Format(_T("Project '%s': %s"), name, story);
m_Parent->Log(log, ICON_REFRESH);
PerformRefresh();
}
else
{
log.Format(_T("Refresh request from %s (not allowed for this site - modify 'Allowed Sites' using XRefresh toolbar icon)"), name);
log.Format(_T("Project '%s' (not allowed for this site - modify 'Allowed Sites' using XRefresh toolbar icon)"), name);
m_Parent->Log(log, ICON_CANCEL);
}
}
Expand Down
8 changes: 4 additions & 4 deletions src/iexplorer/XRefresh.rc
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ END
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,0,0,0
PRODUCTVERSION 1,0,0,0
FILEVERSION 1,0,1,0
PRODUCTVERSION 1,0,1,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -116,12 +116,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "binaryage.com"
VALUE "FileDescription", "XRefresh IE addon"
VALUE "FileVersion", "1, 0, 0, 0"
VALUE "FileVersion", "1, 0, 1, 0"
VALUE "InternalName", "XRefreshAddon.dll"
VALUE "LegalCopyright", "� 2007-2009 Antonin Hildebrand"
VALUE "OriginalFilename", "XRefreshAddon.dll"
VALUE "ProductName", "XRefresh"
VALUE "ProductVersion", "1, 0, 0, 0"
VALUE "ProductVersion", "1, 0, 1, 0"
END
END
BLOCK "VarFileInfo"
Expand Down
6 changes: 3 additions & 3 deletions src/winmonitor/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("www.binaryage.com")]
[assembly: AssemblyProduct("XRefresh")]
[assembly: AssemblyCopyright("Copyright © 2007-2009s Antonin Hildebrand")]
[assembly: AssemblyCopyright("Copyright © 2007-2009 Antonin Hildebrand")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand All @@ -30,6 +30,6 @@
// Build Number
// Revision
//s
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyVersion("1.0.1.0")]
[assembly: AssemblyFileVersion("1.0.1.0")]
[assembly: NeutralResourcesLanguageAttribute("en")]
7 changes: 5 additions & 2 deletions test/style.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
html {
background-color: white;
font-size: 20px;
background-color: lime;
}

h1 {
font-size: 30px;
}

0 comments on commit ffb826b

Please sign in to comment.