Skip to content

Commit d205770

Browse files
committed
Updates download links, script link, and fixed bug in SamplePlug post-build script
1 parent 5c72a79 commit d205770

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

GUIDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ and find the `Plugs` folder. put your plug DLL there. Now start PlugPlex, and yo
7070
To call a plug from javascript, you must first establish a connection to the plug. First, include plug-plex.js:
7171

7272
```html
73-
<script src="https://cdn.jsdelivr.net/gh/Hyperdraw/PlugPlex@1.0.0/PlugPlex.JS/plug-plex.js"></script>
73+
<script src="https://cdn.jsdelivr.net/gh/Hyperdraw/PlugPlex@1.0.1/PlugPlex.JS/plug-plex.js"></script>
7474
```
7575

7676
Now, create a new `Plug` object, passing the name of the plug. This should be the same as the `name` property of the plug class.

PlugPlex/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.0.0.0")]
35+
[assembly: AssemblyVersion("1.0.1.0")]
3636
[assembly: AssemblyFileVersion("1.0.0.0")]

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ most modern browsers, but sometimes it is necessary to bring platform native fea
66
into javascript for web pages. With PlugPlex, you can install .NET assemblies as web plugins
77
that are shared between browsers and bring powerful features to the internet.
88

9-
[**Download (Zip)**](https://github.com/Hyperdraw/PlugPlex/releases/download/v1.0.0/PlugPlex.zip)
9+
[**Download (Zip)**](https://github.com/Hyperdraw/PlugPlex/releases/download/v1.0.1/PlugPlex.zip)
1010

11-
[**Download (Installer)**](https://github.com/Hyperdraw/PlugPlex/releases/download/v1.0.0/PlugPlex-1.0.0-Setup.exe)
11+
[**Download (Installer)**](https://github.com/Hyperdraw/PlugPlex/releases/download/v1.0.1/PlugPlex-1.0.1-Setup.exe)
1212

1313
## Building
1414

SamplePlug/SamplePlug.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
</ItemGroup>
6060
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
6161
<PropertyGroup>
62-
<PostBuildEvent>md %25cd%25\..\..\..\PlugPlex\$(OutDir)Plugs"
62+
<PostBuildEvent>md "%25cd%25\..\..\..\PlugPlex\$(OutDir)Plugs"
6363
copy "%25cd%25\$(TargetFileName)" "%25cd%25\..\..\..\PlugPlex\$(OutDir)Plugs\$(TargetFileName)"</PostBuildEvent>
6464
</PropertyGroup>
6565
</Project>

0 commit comments

Comments
 (0)