Hi Mat,
I think the easiest way to do this is to use Node.js. (If there's an easier way, I'm sure someone else will soon let us know :)
Download
a copy of Jeremy's repository by clicking "Download ZIP" at
https://github.com/Jermolene/TiddlyWiki5/tree/master and unzip it.
Then do the same for Felix's repository. His zip file contains a
dist folder with a
felixhayashi subfolder. Copy the
felixhayashi folder so that it becomes a subfolder of the
TiddlyWiki5/plugins folder in your unzipped copy of Jeremy's repository, i.e. so that it sits alongside the existing
tiddlywiki folder there.
Then go to one of the subfolders of
editions, e.g.
empty or (to get some content to play with)
tw5.com. In there you'll find a text file called
tiddlywiki.info,
which contains (among other things) a list of plugins. Add Felix's
plugin to the end of the list, with a comma separating it from the
previous item, like this:
"plugins": [
"tiddlywiki/googleanalytics",
...
"tiddlywiki/railroad"
,
"felixhayashi/topstoryview" ],
Now all you need do is:
- go to a terminal window or command prompt,
- change directory to the TiddlyWiki5 folder of your copy of Jeremy's repository (where a file called tiddlywiki.js resides),
- run node tiddlywiki.js editions/empty --server (changing empty to whichever edition you chose to add the plugin to),
- and in your browser go to http://127.0.01:8080/ (or whatever address Node.js tells you it's serving the wiki on).
Good luck!
– æ