Skip to content

Commit

Permalink
First commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
CoffeeBns committed Nov 22, 2017
1 parent 985e083 commit 43250fb
Show file tree
Hide file tree
Showing 157 changed files with 283,886 additions and 4 deletions.
4 changes: 2 additions & 2 deletions GW2RaidarUploader/App.config
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>
</configuration>
</configuration>
8 changes: 6 additions & 2 deletions GW2RaidarUploader/MainWindow.xaml.cs
Expand Up @@ -174,7 +174,7 @@ private void UploadButton_Click(object sender, RoutedEventArgs e)
doneUploading = false;
autoSyncEnabled = true;

ClientOperator.mainWindow.AddMessage("Attempting Raidar Files Upload.");

ThreadStart threadStart = delegate
{
AttemptUpload();
Expand Down Expand Up @@ -361,7 +361,11 @@ public void AttemptUpload()
Config.Instance.logsDictionary = logsDictionary;
Config.Save();

AddMessage("All log files uploaded in " + (DateTime.Now - syncStarted).TotalSeconds + " seconds.");
if (totalFilesToUpload > 0)
{
AddMessage("All log files uploaded in " + (DateTime.Now - syncStarted).TotalSeconds + " seconds.");
}

CompletionMessage();
}
catch(Exception ex)
Expand Down
Binary file added packages/DotNetZip.1.9.3/DotNetZip.1.9.3.nupkg
Binary file not shown.
18,149 changes: 18,149 additions & 0 deletions packages/DotNetZip.1.9.3/lib/net20/Ionic.Zip.xml

Large diffs are not rendered by default.

Binary file not shown.
Binary file not shown.
50 changes: 50 additions & 0 deletions packages/HtmlRenderer.WPF.1.5.0.6/readme.txt
@@ -0,0 +1,50 @@

********** Welcome to the HTML Renderer WPF library! **********************************************

This library provides the rich formatting power of HTML in your WPF .NET applications using
simple controls or static rendering code.
For more info see HTML Renderer on CodePlex: http://htmlrenderer.codeplex.com

********** DEMO APPLICATION ***********************************************************************

HTML Renderer Demo application showcases HTML Renderer capabilities, use it to explore and learn
on the library: http://htmlrenderer.codeplex.com/wikipage?title=Demo%20application

********** FEEDBACK / RELEASE NOTES ***************************************************************

If you have problems, wish to report a bug, or have a suggestion please start a thread on
HTML Renderer discussions page: http://htmlrenderer.codeplex.com/discussions

For full release notes and all versions see: http://htmlrenderer.codeplex.com/releases

********** QUICK START ****************************************************************************

For more Quick Start see: https://htmlrenderer.codeplex.com/wikipage?title=Quick%20start

***************************************************************************************************
********** Quick Start: Use HTML panel control on WPF window

<Window x:Class="Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Window1" Height="300" Width="300"
xmlns:wpf="clr-namespace:TheArtOfDev.HtmlRenderer.WPF;assembly=HtmlRenderer.WPF">
<Grid>
<wpf:HtmlPanel Text="&lt;p&gt; &lt;h1&gt; Hello World &lt;/h1&gt; This is html rendered text&lt;/p&gt;"/>
</Grid>
</Window>

***************************************************************************************************
********** Quick Start: Create image from HTML snippet

class Program
{
private static void Main(string[] args)
{
BitmapFrame image = HtmlRender.RenderToImage("<p><h1>Hello World</h1>This is html rendered text</p>");
var encoder = new PngBitmapEncoder();
encoder.Frames.Add(image);
using (FileStream stream = new FileStream("image.png", FileMode.OpenOrCreate))
encoder.Save(stream);
}
}
Binary file not shown.

0 comments on commit 43250fb

Please sign in to comment.