Skip to content

Commit 9ef54d6

Browse files
Improved Setup process; streamlined workflows; several minor fiexs.
1 parent d43e52d commit 9ef54d6

7 files changed

Lines changed: 11 additions & 10 deletions

File tree

CalibreImport/CalibreImport.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
namespace CalibreImport
1919
{
20-
//[ComVisible(true)]
20+
//[ComVisible(true)] // not sure which ComVisible is better
2121
[ClassInterface(ClassInterfaceType.None)]
2222
[Guid("8E5CD5CA-64E0-479A-B62F-B1FC00FF0227"), ComVisible(true)] // not sure which ComVisible is better
2323
[DisplayName("Calibre Import Shell Extension")]

CalibreImport/InnoSetup/CalibreImportSetup.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
[Setup]
88
AppName={#AppName}
9-
AppVersion=1.0.5.1
9+
AppVersion=1.0.5.2
1010
DefaultDirName={autopf}\{#AppName}
1111
DefaultGroupName={#AppName}
1212
UninstallDisplayIcon={app}\{#MainDll}

CalibreImport/Powershell/Setup.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
#>
1010

1111
param (
12-
[switch]$i,
13-
[switch]$u,
14-
[switch]$re
12+
[switch]$i, # install
13+
[switch]$u, # uninstall
14+
[switch]$re # restart explorer
1515
)
1616

1717
# variables

CalibreImport/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,9 @@
2929
// Build Number
3030
// Revision
3131
//
32-
[assembly: AssemblyVersion("1.0.5.1")]
33-
[assembly: AssemblyFileVersion("1.0.5.1")]
32+
[assembly: AssemblyVersion("1.0.5.2")]
33+
[assembly: AssemblyFileVersion("1.0.5.2")]
34+
3435

3536

3637

0 Bytes
Binary file not shown.
155 Bytes
Binary file not shown.

CalibreImport/ReleaseFiles/Setup.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
#>
1010

1111
param (
12-
[switch]$i,
13-
[switch]$u,
14-
[switch]$re
12+
[switch]$i, # install
13+
[switch]$u, # uninstall
14+
[switch]$re # restart explorer
1515
)
1616

1717
# variables

0 commit comments

Comments
 (0)