Skip to content

Commit

Permalink
Create icon/logo
Browse files Browse the repository at this point in the history
  • Loading branch information
sushihangover committed Dec 6, 2016
1 parent 8e55aec commit 1ac551c
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 11 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,9 @@

>An Action/Task Message Pump for running commands on a dedicated Realm thread.



Thread Icon within the RealmThread Logo:

><div>Icons made by <a href="http://www.freepik.com" title="Freepik">Freepik</a> from <a href="http://www.flaticon.com" title="Flaticon">www.flaticon.com</a> is licensed by <a href="http://creativecommons.org/licenses/by/3.0/" title="Creative Commons BY 3.0" target="_blank">CC 3.0 BY</a></div>
16 changes: 8 additions & 8 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ var isReleaseBranch = StringComparer.OrdinalIgnoreCase.Equals("master", AppVeyor
var isTagged = AppVeyor.Environment.Repository.Tag.IsTag;

var githubOwner = "sushihangover";
var githubRepository = "SushiHangover.RealmThread";
var githubRepository = "RealmThread";
var githubUrl = string.Format("https://github.com/{0}/{1}", githubOwner, githubRepository);

// Version
Expand All @@ -55,7 +55,7 @@ var buildVersion = gitVersion.FullBuildMetaData;

// Artifacts
var artifactDirectory = "./artifacts/";
var packageWhitelist = new[] { "Akavache", "Akavache.Core", "Akavache.Deprecated", "Akavache.Mobile", "Akavache.Sqlite3" };
var packageWhitelist = new[] { "RealmThread" };

// Macros
Action Abort = () => { throw new Exception("a non-recoverable fatal error occurred."); };
Expand Down Expand Up @@ -135,7 +135,7 @@ Task("Build")
{
XBuild(solution, new XBuildSettings()
.SetConfiguration("Debug")
//.SetVerbosity(Verbosity.Minimal)
.SetVerbosity(Verbosity.Minimal)
);
}
if (isRunningOnWindows)
Expand Down Expand Up @@ -185,10 +185,10 @@ Task("RunUnitTests")
.IsDependentOn("Build")
.Does(() =>
{
//XUnit2("./src/Akavache.Tests/bin/x64/Release/Akavache.Tests.dll", new XUnit2Settings {
//XUnit2("./src/RealmThread.Tests/bin/x64/Release/RealmThread.Tests.dll", new XUnit2Settings {
// OutputDirectory = artifactDirectory,
// XmlReportV1 = false,
// NoAppDomain = false // Akavache.Tests requires AppDomain otherwise it does not resolve System.Reactive.*
// NoAppDomain = false // RealmThread.Tests requires AppDomain otherwise it does not resolve System.Reactive.*
//});
});

Expand All @@ -201,8 +201,8 @@ Task("Package")
});

Task("PublishPackages")
.IsDependentOn("RunUnitTests")
.IsDependentOn("Package")
//.IsDependentOn("RunUnitTests")
//.IsDependentOn("Package")
.WithCriteria(() => !local)
.WithCriteria(() => !isPullRequest)
.WithCriteria(() => isRepository)
Expand Down Expand Up @@ -310,7 +310,7 @@ Task("PublishRelease")
//////////////////////////////////////////////////////////////////////

Task("Default")
.IsDependentOn("CreateRelease")
//.IsDependentOn("CreateRelease")
.IsDependentOn("PublishPackages")
.IsDependentOn("PublishRelease")
.Does (() =>
Expand Down
Binary file added media/SushiHangover.RealmThread.afphoto
Binary file not shown.
Binary file added media/SushiHangover.RealmThread.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added media/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added media/passing.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions media/passing.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions src/CommonAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
using System.Reflection;

[assembly: AssemblyProduct("SushiHangover.RealmThread")]
[assembly: AssemblyVersion("0.1.0")]
[assembly: AssemblyFileVersion("0.1.0")]
[assembly: AssemblyInformationalVersion("0.1.0+0.Branch.master.Sha.84174aac091d6e2922dfda99777faa1abfe334a1")]
[assembly: AssemblyVersion("0.1.1")]
[assembly: AssemblyFileVersion("0.1.1")]
[assembly: AssemblyInformationalVersion("0.1.1+1.Branch.master.Sha.8e55aecaa2d52a0ef185678aa53f1c6a906e081b")]
[assembly: AssemblyCopyright("Copyright (c) SushiHangover/RobertN")]

0 comments on commit 1ac551c

Please sign in to comment.