cozyclay 1.3.0 → 1.6.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/CHANGELOG.md +130 -6
- package/LICENSE +67 -80
- package/LICENSES/GPL-3.0-or-later.txt +674 -0
- package/LICENSING.md +32 -0
- package/README.md +69 -12
- package/THIRD_PARTY_NOTICES.md +20 -2
- package/bin/cozyclay.mjs +230 -88
- package/bin/mcp-runtime.mjs +115 -0
- package/bin/open-browser.mjs +10 -0
- package/bin/package-signature.mjs +95 -0
- package/bin/telemetry-state.mjs +111 -0
- package/bin/update-check.mjs +158 -0
- package/dist/ai-camera-control/index.html +4 -5
- package/dist/app/index.html +3 -4
- package/dist/assets/app-CqOk49Bk.css +1 -0
- package/dist/assets/app-G55dPEDB.js +4811 -0
- package/dist/assets/module-MzlRiBjI.js +3 -0
- package/dist/cozyclay-package.json +1 -0
- package/dist/favicon.ico +0 -0
- package/dist/icons/apple-touch-icon.png +0 -0
- package/dist/icons/icon-192.png +0 -0
- package/dist/icons/icon-32.png +0 -0
- package/dist/icons/icon-512.png +0 -0
- package/dist/icons/icon-maskable-512.png +0 -0
- package/dist/index.html +27 -23
- package/dist/sw.js +2 -1
- package/mcp/LIVE-PROTOCOL.md +93 -12
- package/mcp/README.md +28 -10
- package/mcp/ardy-prompts.mjs +96 -78
- package/mcp/live-hub.mjs +231 -17
- package/mcp/package.json +5 -2
- package/mcp/runtime/package-lock.json +1211 -0
- package/mcp/runtime/package.json +16 -0
- package/mcp/server.mjs +798 -184
- package/package.json +32 -8
- package/src/App.jsx +2744 -713
- package/src/analytics-toggle.jsx +24 -0
- package/src/analytics.js +386 -0
- package/src/ardy/motion-edit.js +172 -0
- package/src/ardy/pose-pin.js +97 -0
- package/src/ardy/root-drop.js +180 -0
- package/src/ardy/timeline-resize.js +3 -1
- package/src/ardy/timeline.jsx +362 -73
- package/src/ardy/waypoints.js +4 -1
- package/src/asset-pane.jsx +339 -21
- package/src/asset-shelf.js +82 -0
- package/src/camera-block.js +42 -0
- package/src/camera-follow.js +149 -27
- package/src/camera-move.js +45 -19
- package/src/camera-rail-schedule.js +6 -0
- package/src/cuts.js +67 -54
- package/src/dualview.jsx +45 -5
- package/src/generation/generation-request.js +17 -0
- package/src/generation/use-generation.js +3 -14
- package/src/hierarchy-model.js +5 -3
- package/src/live-control.js +22 -2
- package/src/main.jsx +2 -0
- package/src/mp4-muxer.js +52 -0
- package/src/object-gizmo.jsx +211 -16
- package/src/offscreen-export.js +166 -0
- package/src/otio.js +217 -0
- package/src/planview.jsx +18 -10
- package/src/pose-extract/detector.js +7 -2
- package/src/pose-extract/image-frame.js +40 -0
- package/src/pose-extract/index.js +2 -1
- package/src/pose-extract/take.js +27 -0
- package/src/poses.js +19 -265
- package/src/posestudio.jsx +82 -8
- package/src/project-poses.js +9 -0
- package/src/project.js +86 -2
- package/src/pwa.js +6 -0
- package/src/room.jsx +77 -4
- package/src/sample-at.js +136 -0
- package/src/scene-asset-cache.js +137 -96
- package/src/scene-assets.js +94 -4
- package/src/scene-objects.js +82 -19
- package/src/scenes.js +34 -6
- package/src/shot-authoring.js +65 -28
- package/src/shot.js +53 -13
- package/src/source-offer.jsx +12 -0
- package/src/stable-items.js +83 -0
- package/src/styles.css +882 -115
- package/src/ui.jsx +32 -4
- package/src/usd-camera.js +145 -0
- package/tools/ardy/BRIDGE.md +8 -5
- package/tools/ardy/README.md +15 -0
- package/tools/ardy/artifacts.mjs +34 -0
- package/tools/ardy/bridge.mjs +32 -11
- package/tools/ardy/extract.mjs +16 -11
- package/tools/ardy/footage.mjs +15 -10
- package/tools/ardy/runners/local.mjs +4 -1
- package/tools/ardy/setup-text-encoder.py +14 -4
- package/tools/dev-full.mjs +63 -5
- package/tools/generation/bridge.mjs +14 -1
- package/tools/metrics/archive-traffic.mjs +1 -1
- package/tools/metrics-snapshot.mjs +98 -0
- package/tools/prepare-package.mjs +50 -0
- package/tools/process-supervisor.mjs +108 -2
- package/tools/run-tests.mjs +173 -0
- package/dist/assets/app-B3U5aut1.js +0 -4811
- package/dist/assets/app-BrRF0wso.css +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,128 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.6.0
|
|
4
|
+
|
|
5
|
+
The official npm package now records anonymous product usage so downloads can
|
|
6
|
+
be distinguished from real launches and returning use.
|
|
7
|
+
|
|
8
|
+
- `npx cozyclay`, `bunx cozyclay`, and global `cclay` launches get a
|
|
9
|
+
signed-package-verified anonymous installation ID.
|
|
10
|
+
- The existing scene, edit, motion, export, and activation funnel is available
|
|
11
|
+
for npm sessions with `distribution: npm` and `app_version` properties.
|
|
12
|
+
- Source checkouts, forks, CI, tests, malformed or unsigned packages, and
|
|
13
|
+
opted-out launches remain untracked.
|
|
14
|
+
- `cclay telemetry status|on|off` controls the package-wide setting; the
|
|
15
|
+
in-app toggle stays synchronized with it.
|
|
16
|
+
- URL/referrer/campaign-derived values are scrubbed before any event leaves the
|
|
17
|
+
browser, and corrupted telemetry state fails closed.
|
|
18
|
+
|
|
19
|
+
## 1.5.0
|
|
20
|
+
|
|
21
|
+
The release where the camera can climb a shaped path, recordings leave the studio as
|
|
22
|
+
standard MP4 files, and generated falls finally reach the ground.
|
|
23
|
+
|
|
24
|
+
### Shape a crane move
|
|
25
|
+
|
|
26
|
+
Rail Follow now carries a persisted crane-height profile with two to eight points instead
|
|
27
|
+
of only a start and end height. The camera evaluates the profile with a monotone cubic
|
|
28
|
+
curve, so it passes through every authored height without overshooting. Purple handles in
|
|
29
|
+
the scene and matching markers in each Shot card stay synchronized: drag vertically to set
|
|
30
|
+
height, Shift-drag along the rail, double-click to add a point, and delete an interior point.
|
|
31
|
+
One undo reverses one complete gesture, and older `{start,end}` projects migrate to pinned
|
|
32
|
+
endpoints automatically.
|
|
33
|
+
|
|
34
|
+
### Record a real MP4
|
|
35
|
+
|
|
36
|
+
Record now downloads a fast-start H.264 MP4 at 24 fps instead of WebM. The exporter tries
|
|
37
|
+
High, Main, then Baseline AVC profiles, keeps frame-addressed deterministic rendering, and
|
|
38
|
+
fails by name when the browser has no compatible H.264 WebCodecs encoder rather than
|
|
39
|
+
producing a misleading MP4 that desktop editors cannot open. Mediabunny performs the
|
|
40
|
+
in-browser muxing and is documented in the third-party notices.
|
|
41
|
+
|
|
42
|
+
### Falls that read in previs
|
|
43
|
+
|
|
44
|
+
When generated motion walks off its support, CozyClay can stage a ballistic root drop with
|
|
45
|
+
horizontal drift, a readable fall clock, and an impact hold instead of leaving the character
|
|
46
|
+
suspended at the roof edge. Motion completion now means the editor acknowledged and
|
|
47
|
+
installed the take: explicit rejection fails visibly, reconnects do not duplicate the
|
|
48
|
+
installation, and an uncertain lost acknowledgement is never retried as though nothing
|
|
49
|
+
happened.
|
|
50
|
+
|
|
51
|
+
### ARDY bridge fixes
|
|
52
|
+
|
|
53
|
+
- Local runner options now reach the bridge instead of disappearing between processes.
|
|
54
|
+
- Camera-clause cleanup no longer mistakes ordinary object nouns for camera instructions.
|
|
55
|
+
- The prompt guide distinguishes measured upstream behavior from local authoring heuristics.
|
|
56
|
+
- Demo and operations documentation now use supported options and cite the four-second
|
|
57
|
+
waypoint-history evidence honestly.
|
|
58
|
+
|
|
59
|
+
## 1.4.1
|
|
60
|
+
|
|
61
|
+
Gizmo drags survive past their first tick again. The split-camera work in 1.4.0 wrapped the
|
|
62
|
+
gizmo's change callback in a shot-camera dispatcher that dropped the drag-transaction token,
|
|
63
|
+
so every arrow, plane, knob, and ring drag was closed by its own first move — objects moved
|
|
64
|
+
one snap step and stopped. The token now round-trips, and the gizmo suite drives the ring
|
|
65
|
+
with a real arc and the plan puck in the Top-View inset, matching how the studio actually
|
|
66
|
+
works today.
|
|
67
|
+
|
|
68
|
+
## 1.4.0
|
|
69
|
+
|
|
70
|
+
The release where every edit can be taken back.
|
|
71
|
+
|
|
72
|
+
### Undo, everywhere
|
|
73
|
+
|
|
74
|
+
One Ctrl+Z history now covers the whole editor, not just character moves. Newly undoable:
|
|
75
|
+
|
|
76
|
+
- **Prompt blocks** — add, remove, drag, edge-resize, and text edits (one entry per editing
|
|
77
|
+
session, not per keystroke).
|
|
78
|
+
- **Root waypoints** — floor-click placement, timeline removal, and Top-View drags.
|
|
79
|
+
- **Camera authoring** — camera keys (add / re-time / remove / clear), camera-block settings,
|
|
80
|
+
rail schedule moves and resizes, rail removal, and viewport or plan framing commits.
|
|
81
|
+
- **Shots** — delete, add, split, duplicate, reorder, boundary resize, and rename.
|
|
82
|
+
- **The Full-Body take** — segment cuts, retimes, deletions, trims, and clearing the take
|
|
83
|
+
(the cleared clip, IK keys, and stature all come back).
|
|
84
|
+
- **Poses and the cast** — pose apply / reset / save, model swap, tint, subject text, and
|
|
85
|
+
inspector position scrubs.
|
|
86
|
+
- **IK keys** — add, remove, and drag-bake; undo snapshots now carry the key map itself.
|
|
87
|
+
|
|
88
|
+
Every continuous drag records exactly once at gesture start, so a long drag is one Ctrl+Z,
|
|
89
|
+
never a hundred.
|
|
90
|
+
|
|
91
|
+
### Cut the take like film
|
|
92
|
+
|
|
93
|
+
The Full-Body strip is now a cutting room: cut at the playhead, then grab a segment's amber
|
|
94
|
+
right-edge grip and stretch it — the width IS the playback rate (wider is slower, 0.1×–4× on
|
|
95
|
+
the same grid as the numeric editor). Right-click a segment to delete it outright. All of it
|
|
96
|
+
is non-destructive: the source frames stay whole, and a right-click on a trim handle still
|
|
97
|
+
restores the full take.
|
|
98
|
+
|
|
99
|
+
### Two cameras, one stage
|
|
100
|
+
|
|
101
|
+
The editing view and the recording camera are no longer the same eye. The main pane belongs
|
|
102
|
+
to a free editor camera — fly it, inspect the set, scrub playback — while the shot camera
|
|
103
|
+
records through a chrome-free 16:9 preview and stands in the scene as a selectable ghost you
|
|
104
|
+
block like any other body. Look-through hands you the old framing-by-flying when you want it,
|
|
105
|
+
and leaves your view alone when you don't.
|
|
106
|
+
|
|
107
|
+
### A hardened MCP
|
|
108
|
+
|
|
109
|
+
The server now enforces loopback-only hosting, rejects forged HTTP origins, refuses project
|
|
110
|
+
files with hard links, isolates live scene documents and generation artifacts per session,
|
|
111
|
+
and preserves motion-job ownership across reconnects. HTTP session children inherit the
|
|
112
|
+
parent's configuration (a configured bridge URL no longer silently vanishes), and a session
|
|
113
|
+
that cannot own the live editor port now says exactly why instead of pretending no editor
|
|
114
|
+
exists.
|
|
115
|
+
|
|
116
|
+
### Everything else
|
|
117
|
+
|
|
118
|
+
- **Selection** — clicking empty floor or sky reliably clears the selection; the selection
|
|
119
|
+
cage's generous line hitbox no longer swallows the press.
|
|
120
|
+
- **Timeline** — the camera block's preview button plays its shot instead of throwing.
|
|
121
|
+
- **CI** — pull requests are gated on the node and browser suites.
|
|
122
|
+
- CozyClay now ships as an `AGPL-3.0-or-later` combined work. Modified versions offered over
|
|
123
|
+
a network must offer their users the corresponding source, and the Studio footer carries
|
|
124
|
+
that source offer.
|
|
125
|
+
|
|
3
126
|
## 1.3.0
|
|
4
127
|
|
|
5
128
|
The release where the studio stops being something only a person can drive.
|
|
@@ -19,12 +142,13 @@ with — `shot.js` for film vocabulary, `scenes.js` for the stage, `camera-move.
|
|
|
19
142
|
the server and the UI cannot disagree about what a 35 mm medium shot is.
|
|
20
143
|
|
|
21
144
|
- **Live or headless.** With a studio tab open, tool calls drive the real viewport over a local
|
|
22
|
-
socket. With no tab,
|
|
23
|
-
and write `.cclayproject` files
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
145
|
+
socket. With no tab, scene/project tools still block scenes, derive framing, render prompts,
|
|
146
|
+
and write `.cclayproject` files; capture, prompt-block installation, motion generation and
|
|
147
|
+
atomic live batches remain editor-only.
|
|
148
|
+
- **Motion from plain beats.** `generate_motion` preserves composite physical wording while
|
|
149
|
+
stripping camera, scenery and internal-state language ARDY cannot animate, splits only beats
|
|
150
|
+
that exceed ARDY's duration bound, and lands each phase as a Prompt Block on the timeline.
|
|
151
|
+
- **24 tools**, all documented in [`mcp/README.md`](mcp/README.md).
|
|
28
152
|
|
|
29
153
|
### Cut a photograph out and stand it up
|
|
30
154
|
|
package/LICENSE
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
GNU GENERAL PUBLIC LICENSE
|
|
2
|
-
Version 3,
|
|
1
|
+
GNU AFFERO GENERAL PUBLIC LICENSE
|
|
2
|
+
Version 3, 19 November 2007
|
|
3
3
|
|
|
4
4
|
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
|
5
5
|
Everyone is permitted to copy and distribute verbatim copies
|
|
@@ -7,17 +7,15 @@
|
|
|
7
7
|
|
|
8
8
|
Preamble
|
|
9
9
|
|
|
10
|
-
The GNU General Public License is a free, copyleft license for
|
|
11
|
-
software and other kinds of works
|
|
10
|
+
The GNU Affero General Public License is a free, copyleft license for
|
|
11
|
+
software and other kinds of works, specifically designed to ensure
|
|
12
|
+
cooperation with the community in the case of network server software.
|
|
12
13
|
|
|
13
14
|
The licenses for most software and other practical works are designed
|
|
14
15
|
to take away your freedom to share and change the works. By contrast,
|
|
15
|
-
|
|
16
|
+
our General Public Licenses are intended to guarantee your freedom to
|
|
16
17
|
share and change all versions of a program--to make sure it remains free
|
|
17
|
-
software for all its users.
|
|
18
|
-
GNU General Public License for most of our software; it applies also to
|
|
19
|
-
any other work released this way by its authors. You can apply it to
|
|
20
|
-
your programs, too.
|
|
18
|
+
software for all its users.
|
|
21
19
|
|
|
22
20
|
When we speak of free software, we are referring to freedom, not
|
|
23
21
|
price. Our General Public Licenses are designed to make sure that you
|
|
@@ -26,44 +24,34 @@ them if you wish), that you receive source code or can get it if you
|
|
|
26
24
|
want it, that you can change the software or use pieces of it in new
|
|
27
25
|
free programs, and that you know you can do these things.
|
|
28
26
|
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
that
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
products. If such problems arise substantially in other domains, we
|
|
58
|
-
stand ready to extend this provision to those domains in future versions
|
|
59
|
-
of the GPL, as needed to protect the freedom of users.
|
|
60
|
-
|
|
61
|
-
Finally, every program is threatened constantly by software patents.
|
|
62
|
-
States should not allow patents to restrict development and use of
|
|
63
|
-
software on general-purpose computers, but in those that do, we wish to
|
|
64
|
-
avoid the special danger that patents applied to a free program could
|
|
65
|
-
make it effectively proprietary. To prevent this, the GPL assures that
|
|
66
|
-
patents cannot be used to render the program non-free.
|
|
27
|
+
Developers that use our General Public Licenses protect your rights
|
|
28
|
+
with two steps: (1) assert copyright on the software, and (2) offer
|
|
29
|
+
you this License which gives you legal permission to copy, distribute
|
|
30
|
+
and/or modify the software.
|
|
31
|
+
|
|
32
|
+
A secondary benefit of defending all users' freedom is that
|
|
33
|
+
improvements made in alternate versions of the program, if they
|
|
34
|
+
receive widespread use, become available for other developers to
|
|
35
|
+
incorporate. Many developers of free software are heartened and
|
|
36
|
+
encouraged by the resulting cooperation. However, in the case of
|
|
37
|
+
software used on network servers, this result may fail to come about.
|
|
38
|
+
The GNU General Public License permits making a modified version and
|
|
39
|
+
letting the public access it on a server without ever releasing its
|
|
40
|
+
source code to the public.
|
|
41
|
+
|
|
42
|
+
The GNU Affero General Public License is designed specifically to
|
|
43
|
+
ensure that, in such cases, the modified source code becomes available
|
|
44
|
+
to the community. It requires the operator of a network server to
|
|
45
|
+
provide the source code of the modified version running there to the
|
|
46
|
+
users of that server. Therefore, public use of a modified version, on
|
|
47
|
+
a publicly accessible server, gives the public access to the source
|
|
48
|
+
code of the modified version.
|
|
49
|
+
|
|
50
|
+
An older license, called the Affero General Public License and
|
|
51
|
+
published by Affero, was designed to accomplish similar goals. This is
|
|
52
|
+
a different license, not a version of the Affero GPL, but Affero has
|
|
53
|
+
released a new version of the Affero GPL which permits relicensing under
|
|
54
|
+
this license.
|
|
67
55
|
|
|
68
56
|
The precise terms and conditions for copying, distribution and
|
|
69
57
|
modification follow.
|
|
@@ -72,7 +60,7 @@ modification follow.
|
|
|
72
60
|
|
|
73
61
|
0. Definitions.
|
|
74
62
|
|
|
75
|
-
"This License" refers to version 3 of the GNU General Public License.
|
|
63
|
+
"This License" refers to version 3 of the GNU Affero General Public License.
|
|
76
64
|
|
|
77
65
|
"Copyright" also means copyright-like laws that apply to other kinds of
|
|
78
66
|
works, such as semiconductor masks.
|
|
@@ -549,35 +537,45 @@ to collect a royalty for further conveying from those to whom you convey
|
|
|
549
537
|
the Program, the only way you could satisfy both those terms and this
|
|
550
538
|
License would be to refrain entirely from conveying the Program.
|
|
551
539
|
|
|
552
|
-
13. Use with the GNU
|
|
540
|
+
13. Remote Network Interaction; Use with the GNU General Public License.
|
|
541
|
+
|
|
542
|
+
Notwithstanding any other provision of this License, if you modify the
|
|
543
|
+
Program, your modified version must prominently offer all users
|
|
544
|
+
interacting with it remotely through a computer network (if your version
|
|
545
|
+
supports such interaction) an opportunity to receive the Corresponding
|
|
546
|
+
Source of your version by providing access to the Corresponding Source
|
|
547
|
+
from a network server at no charge, through some standard or customary
|
|
548
|
+
means of facilitating copying of software. This Corresponding Source
|
|
549
|
+
shall include the Corresponding Source for any work covered by version 3
|
|
550
|
+
of the GNU General Public License that is incorporated pursuant to the
|
|
551
|
+
following paragraph.
|
|
553
552
|
|
|
554
553
|
Notwithstanding any other provision of this License, you have
|
|
555
554
|
permission to link or combine any covered work with a work licensed
|
|
556
|
-
under version 3 of the GNU
|
|
555
|
+
under version 3 of the GNU General Public License into a single
|
|
557
556
|
combined work, and to convey the resulting work. The terms of this
|
|
558
557
|
License will continue to apply to the part which is the covered work,
|
|
559
|
-
but the
|
|
560
|
-
|
|
561
|
-
combination as such.
|
|
558
|
+
but the work with which it is combined will remain governed by version
|
|
559
|
+
3 of the GNU General Public License.
|
|
562
560
|
|
|
563
561
|
14. Revised Versions of this License.
|
|
564
562
|
|
|
565
563
|
The Free Software Foundation may publish revised and/or new versions of
|
|
566
|
-
the GNU General Public License from time to time. Such new versions
|
|
567
|
-
be similar in spirit to the present version, but may differ in detail to
|
|
564
|
+
the GNU Affero General Public License from time to time. Such new versions
|
|
565
|
+
will be similar in spirit to the present version, but may differ in detail to
|
|
568
566
|
address new problems or concerns.
|
|
569
567
|
|
|
570
568
|
Each version is given a distinguishing version number. If the
|
|
571
|
-
Program specifies that a certain numbered version of the GNU General
|
|
569
|
+
Program specifies that a certain numbered version of the GNU Affero General
|
|
572
570
|
Public License "or any later version" applies to it, you have the
|
|
573
571
|
option of following the terms and conditions either of that numbered
|
|
574
572
|
version or of any later version published by the Free Software
|
|
575
573
|
Foundation. If the Program does not specify a version number of the
|
|
576
|
-
GNU General Public License, you may choose any version ever published
|
|
574
|
+
GNU Affero General Public License, you may choose any version ever published
|
|
577
575
|
by the Free Software Foundation.
|
|
578
576
|
|
|
579
577
|
If the Program specifies that a proxy can decide which future
|
|
580
|
-
versions of the GNU General Public License can be used, that proxy's
|
|
578
|
+
versions of the GNU Affero General Public License can be used, that proxy's
|
|
581
579
|
public statement of acceptance of a version permanently authorizes you
|
|
582
580
|
to choose that version for the Program.
|
|
583
581
|
|
|
@@ -635,40 +633,29 @@ the "copyright" line and a pointer to where the full notice is found.
|
|
|
635
633
|
Copyright (C) <year> <name of author>
|
|
636
634
|
|
|
637
635
|
This program is free software: you can redistribute it and/or modify
|
|
638
|
-
it under the terms of the GNU General Public License as published by
|
|
636
|
+
it under the terms of the GNU Affero General Public License as published by
|
|
639
637
|
the Free Software Foundation, either version 3 of the License, or
|
|
640
638
|
(at your option) any later version.
|
|
641
639
|
|
|
642
640
|
This program is distributed in the hope that it will be useful,
|
|
643
641
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
644
642
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
645
|
-
GNU General Public License for more details.
|
|
643
|
+
GNU Affero General Public License for more details.
|
|
646
644
|
|
|
647
|
-
You should have received a copy of the GNU General Public License
|
|
645
|
+
You should have received a copy of the GNU Affero General Public License
|
|
648
646
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
649
647
|
|
|
650
648
|
Also add information on how to contact you by electronic and paper mail.
|
|
651
649
|
|
|
652
|
-
If
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
The hypothetical commands `show w' and `show c' should show the appropriate
|
|
661
|
-
parts of the General Public License. Of course, your program's commands
|
|
662
|
-
might be different; for a GUI interface, you would use an "about box".
|
|
650
|
+
If your software can interact with users remotely through a computer
|
|
651
|
+
network, you should also make sure that it provides a way for users to
|
|
652
|
+
get its source. For example, if your program is a web application, its
|
|
653
|
+
interface could display a "Source" link that leads users to an archive
|
|
654
|
+
of the code. There are many ways you could offer source, and different
|
|
655
|
+
solutions will be better for different programs; see section 13 for the
|
|
656
|
+
specific requirements.
|
|
663
657
|
|
|
664
658
|
You should also get your employer (if you work as a programmer) or school,
|
|
665
659
|
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
|
666
|
-
For more information on this, and how to apply and follow the GNU
|
|
660
|
+
For more information on this, and how to apply and follow the GNU AGPL, see
|
|
667
661
|
<https://www.gnu.org/licenses/>.
|
|
668
|
-
|
|
669
|
-
The GNU General Public License does not permit incorporating your program
|
|
670
|
-
into proprietary programs. If your program is a subroutine library, you
|
|
671
|
-
may consider it more useful to permit linking proprietary applications with
|
|
672
|
-
the library. If this is what you want to do, use the GNU Lesser General
|
|
673
|
-
Public License instead of this License. But first, please read
|
|
674
|
-
<https://www.gnu.org/licenses/why-not-lgpl.html>.
|