Skip to content

Commit 95160d5

Browse files
committed
add buymeacoffee links
1 parent bcc440b commit 95160d5

File tree

4 files changed

+13
-11
lines changed

4 files changed

+13
-11
lines changed

README.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,4 @@ Snoozz is licensed under the [GNU GPLv3](https://github.com/rohanb10/snoozz-tab-
5959

6060
Built by [rohan](https://rohan.xyz) in 2020/21
6161

62-
## Donations
63-
64-
Snoozz is and always will be free. I don't have ongoing server costs or subscriptions or anything like that.
65-
66-
If you feel like it, consider [throwing a couple bucks my way](https://paypal.me/rohanrohanrohanrohan/3USD) to help me keep the snoozz.me domain annually.
67-
68-
Any additional funds will be recycled back in to the community to help support other developers who's products I use.
62+
[🍺 Buy me a beer](https://www.buymeacoffee.com/rohanb10)

html/settings.html

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,11 +229,14 @@ <h2><span>About</span></h2>
229229
<span><a target='_blank' href="https://github.com/rohanb10/snoozz-tab-snoozing/">github</a></span>
230230
<span><a target='_blank' href="https://snoozz.me/changelog.html">changelog</a></span>
231231
<span><a target='_blank' href="https://github.com/rohanb10/snoozz-tab-snoozing/issues/new/choose">report a bug</a></span>
232-
<span><a target='_blank' href="https://github.com/rohanb10/snoozz-tab-snoozing/blob/master/LICENSE">license</a></span>
233232
<span><a target='_blank' href="https://snoozz.me/privacy.html">privacy</a></span>
234233
<span><a target='_blank' href="https://snoozz.me/attribution.html">attribution</a></span>
234+
<span><a target='_blank' href="https://github.com/rohanb10/snoozz-tab-snoozing/blob/master/LICENSE">license</a></span>
235+
</div>
236+
<div>
237+
<span>Built by <a target='blank' href="https://rohan.xyz">rohan</a> in 2020/21.</span>
238+
<span><a target="_blank" href="https://www.buymeacoffee.com/rohanb10">Buy me a beer</a><big>🍺</big></span>
235239
</div>
236-
<div><p>Built by <a target='blank' href="https://rohan.xyz">rohan</a> in 2020.</p></div>
237240
</div>
238241
<div class="copied">Copied to clipboard</div>
239242
<div class="import-success">Succesfully imported tabs from <span></span>.</div>

scripts/nap_room.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ function buildTab(t) {
258258
var title = wrapInDiv({className: 'tab-name', innerText: t.title, title: t.url ?? ''});
259259

260260
var startedNap = wrapInDiv({className:'nap-time', innerText: `Started napping at ${dayjs(t.timeCreated).format(`${getHourFormat()} [on] ddd D MMM YYYY`)}`})
261-
if (t.modifiedTime) startedNap.innerText = `Last modified at ${dayjs(t.timeCreated).format(`${getHourFormat()} [on] ddd D MMM YYYY`)}`;
261+
if (t.modifiedTime) startedNap.innerText = `Last modified at ${dayjs(t.modifiedTime).format(`${getHourFormat()} [on] ddd D MMM YYYY`)}`;
262262
var titleContainer = wrapInDiv('title-container', title, startedNap);
263263

264264
var wakeUpTimeContainer = wrapInDiv('wakeup-time-container', wrapInDiv('wakeup-label'), wrapInDiv('wakeup-time'));

styles/settings.css

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,9 +265,14 @@ p.storage-text, p.storage-low, p.storage-full {
265265
#version {
266266
margin-top: 2.5em;
267267
}
268-
.about-container p, .about-container .flex span {
268+
.about-container p, .about-container div span {
269269
padding-left: 1.25em;
270270
padding-right: .5em;
271+
margin-bottom: 1em;
272+
}
273+
big {
274+
font-size: 1.25em;
275+
margin-left: .5rem;
271276
}
272277
@media screen and (min--moz-device-pixel-ratio:0) {
273278
.right-click span:after {

0 commit comments

Comments
 (0)