simple-photo-gallery 2.0.8 → 2.0.10-rc.1
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/README.md +15 -0
- package/dist/index.js +741 -330
- package/dist/index.js.map +1 -1
- package/package.json +5 -3
package/README.md
CHANGED
|
@@ -79,6 +79,21 @@ For advanced usage, customization, and deployment options, see the comprehensive
|
|
|
79
79
|
- **[Gallery Configuration](./docs/configuration.md)** - Manual editing of `gallery.json` and advanced features like sections
|
|
80
80
|
- **[Deployment Guide](./docs/deployment.md)** - Guidelines for hosting your gallery
|
|
81
81
|
|
|
82
|
+
## Telemetry
|
|
83
|
+
|
|
84
|
+
Simple Photo Gallery collects optional anonymised usage telemetry to help us understand which features are the most helpful and to prioritise improvements. No personal data or information about your photos is collected. You need to opt-in the first time you use a command for telemetry to be collected. When the CI or DO_NOT_TRACK environment variables are set, telemetry is disabled.
|
|
85
|
+
|
|
86
|
+
You can manage telemetry at any time:
|
|
87
|
+
|
|
88
|
+
```bash
|
|
89
|
+
spg telemetry -s 0 # opt out of telemetry
|
|
90
|
+
spg telemetry -s 1 # opt back in
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
Every command also accepts `--telemetry 0` or `--telemetry 1` to temporarily override your global preference.
|
|
94
|
+
|
|
95
|
+
For more information about what data is collected please visit the [telemetry page](https://simple.photo/telemetry).
|
|
96
|
+
|
|
82
97
|
## Python Version
|
|
83
98
|
|
|
84
99
|
The old Python version of Simple Photo Gallery V1 is still available [here](https://github.com/haltakov/simple-photo-gallery), but is now deprecated.
|