3 Commits

Author SHA1 Message Date
Soren I. Bjornstad
f2d9a2abe6 bump version 2021-09-22 10:58:25 -05:00
Soren I. Bjornstad
cb55a967d0 remove build folder prior to building wheels
Otherwise files that have been removed will still show up in the wheel
-- but not in the source distribution -- which is super confusing and
wrong. No idea why Python doesn't check this itself.
2021-09-22 10:57:18 -05:00
Soren I. Bjornstad
52c0daedbb fix tray 2021-09-22 10:54:06 -05:00
6 changed files with 27 additions and 4 deletions

View File

@@ -18,9 +18,9 @@ copyright = '2021 Soren Bjornstad'
author = 'Soren Bjornstad'
# The short X.Y version
version = "0.1.2"
version = "0.1.3"
# The full version, including alpha/beta/rc tags
release = "0.1.2"
release = "0.1.3"
# -- General configuration ---------------------------------------------------

View File

@@ -822,6 +822,8 @@ Error message and password prompt
<li>$:/sib/Tools/TagReplace</li>
<li>$:/sib/Tools/Tray</li>
<li>$:/sib/Tools/Tray/Template</li>
<li>$:/SiteSubtitle</li>
@@ -19543,6 +19545,11 @@ Remove the tag &lt;$tiddler tiddler={{$:/temp/RenameTags/search}}&gt;&lt;$transc
&lt;/$list&gt;
&lt;/$reveal&gt;</pre>
</div>
<div caption="Tray" created="20210701023215046" creator="soren" description="Items we're currently working on but don't need to leave open. Drag and drop a link to a tiddler to add it." list="" modified="20210920155431768" modifier="soren" tags="Meta Tool" title="$:/sib/Tools/Tray" tooltype="aggregator" type="text/vnd.tiddlywiki">
<pre>Stuff I'm working on but don't need to keep open:
&lt;&lt;list-links-draggable &quot;$:/sib/Tools/Tray&quot; itemTemplate:&quot;$:/sib/Tools/Tray/Template&quot;&gt;&gt;</pre>
</div>
<div created="20210711192716590" creator="soren" modified="20210920140956221" modifier="soren" tags="" title="$:/sib/Tools/Tray/Template" type="text/vnd.tiddlywiki">
<pre>\define remove-tiddler()
&lt;$action-listops $tiddler=&quot;$:/sib/Tools/Tray&quot; $field=&quot;list&quot; $filter=&quot;[enlist{$:/sib/Tools/Tray!!list}] -[all[current]]&quot;/&gt;

View File

@@ -1,6 +1,7 @@
#!/bin/bash
set -e
rm -rf build/
rm -f dist/*
mkdir -p dist
python setup.py sdist bdist_wheel

View File

@@ -9,7 +9,7 @@ with open("README.md", "r") as fh:
setuptools.setup(
name="tzk",
version="0.1.2",
version="0.1.3",
author="Soren I. Bjornstad",
author_email="zettelkasten@sorenbjornstad.com",
description="Build tool for TiddlyWiki Zettelkasten",

View File

@@ -0,0 +1,15 @@
caption: Tray
created: 20210701023215046
creator: soren
description: Items we're currently working on but don't need to leave open. Drag and drop a link to a tiddler to add it.
list:
modified: 20210920155431768
modifier: soren
tags: Meta Tool
title: $:/sib/Tools/Tray
tooltype: aggregator
type: text/vnd.tiddlywiki
Stuff I'm working on but don't need to keep open:
<<list-links-draggable "$:/sib/Tools/Tray" itemTemplate:"$:/sib/Tools/Tray/Template">>

View File

@@ -10,7 +10,7 @@ import sys
from typing import Any, Callable, Dict, NoReturn
TZK_VERSION = "0.1.2"
TZK_VERSION = "0.1.3"
class BuildError(Exception):