From 5f25458b640518c29806d1f6d2f12cdbe1ffefd6 Mon Sep 17 00:00:00 2001 From: Cory McWilliams Date: Sat, 12 Mar 2016 19:00:07 +0000 Subject: [PATCH] Missed a bunch of sandbox -> tildefriends updates. git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@3159 ed5197a5-7fde-0310-b194-c3ffbd925b24 --- COPYING | 2 +- README.md | 11 +++-------- SConstruct | 6 +++--- 3 files changed, 7 insertions(+), 12 deletions(-) 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 )