mirror of
https://codeberg.org/TicklishHoneyBee/CLIte.git
synced 2026-03-11 09:04:37 +00:00
add license (BSD 3 clause), bump version, and update docs
This commit is contained in:
parent
bfd5f850c8
commit
f109933533
4 changed files with 37 additions and 5 deletions
|
|
@ -1,6 +1,6 @@
|
|||
var clite = {
|
||||
state:{
|
||||
version:'0.3.9',
|
||||
version:'0.4.0',
|
||||
isinit:false,
|
||||
runlevel:1
|
||||
},
|
||||
|
|
@ -448,7 +448,8 @@ clite/core.js:/usr/clite/core.js:0:0:-rw-r--r--
|
|||
clite/core.css:/usr/clite/web/core.css:0:0:-rw-r--r--
|
||||
data/intro.txt:/usr/share/introduction:0:0:-rw-rw-r--
|
||||
data/about.txt:/usr/share/site/about:0:0:-rw-rw-r--
|
||||
readme.txt:/usr/clite/readme:0:0:-rw-r--r--`;
|
||||
readme.txt:/usr/clite/readme:0:0:-rw-r--r--
|
||||
license.txt:/etc/license:0:0:-rw-r--r--`;
|
||||
init2(d);
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -18,3 +18,4 @@ readme.txt:/usr/share/docs/readme.txt:0:0:-rw-r--r--
|
|||
readme-libs.txt:/usr/share/docs/readme-libs.txt:0:0:-rw-r--r--
|
||||
readme-programs.txt:/usr/share/docs/readme-programs.txt:0:0:-rw-r--r--
|
||||
readme-internals.txt:/usr/share/docs/readme-internals.txt:0:0:-rw-r--r--
|
||||
license.txt:/etc/license:0:0:-rw-r--r--
|
||||
|
|
|
|||
26
license.txt
Normal file
26
license.txt
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
Copyright 2023 Lisa 'TicklishHoneyBee' Milne
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are
|
||||
met:
|
||||
|
||||
1. Redistributions of source code must retain the above copyright notice,
|
||||
this list of conditions and the following disclaimer.
|
||||
2. Redistributions in binary form must reproduce the above copyright
|
||||
notice, this list of conditions and the following disclaimer in the
|
||||
documentation and/or other materials provided with the distribution.
|
||||
3. Neither the name of the copyright holder nor the names of its
|
||||
contributors may be used to endorse or promote products derived from
|
||||
this software without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
|
||||
IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
||||
TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
|
||||
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
|
||||
TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
||||
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
||||
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
||||
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
10
readme.txt
10
readme.txt
|
|
@ -4,8 +4,8 @@ Welcome to CLIte (pronounced like 'site' with an added L, or like 'slight').
|
|||
CLIte is an experimental javascript project based on answering the
|
||||
question no one asked: "What if a website worked like a Unix Terminal?"
|
||||
|
||||
CLIte is licensed under the GNU Affero General Public License, V3.
|
||||
Though this may change.
|
||||
CLIte is licensed under the "3 clause BSD" style license, which may be
|
||||
viewed in license.txt or at /etc/license inside a running CLIte system.
|
||||
|
||||
A functioning test instance of CLIte is available at
|
||||
http://www.ltmnet.com/clite/index.html
|
||||
|
|
@ -31,6 +31,8 @@ less - simple text file viewer, up and down arrows will scroll the
|
|||
|
||||
file - determines the file type
|
||||
|
||||
sh - the CLIte shell
|
||||
|
||||
reboot - reboots the system, this will force-reload all javascript, so
|
||||
helps get around issues with browser cache
|
||||
|
||||
|
|
@ -44,6 +46,8 @@ chmod - change file modes (permissions)
|
|||
|
||||
mkdir - make a directory
|
||||
|
||||
date - view the current system date
|
||||
|
||||
|
||||
Under Development:
|
||||
view - file viewer, should display files something like the way a
|
||||
|
|
@ -53,7 +57,7 @@ view - file viewer, should display files something like the way a
|
|||
Running any command with the argument -? will give you help for that
|
||||
program.
|
||||
|
||||
The shell supports argument in "quotes" and 'single quotes', as well as
|
||||
The shell supports arguments in "quotes" and 'single quotes', as well as
|
||||
$VARIABLES (environment variables include PATH, USER, PWD, and HOME).
|
||||
Support for `command substitution` is in progress.
|
||||
Some tabfill support is functional, but more work is needed to tabfill
|
||||
|
|
|
|||
Loading…
Reference in a new issue