flingit 0.0.60 → 0.0.61
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/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
511506e1113b708dc72a9fc68b18d8da
|
|
@@ -341,7 +341,9 @@ This gives collaborators:
|
|
|
341
341
|
|
|
342
342
|
10. **Feedback** - If the user encounters problems that directly or indirectly have to do with fling, suggest to them leaving feedback. Details in `references/FEEDBACK.md`.
|
|
343
343
|
|
|
344
|
-
11. **
|
|
344
|
+
11. **Keep the "Made with Fling" badge** - The template includes a small "Made with Fling" badge in the bottom-left corner of the page. Do not remove or hide it unless the user explicitly asks you to.
|
|
345
|
+
|
|
346
|
+
12. **Never run `fling project takedown` without explicit user confirmation** - This command permanently deletes the deployed project including all data in the production database, all files in storage, and the deployed worker code. You MUST NOT run this command unless the user has explicitly confirmed that they understand and accept that all data in their published app will be permanently lost. Always explain what will be destroyed before asking for confirmation.
|
|
345
347
|
|
|
346
348
|
**If the user's request might hit platform limitations, warn them early and suggest alternatives.**
|
|
347
349
|
|
|
@@ -20,6 +20,15 @@ function App() {
|
|
|
20
20
|
<br />
|
|
21
21
|
Edit <code>src/worker/index.ts</code> for the API
|
|
22
22
|
</p>
|
|
23
|
+
<a
|
|
24
|
+
href="https://flingit.io"
|
|
25
|
+
target="_blank"
|
|
26
|
+
rel="noopener noreferrer"
|
|
27
|
+
className="fixed bottom-4 left-4 flex items-center gap-1.5 px-2.5 py-1.5 bg-white border border-gray-200 rounded-full shadow-sm text-xs text-gray-500 hover:text-gray-700 hover:border-gray-300 transition-colors"
|
|
28
|
+
>
|
|
29
|
+
<img src="/fling.svg" alt="Fling" className="w-4 h-4" />
|
|
30
|
+
Made with Fling
|
|
31
|
+
</a>
|
|
23
32
|
</div>
|
|
24
33
|
);
|
|
25
34
|
}
|