@frametrail/frametrail 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +19 -0
- package/README.md +29 -0
- package/frametrail.min.css +8 -0
- package/frametrail.min.js +13 -0
- package/package.json +16 -0
package/LICENSE.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# License
|
|
2
|
+
|
|
3
|
+
FrameTrail is dual licensed under the terms of the MIT license (below) and the [GPL](http://www.gnu.org/licenses/gpl-3.0.html).
|
|
4
|
+
|
|
5
|
+
#### Library Licenses:
|
|
6
|
+
|
|
7
|
+
* For licenses of included libraries, please check the "_/lib" folder in the repository.
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
## MIT License
|
|
12
|
+
|
|
13
|
+
Copyright (c) 2016 Joscha Jaeger
|
|
14
|
+
|
|
15
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
16
|
+
|
|
17
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
18
|
+
|
|
19
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 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.
|
package/README.md
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# FrameTrail v1.0.0 — Open Hypervideo Environment
|
|
2
|
+
|
|
3
|
+
FrameTrail works in three modes:
|
|
4
|
+
|
|
5
|
+
1. **Server mode** (Apache/PHP) — Multi-user, file uploads, collaborative editing
|
|
6
|
+
2. **Local folder mode** (Chrome/Edge) — Single-user, edits saved to a local `_data` folder via the File System Access API
|
|
7
|
+
3. **In-memory mode** (all browsers) — View and edit in-browser; export changes as JSON via Save As
|
|
8
|
+
|
|
9
|
+
## Quick Start
|
|
10
|
+
|
|
11
|
+
**Server mode:**
|
|
12
|
+
1. Extract this archive into your web server directory
|
|
13
|
+
2. Run `php -S localhost:8080` (requires PHP 7.4+) and open `http://localhost:8080`
|
|
14
|
+
3. Follow the setup wizard (creates `_data/` — directory needs write permissions)
|
|
15
|
+
|
|
16
|
+
**Local folder mode (no server):**
|
|
17
|
+
1. Open `index.html` in Chrome or Edge
|
|
18
|
+
2. Select or create a `_data` folder when prompted — full editing, no server needed
|
|
19
|
+
|
|
20
|
+
**In-memory mode:**
|
|
21
|
+
Open `index.html` in any browser. View and edit contents; use Save As to export your data.
|
|
22
|
+
|
|
23
|
+
## Documentation & Source
|
|
24
|
+
|
|
25
|
+
https://github.com/OpenHypervideo/FrameTrail
|
|
26
|
+
|
|
27
|
+
## License
|
|
28
|
+
|
|
29
|
+
FrameTrail is dual licensed under MIT and GPL v3. See LICENSE.md for details.
|