Skip to content

Commit

Permalink
Update gh-pages with the release candidate for Novus release (#52)
Browse files Browse the repository at this point in the history
Highlights: palette expansion, an audio module, SVG-based complex geometry, and documentation/demo fixes.
  • Loading branch information
jrwarwick authored Jun 26, 2020
1 parent 1e7a056 commit c6ca7ed
Show file tree
Hide file tree
Showing 45 changed files with 1,653 additions and 418 deletions.
5 changes: 3 additions & 2 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
The MIT License (MIT)

Copyright (c) 2014 Garrett-
Copyright (c) 2014 Garrett- original edition and some remaining portions.
Copyright (c) 2020 Jörn Weißenborn (joernweissenborn) all other portions.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand All @@ -18,4 +19,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
SOFTWARE.
33 changes: 30 additions & 3 deletions README.md
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 added audio/alert.m4a
Binary file not shown.
Binary file added audio/alert.ogg
Binary file not shown.
Binary file added audio/alert.webm
Binary file not shown.
Binary file added audio/input_ack.wav
Binary file not shown.
Binary file added audio/input_nak.wav
Binary file not shown.
Binary file added audio/output_bel.wav
Binary file not shown.
Binary file added audio/output_soh.wav
Binary file not shown.
Binary file added audio/ready.m4a
Binary file not shown.
Binary file added audio/ready.ogg
Binary file not shown.
Binary file added audio/ready.webm
Binary file not shown.
Binary file added audio/red_alert.m4a
Binary file not shown.
Binary file added audio/red_alert.ogg
Binary file not shown.
Binary file added audio/red_alert.webm
Binary file not shown.
Binary file added audio/src/commopen.wav
Binary file not shown.
Binary file added audio/src/tng_phaser5_clean.mp3
Binary file not shown.
Binary file added audio/src/tng_red_alert3.mp3
Binary file not shown.
Binary file added audio/src/tng_replicator.mp3
Binary file not shown.
Binary file added audio/src/tng_torpedo_clean.mp3
Binary file not shown.
Binary file added audio/src/tng_transporter2_clean_top.mp3
Binary file not shown.
Binary file added audio/src/tng_warp5_clean.mp3
Binary file not shown.
Binary file added audio/tactinput_acknowledge.m4a
Binary file not shown.
Binary file added audio/tactinput_acknowledge.ogg
Binary file not shown.
Binary file added audio/tactinput_acknowledge.webm
Binary file not shown.
Binary file added audio/tactinput_alt_acknowledge.m4a
Binary file not shown.
Binary file added audio/tactinput_alt_acknowledge.ogg
Binary file not shown.
Binary file added audio/tactinput_alt_acknowledge.webm
Binary file not shown.
Binary file added audio/tactinput_neg_acknowledge.m4a
Binary file not shown.
Binary file added audio/tactinput_neg_acknowledge.ogg
Binary file not shown.
Binary file added audio/tactinput_neg_acknowledge.webm
Binary file not shown.
21 changes: 21 additions & 0 deletions audio/transcode.sh
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
Loading

0 comments on commit c6ca7ed

Please sign in to comment.