Skip to content

Commit

Permalink
* Bumped release 0.0.30.
Browse files Browse the repository at this point in the history
* Updated documentation.
  • Loading branch information
xesscorp committed May 16, 2020
1 parent ec90f46 commit a5886f6
Show file tree
Hide file tree
Showing 34 changed files with 1,751 additions and 1,287 deletions.
2 changes: 1 addition & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
History
-------

0.0.30 (2020-XX-XX)
0.0.30 (2020-05-16)
______________________

* Added @package decorator to make subcircuits act like Parts.
Expand Down
42 changes: 42 additions & 0 deletions docs/_plugins/better_image_tag.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# Source is https://gist.github.com/pichfl/1548864
# A simple plugin for Jekyll that allows you to use {% img url "alt text" %} to add images to your posts.
# It will automatically check those images for width and height.
#
# Requires http://imagesize.rubyforge.org/

require 'image_size'
require 'open-uri'

module Jekyll

class ImageTag < Liquid::Tag
@img = nil
@alt = ""

def initialize(tag_name, markup, tokens)
@img = markup.strip
if temp = @img.match(/^(.*)(\s)(\")(.*)(\")$/)
@img = temp[1]
@alt = temp[4]
end

super
end

def render(context)
w,h = open(@img, "rb") do |fh|
ImageSize.new(fh.read).get_size
end

if @img
"<img src=\"#{@img}\" width=\"#{w}\" height=\"#{h}\" alt=\"#{@alt}\" >"

else

end

end
end
end

Liquid::Template.register_tag('img', Jekyll::ImageTag)
22 changes: 22 additions & 0 deletions docs/_posts/2020-05-16-version-0-0-30-release.markdown
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
layout: post
title: Version 0.0.30 Released!
date: 2020-05-16T10:01:10-05:00
author:
name: Dave Vandenbout
photo: devb-pic.jpg
email: devb@xess.com
description: Relax, I do this stuff for a living.
category: blog
permalink: blog/Release_0_0_30
---

I'm releasing version 0.0.30 of SKiDL today!
It has some new features I'm excited about:

* A new `@package` decorator to make subcircuits act like `Parts`.
* A new `tee()` function for creating T-junctions in networks.
* Custom ERCs can now be added using the new `erc_assert()` function.
* Substring matching in pin names can now be enabled/disabled.

I'll have some upcoming blog posts about these in the near future.
66 changes: 33 additions & 33 deletions docs/_site/404/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<!-- Twitter Cards -->
<meta name="twitter:card" content="summary">
<meta name="twitter:image" content="https://xesscorp.github.io/skidl/docs/_site/images/logo.png">
<meta name="twitter:image" content="http://localhost:4000/images/logo.png">
<meta name="twitter:title" content="SKiDL">
<meta name="twitter:description" content="Page not found. Your pixels are in another canvas.">
<meta name="twitter:creator" content="@xesscorp">
Expand All @@ -18,16 +18,16 @@
<meta property="og:type" content="article">
<meta property="og:title" content="SKiDL">
<meta property="og:description" content="Page not found. Your pixels are in another canvas.">
<meta property="og:url" content="https://xesscorp.github.io/skidl/docs/_site/404/">
<meta property="og:url" content="http://localhost:4000/404/">
<meta property="og:site_name" content="SKiDL">
<meta property="og:image" content="https://xesscorp.github.io/skidl/docs/_site/images/">
<meta property="og:image" content="http://localhost:4000/images/">

<meta name="google-site-verification" content="https://ssl.bing.com/webmaster/configure/verify/ownership Option 2 content= goes here">



<link rel="canonical" href="https://xesscorp.github.io/skidl/docs/_site/404/">
<link href="https://xesscorp.github.io/skidl/docs/_site/feed.xml" type="application/atom+xml" rel="alternate" title="SKiDL Feed">
<link rel="canonical" href="http://localhost:4000/404/">
<link href="http://localhost:4000/feed.xml" type="application/atom+xml" rel="alternate" title="SKiDL Feed">


<!-- http://t.co/dKP3o1e -->
Expand All @@ -37,39 +37,39 @@


<link href='http://fonts.googleapis.com/css?family=Montserrat:400,700|Open+Sans:400,600,300,800,700' rel='stylesheet' type='text/css'>
<!-- <link rel="stylesheet" href="https://xesscorp.github.io/skidl/docs/_site/assets/css/vendor/font-awesome.min.css"> -->
<!-- <link rel="stylesheet" href="http://localhost:4000/assets/css/vendor/font-awesome.min.css"> -->
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://xesscorp.github.io/skidl/docs/_site/assets/css/vendor/normalize.css">
<link rel="stylesheet" href="https://xesscorp.github.io/skidl/docs/_site/assets/css/vendor/nprogress.css">
<link rel="stylesheet" href="https://xesscorp.github.io/skidl/docs/_site/assets/css/vendor/foundation.min.css">
<link rel="stylesheet" href="https://xesscorp.github.io/skidl/docs/_site/assets/css/style.css">
<link rel="stylesheet" href="https://xesscorp.github.io/skidl/docs/_site/assets/css/post.css">
<link rel="stylesheet" href="http://localhost:4000/assets/css/vendor/normalize.css">
<link rel="stylesheet" href="http://localhost:4000/assets/css/vendor/nprogress.css">
<link rel="stylesheet" href="http://localhost:4000/assets/css/vendor/foundation.min.css">
<link rel="stylesheet" href="http://localhost:4000/assets/css/style.css">
<link rel="stylesheet" href="http://localhost:4000/assets/css/post.css">





<!-- Icons -->
<!-- 16x16 -->
<link rel="shortcut icon" href="https://xesscorp.github.io/skidl/docs/_site/favicon.ico">
<link rel="shortcut icon" href="http://localhost:4000/favicon.ico">
<!-- 32x32 -->
<link rel="shortcut icon" href="https://xesscorp.github.io/skidl/docs/_site/favicon.png">
<link rel="shortcut icon" href="http://localhost:4000/favicon.png">
<!-- 57x57 (precomposed) for iPhone 3GS, pre-2011 iPod Touch and older Android devices -->
<link rel="apple-touch-icon-precomposed" href="https://xesscorp.github.io/skidl/docs/_site/images/apple-touch-icon-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="http://localhost:4000/images/apple-touch-icon-precomposed.png">
<!-- 72x72 (precomposed) for 1st generation iPad, iPad 2 and iPad mini -->
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="https://xesscorp.github.io/skidl/docs/_site/images/apple-touch-icon-72x72-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://localhost:4000/images/apple-touch-icon-72x72-precomposed.png">
<!-- 114x114 (precomposed) for iPhone 4, 4S, 5 and post-2011 iPod Touch -->
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="https://xesscorp.github.io/skidl/docs/_site/images/apple-touch-icon-114x114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://localhost:4000/images/apple-touch-icon-114x114-precomposed.png">
<!-- 144x144 (precomposed) for iPad 3rd and 4th generation -->
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="https://xesscorp.github.io/skidl/docs/_site/images/apple-touch-icon-144x144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://localhost:4000/images/apple-touch-icon-144x144-precomposed.png">

</head>
<body class="post-template page" itemscope itemtype="http://schema.org/WebPage">
<main id="notepad-page-container" class="notepad-page-container" role="main">
<header class="notepad-page-header">
<div class="notepad-page-menu-header">
<a class="notepad-blog-logo" href="https://xesscorp.github.io/skidl/docs/_site">
<img src="https://xesscorp.github.io/skidl/docs/_site/images/logo.png" alt="Blog Logo">
<a class="notepad-blog-logo" href="http://localhost:4000">
<img src="http://localhost:4000/images/logo.png" alt="Blog Logo">
</a>
<div class="notepad-blog-menu">
<div class="notepad-mobile-menu show-for-small">
Expand All @@ -81,17 +81,17 @@
</li>

<li>
<a href="https://xesscorp.github.io/skidl/docs/_site/">Home</a>
<a href="http://localhost:4000/">Home</a>

</li>

<li>
<a href="https://xesscorp.github.io/skidl/docs/_site/blog">Blog</a>
<a href="http://localhost:4000/blog">Blog</a>

</li>

<li>
<a href="https://xesscorp.github.io/skidl/docs/_site/api.html">API</a>
<a href="http://localhost:4000/api.html">API</a>

</li>

Expand All @@ -101,11 +101,11 @@
</li>

<li>
<a href="https://xesscorp.github.io/skidl/docs/_site/about">About</a>
<a href="http://localhost:4000/about">About</a>

</li>

<li><a href="https://xesscorp.github.io/skidl/docs/_site/feed.xml" title="Atom/RSS feed"><i class="icon-rss"></i> Feed</a></li>
<li><a href="http://localhost:4000/feed.xml" title="Atom/RSS feed"><i class="icon-rss"></i> Feed</a></li>
</ul>
</div>
</div>
Expand All @@ -116,7 +116,7 @@ <h1></h1>
</div>
</header>
<article class="notepad-page-content">
<div><p><img src="https://xesscorp.github.io/skidl/docs/_site/images/design-404-error-page-467.png" alt=" at SKiDL" /></p>
<div><p><img src="http://localhost:4000/images/design-404-error-page-467.png" alt=" at SKiDL" /></p>

<div class="text-center">
<h1>Oops...!</h1>
Expand Down Expand Up @@ -144,8 +144,8 @@ <h1>Oops...!</h1>
</section>
<br />
<p>
<a href='http://www.catb.org/hacker-emblem/' target="_blank"><img src='https://xesscorp.github.io/skidl/docs/_site/assets/img/hacker.png' alt='hacker emblem' /></a>
<a href="http://endsoftpatents.org/innovating-without-patents" target="_blank"><img style="border-width:0" src="https://xesscorp.github.io/skidl/docs/_site/assets/img/patent-free.png"></a>
<a href='http://www.catb.org/hacker-emblem/' target="_blank"><img src='http://localhost:4000/assets/img/hacker.png' alt='hacker emblem' /></a>
<a href="http://endsoftpatents.org/innovating-without-patents" target="_blank"><img style="border-width:0" src="http://localhost:4000/assets/img/patent-free.png"></a>
</p>
</div>
<div class="social-icons">
Expand Down Expand Up @@ -176,13 +176,13 @@ <h1>Oops...!</h1>

</main>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="https://xesscorp.github.io/skidl/docs/_site/assets/js/vendor/jquery-1.11.1.min.js"><\/script>')</script>
<script src="https://xesscorp.github.io/skidl/docs/_site/assets/js/vendor/modernizr.js"></script>
<script src="https://xesscorp.github.io/skidl/docs/_site/assets/js/foundation.min.js"></script>
<script>window.jQuery || document.write('<script src="http://localhost:4000/assets/js/vendor/jquery-1.11.1.min.js"><\/script>')</script>
<script src="http://localhost:4000/assets/js/vendor/modernizr.js"></script>
<script src="http://localhost:4000/assets/js/foundation.min.js"></script>

<script src="https://xesscorp.github.io/skidl/docs/_site/assets/js/notepad.js"></script>
<script src="https://xesscorp.github.io/skidl/docs/_site/assets/js/scripts.min.js"></script>
<script src="https://xesscorp.github.io/skidl/docs/_site/assets/js/vendor/nprogress.js"></script>
<script src="http://localhost:4000/assets/js/notepad.js"></script>
<script src="http://localhost:4000/assets/js/scripts.min.js"></script>
<script src="http://localhost:4000/assets/js/vendor/nprogress.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/sigma.js/1.0.3/sigma.min.js"></script>

<script>
Expand Down
Loading

0 comments on commit a5886f6

Please sign in to comment.