Skip to content

Commit 904051a

Browse files
committed
Temporarily remove screenshots
1 parent cbc8b1f commit 904051a

3 files changed

Lines changed: 15 additions & 7 deletions

File tree

README.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ The open-source feedback collection tool for your website or web-app.
33

44
<p>
55
<a href="https://github.com/Neutron-Creative/Singlelink/projects/1">
6-
<img src="https://img.shields.io/badge/Work%20In%20Progress-0.1.0-%2303d2d4" alt="Version">
6+
<img src="https://img.shields.io/badge/Work%20In%20Progress-0.8.0-%2303d2d4" alt="Version">
77
</a>
88
<a href="https://www.gnu.org/licenses/gpl-3.0.en.html">
99
<img src="https://img.shields.io/badge/License-LGPL-%236ab04c" alt="License"/>
@@ -25,13 +25,21 @@ Add the following code snippet to your desired application somewhere where it wi
2525
```html
2626
<script>
2727
window.OPEN_FEEDBACK_CONFIG = {
28-
"discord_webhook_url": "<your-discord-webhook-here>",
29-
"s3_auth": "<your-s3-authentication-string-here>"
28+
"discord": "<your-discord-webhook-here>",
3029
}
3130
</script>
3231
<script src="https://cdn.jsdelivr.net/gh/Neutron-Creative/Open-Feedback/dist/index.js"></script>
3332
```
3433

34+
<h2>Development</h2>
35+
To spin up a development environment for Open Feedback, follow the script below and it will automatically create a build from your source-code, spin up a new web-server with an embed to your latest build to test in tmux, and begin watching your files for any changes (to reinitialize the build).<br><br>
36+
37+
```bash
38+
npm config set -g production false && npm i && npm run dev
39+
```
40+
3541
<h2>Related</h2>
3642

37-
> Coming soon
43+
<a href="https://github.com/Neutron-Creative/Open-Feedback">Open Feedback</a> is a free & open-source alternative to <a href="https://feedback.fish">Feedback Fish</a> by the team at <a href="https://singlelink.co">singlelink.co</a>. <a href="https://github.com/Neutron-Creative/Open-Feedback">Open Feedback</a> is 100% self-hosted & unmaintained, <b>so please use at your own risk.</b>
44+
45+
Want to support our open-source development efforts? <a href="https://discord.com/invite/3pBM4Px">Join our Discord</a> and <a href="https://singlelink.co">create a free Singlelink</a>.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "openfeedback",
3-
"version": "0.1.0",
3+
"version": "0.8.0",
44
"description": "The simple open-source feedback collection tool for your website or web-app.",
55
"main": "index.js",
66
"scripts": {

src/plugin/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@
3030
<div class="hidden flex flex-col items-center justify-center space-y-2 w-full leading-relaxed text-gray-700 text-sm" id="sl-of-form">
3131
<textarea id="sl-of-textarea" class="p-2 rounded-lg w-full bg-white border-2 border-gray-200" rows="3"></textarea>
3232
<div class="flex flex-row w-full">
33-
<button title="Capture & attach screenshot" id="sl-of-screenshot" class="p-3 text-xs text-gray-800 bg-gray-100 hover:bg-gray-50 rounded-lg font-medium mr-2">
33+
<!--<button title="Capture & attach screenshot" id="sl-of-screenshot" class="p-3 text-xs text-gray-800 bg-gray-100 hover:bg-gray-50 rounded-lg font-medium mr-2">
3434
<svg class="w-3 h-auto opacity-50" width="131" height="99" viewBox="0 0 131 99" fill="none" xmlns="http://www.w3.org/2000/svg">
3535
<path fill-rule="evenodd" clip-rule="evenodd" d="M2 8.99997C0.895431 8.99997 0 9.8954 0 11V97C0 98.1045 0.895433 99 2 99H129C130.105 99 131 98.1045 131 97V15.5C131 14.3954 130.105 13.5 129 13.5H57.5C56.3954 13.5 55.5 12.6045 55.5 11.5V11C55.5 9.8954 54.6046 8.99997 53.5 8.99997H52.5C51.3954 8.99997 50.5 8.10454 50.5 6.99997V2.5C50.5 1.39543 49.6046 0.5 48.5 0.5L7 0.500028C5.89543 0.500028 5 1.39546 5 2.50003V6.99997C5 8.10454 4.10457 8.99997 3 8.99997H2ZM97 58.5C97 75.8969 82.897 90 65.5 90C48.103 90 34 75.8969 34 58.5C34 41.103 48.103 27 65.5 27C82.897 27 97 41.103 97 58.5ZM85 59C85 69.4934 76.4934 78 66 78C55.5066 78 47 69.4934 47 59C47 48.5066 55.5066 40 66 40C76.4934 40 85 48.5066 85 59Z" fill="black"/>
3636
</svg>
37-
</button>
37+
</button>-->
3838
<button title="Submit feedback" id="sl-of-submit" class="p-3 text-xs flex-grow text-gray-800 bg-gray-100 hover:bg-gray-50 rounded-lg font-medium">Send feedback</button>
3939
</div>
4040
</div>

0 commit comments

Comments
 (0)