Skip to content

Commit 9d71240

Browse files
committed
Minor fixes
1 parent b7f7c52 commit 9d71240

File tree

7 files changed

+47
-14
lines changed

7 files changed

+47
-14
lines changed

.markdownlint.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,6 @@ MD007:
44
MD010: false
55
MD013: false
66
MD025: false
7-
MD046: false
7+
MD030: false
8+
MD033: false
9+
MD046: false

docs/about/donate.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Support the development of FuckingNode
2+
3+
FuckingNode is a solo project, developed and maintained with a lot of effort by myself. I'm a student with no fixed income, and donations would be significantly helpful.
4+
5+
While there isn't an intrinsic economic cost to keeping FuckingNode alive, the real investment is a lot of time and effort; time that might otherwise have to be spent on whatever source of income I find. I don't need this project to generate revenue, but if it did, it would directly impact how much dedication I can give to it.
6+
7+
If FuckingNode has ever saved you time or made a task easier, please consider supporting its development. I would really appreciate it.
8+
9+
Plus, you'll be listed anywhere I can think of :]
10+
11+
---
12+
13+
## :fontawesome-brands-bitcoin: Bitcoin{ .btc }
14+
15+
You can support the project directly via Bitcoin:
16+
17+
`bc1qp0ycnrhddhzjnpfuxvvx7wrpt7y6y89lllqwjj`
18+
19+
<style>
20+
@keyframes btc {
21+
0%, 40%, 80%, 100% {
22+
transform: scale(1);
23+
}
24+
20%, 60% {
25+
transform: scale(1.15);
26+
}
27+
}
28+
.btc {
29+
animation: btc 1000ms infinite;
30+
}
31+
</style>

docs/about/roadmap.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ This page also lists all minor and major releases since 2.X. Patches aren't list
1414
- [x] Improve `commit`
1515
- [x] Commit prevention if compromised files (e.g. `.env` or `node_modules`) are staged.
1616
- [ ] Setting to actually halt cleanup execution and notify if an error happens.
17-
- [ ] Dual release system.
1817
- [ ] Add `fuckingnode uncommit` - undoes commit and holds, letting the user modify stuff, then re-adds files from the prev commit, runs `commitCmd` if any, and commits with same message.
1918
- [x] Functional self updater.
2019
- [ ] Functional self remover.
@@ -28,9 +27,9 @@ This page also lists all minor and major releases since 2.X. Patches aren't list
2827
- IF no `--projects` default to all projects, as it’d make sense to.
2928
- Do the same for *most* commands. Commit is an exception, for example, message still goes first. After that, do make the parameters spread.
3029
- [ ] Standardized commands system
31-
- [ ] Command sequences.
30+
- [x] Command sequences.
3231
- [ ] Parallel execution.
33-
- [ ] Shell, script, and file denotation.
32+
- [x] Shell, script, and file denotation.
3433
- [x] Allow to change notification threshold.
3534
- [ ] “Deep merge” for text-based setups like `.editorconfig` (avoid duplicates basically).
3635
- [x] Improve `surrender`.

docs/about/social.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@
2626

2727
[:octicons-arrow-right-24: Follow us](https://x.com/FuckingNode)
2828

29-
- :fontawesome-brands-youtube:{ .lg .middle } __[YouTube](https://youtube.com/watch?v=_lppvGYUXNk)__
29+
- :fontawesome-brands-youtube:{ .lg .middle } __[YouTube](https://youtube.com/watch?v=J675ZcYBrHM)__
3030

3131
---
3232

3333
The creator's personal channel*. Major release trailers will be here. (\*as such, unrelated stuff also hangs in there).
3434

35-
[:octicons-arrow-right-24: Watch us](https://youtube.com/watch?v=_lppvGYUXNk)
35+
[:octicons-arrow-right-24: Watch us](https://youtube.com/watch?v=J675ZcYBrHM)
3636

3737
</div>

docs/install.ps1

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,8 @@ Function Add-AppToPath {
187187
if ($Path -notcontains $INSTALL_DIR) {
188188
$Path += $INSTALL_DIR
189189
Write-Env -Key 'Path' -Value ($Path -join ';')
190-
$env:PATH = $Path;
190+
$env:PATH = $Path -join ';'
191+
Write-Host "Added $INSTALL_DIR to PATH"
191192
}
192193
else {
193194
Write-Host "'${INSTALL_DIR}' is already in your PATH."

docs/manual/whats-next.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,24 +19,24 @@ Note "we" should actually be "I", as this is maintained by a single developer (m
1919

2020
[Go back to the beginning?](../index.md)
2121

22-
## Other pages you may find useful
22+
## Other pages you may also find useful
2323

2424
[Roadmap and future plans](../about/roadmap.md)
2525

2626
[Learn how does FuckingNode work from the inside](../learn/index.md)
2727

2828
[Branding guidelines? (yes we have them)](../about/branding.md)
2929

30-
[Our YouTube trailer (outdated, new one is work-in-progress, but this one's still _kinda_ worth watching)](https://youtube.com/watch?v=_lppvGYUXNk)
31-
32-
[Our GitHub organization](https://github.com/FuckingNode)
30+
[Our cool (and low budget) YouTube trailer](https://youtube.com/watch?v=J675ZcYBrHM)
3331

3432
[Follow us on social media](../about/social.md)
3533

34+
[Support this project](../about/donate.md)
35+
3636
---
3737

3838
Again, any contribution, suggestion, or feedback, is greatly appreciated. FuckingNode's source code is - as the average JavaScript codebase - not great, and any contribution counts towards making this better.
3939

4040
This project was made out of the nowhere and I never expected to focus so much on it and giving it so many features and work. I hope you found it useful.
4141

42-
Thanks for reading this manual until the end. You may now flex about being a Certified Node Fucker (and if this project gets popular enough I will actually start emitting FuckingNode certifications).
42+
Thanks for reading this manual until the end. You may now flex about being a Certified Node Fucker (and if this project gets popular enough I will actually start emitting FuckingNode certifications, promise).

mkdocs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ extra_javascript:
7878
extra:
7979
social:
8080
- icon: fontawesome/brands/youtube
81-
link: https://youtube.com/watch?v=_lppvGYUXNk
81+
link: https://youtube.com/watch?v=J675ZcYBrHM
8282
name: See us on YouTube!
8383
- icon: fontawesome/brands/twitter
8484
link: https://x.com/FuckingNode
@@ -90,7 +90,7 @@ extra:
9090
link: https://discord.gg/AA2jYAFNmq
9191
name: Chat us on Discord
9292
- icon: fontawesome/brands/bitcoin
93-
link: "bitcoin:bc1qp0ycnrhddhzjnpfuxvvx7wrpt7y6y89lllqwjj"
93+
link: "/donate"
9494
name: Donate to help maintaining this project
9595

9696
analytics:

0 commit comments

Comments
 (0)