-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update gh-pages with the release candidate for Novus release (#52)
Highlights: palette expansion, an audio module, SVG-based complex geometry, and documentation/demo fixes.
- Loading branch information
Showing
45 changed files
with
1,653 additions
and
418 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,31 @@ | ||
LCARS | ||
===== | ||
LCARS (Library Computer Access Retrieval System) | ||
================================================ | ||
|
||
LCARS is a CSS framework like [Bootstrap](http://getbootstrap.com/), [Foundation](http://foundation.zurb.com/), [Topcoat](http://topcoat.io/), [Brick](http://mozilla.github.io/brick/index.html), or [Pure](http://purecss.io/). | ||
|
||
It's purpose is to create websitse inspired by the user interface of a popular sci-fi franchise. | ||
|
||
Lcars is written in [Stylus](http://learnboost.github.io/stylus/). | ||
|
||
## Demo And Documentation | ||
|
||
[See](http://joernweissenborn.github.io/lcars/) | ||
|
||
## Problems Or Feature Requests | ||
|
||
Please file an issue, I am happy to help! | ||
|
||
## Contributing | ||
|
||
Pull requests are very welcome, but please relate it to an issue. | ||
|
||
## Note for users of the original version | ||
|
||
The library has been completly rewritten, dropping things like dividers and menu. If you want to use the old version, checkout the [legacy release](https://github.com/joernweissenborn/lcars/releases/tag/0.1). | ||
|
||
## Thanks | ||
|
||
Thanks to @garrett- for initial development! | ||
Thanks to @jrwarwick for audio and SVG support! | ||
Thanks to @xenziffen for various fixes and CSS enhancements! | ||
|
||
Site Repo for the [LCARS Project](https://github.com/Garrett-/lcars) |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#!/bin/sh | ||
if [ $# -eq 0 ] ; then | ||
echo ' USAGE: $0 sourceaudiofile.wav' | ||
echo ' bonus tip: for audf in *.wav *.mp3 ; do ./transcode.sh $audf ; done' | ||
exit 0 | ||
fi | ||
|
||
FNAMEBASE=$(echo $1 | cut -f 1 -d '.') | ||
|
||
if (which avconv) ; then | ||
avconv -i $1 -c:a libvorbis $FNAMEBASE.webm | ||
avconv -i $1 -loglevel verbose -strict experimental -c:a aac -ab 64k $FNAMEBASE.m4a | ||
avconv -i $1 -c:a libvorbis $FNAMEBASE.ogg | ||
elif (which ffmpeg) ; then | ||
ffmpeg -i $1 -c:a libvorbis $FNAMEBASE.webm | ||
ffmpeg -i $1 -c:a aac $FNAMEBASE.m4a | ||
ffmpeg -i $1 -c:a libvorbis $FNAMEBASE.ogg | ||
else | ||
echo "could not find supported transcoding program like ffmpeg, sorry." | ||
exit 1 | ||
fi |
Oops, something went wrong.