diff --git a/COPYING b/COPYING index 9fd87c7f..399ee62a 100644 --- a/COPYING +++ b/COPYING @@ -1,4 +1,4 @@ -sandboxos - An operating system for the web. +Tilde Friends - An operating system for the web. Copyright (C) 2014 Cory McWilliams This program is free software: you can redistribute it and/or modify diff --git a/README.md b/README.md index 4d6d5ecc..3632b192 100644 --- a/README.md +++ b/README.md @@ -17,16 +17,11 @@ Tilde Friends is [routinely](https://www.unprompted.com/projects/build/tildefrie ``` ## Running -Running the built sandbox executable will start a web server. This is a good starting point: . +Running the built tildefriends executable will start a web server. This is a good starting point: . -To grant users administrator privileges, create a JSON file named data/auth/permissions.js containing a list of users and their permissions, like this: -``` -{ - "cory": ["administrator"] -} -``` +The first use to create an account and log in will be granted administrative privileges. Everything can be managed entirely from the web interface. -This is a work in progress. Everything else can be managed entirely from the web interface. +This is a work in progress. ## License All code unless otherwise noted in [COPYING](https://www.unprompted.com/projects/browser/projects/tildefriends/trunk/COPYING) is provided under the [Affero GPL 3.0](https://www.unprompted.com/projects/browser/projects/tildefriends/trunk/LICENSE) license. diff --git a/SConstruct b/SConstruct index 71332340..50dfe5a0 100644 --- a/SConstruct +++ b/SConstruct @@ -94,9 +94,9 @@ if env['package'] and sys.platform == 'win32': files += listAllFiles('packages') files += listAllFiles('core') env.Package( - NAME='SandboxOS', - target='dist/SandboxOS-win32.zip', + NAME='TildeFriends', + target='dist/TildeFriends-win32.zip', PACKAGETYPE='zip', - PACKAGEROOT='SandboxOS-win32', + PACKAGEROOT='TildeFriends-win32', source=files )