Skip to content

Commit 955194b

Browse files
author
bajins
committed
docs: 更新多个文档中的链接和配置信息
- 在Git服务文档中添加GitHub官方链接 - 在IDEA使用文档中新增GUI Designer相关配置说明 - 更新DBeaver配置示例中的JDK版本和数据目录路径 - 在绘图工具文档中添加新的draw.io相关项目链接 - 在Markdown工具列表中增加Lumina-Note笔记应用 - 从C++文档中移除已废弃的libavif库链接 - 在编程语言文档中重新组织开放媒体联盟相关链接 - 在Rust文档中添加hyperlane区块链开发工具 - 在编程规范文档中加入Git分支命名规范 - 在Linux系统文档中新增资源管理器推荐 - 在系统应用文档中添加私人音乐服务和英语学习工具 - 在Windows安全工具中增加系统加固脚本 - 在React框架文档中补充调试工具推荐
1 parent 1e59808 commit 955194b

File tree

12 files changed

+38
-7
lines changed

12 files changed

+38
-7
lines changed

IDE/Git服务.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ volumes:
105105
## GitHub
106106
107107
+ [https://github.com/github](https://github.com/github)
108+
+ [https://primer.style](https://primer.style)
108109
+ 预览项目HTML [https://github.com/htmlpreview/htmlpreview.github.com](https://github.com/htmlpreview/htmlpreview.github.com)
109110
+ 嵌入到HTML [https://github.com/yusanshi/emgithub](https://github.com/yusanshi/emgithub)
110111
+ 生成更新日志 [https://github.com/shipkit/shipkit-changelog](https://github.com/shipkit/shipkit-changelog)

IDE/IDEA使用.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -513,6 +513,25 @@ groovyScript("def result=\"${_1}\"; if(result == 'void'){return '';}else{return
513513

514514

515515

516+
## GUI Designer
517+
518+
* Swing UI Designer [https://plugins.jetbrains.com/plugin/25304-swing-ui-designer](https://plugins.jetbrains.com/plugin/25304-swing-ui-designer)
519+
520+
> 从2021+版本开始,IntelliJ IDEA 的 GUI Designer 默认将表单编译为二进制 `.form` 资源 + 反射加载方式,不再生成 `$$$setupUI$$$()` 方法和组件绑定代码到 `.java` 源文件中。
521+
522+
- 打开`File` -> `Settings` -> `Editor` -> `GUI Designer` -> `Generate GUI into`
523+
- `Binary class files` 默认,无 `$$$setupUI$$$()` 代码
524+
- `Java source code` 旧模式,会生成 `$$$setupUI$$$()`
525+
526+
> `Build > Rebuild Project` 重新编译项目以生成代码
527+
528+
- `.idea/uiDesigner.xml`文件中包含以下配置
529+
530+
```xml
531+
<component name="uidesigner-configuration">
532+
<option name="INSTRUMENT_CLASSES" value="true" />
533+
</component>
534+
```
516535

517536

518537
## PyCharm

IDE/README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -445,9 +445,13 @@
445445
```ini
446446
# 删除jre目录,安装jdk11或以上版本,把以下两行添加到`-vmargs`之前
447447
-vm
448-
C:\Program Files\Java\jdk-17.0.2\bin
449-
# 解压dbeaver-agent-latest.zip到dbeaver目录,添以下行到最后
450-
-javaagent:./dbeaver-agent.jar
448+
C:\Program Files\Java\jdk-21\bin
449+
-data
450+
F:\workspace\DBeaverData
451+
# 解压dbeaver-agent-latest.zip到dbeaver同级目录,添以下行到文件末尾
452+
-javaagent:../dbeaver-agent/dbeaver-agent.jar
453+
-Xbootclasspath/a:../dbeaver-agent/dbeaver-agent.jar
454+
-javaagent:../ja-netfilter-all/ja-netfilter.jar
451455
-Dlm.debug.mode=true
452456
```
453457
* [https://github.com/shencangsheng/easydb_app](https://github.com/shencangsheng/easydb_app)
@@ -601,6 +605,7 @@
601605
* [https://github.com/jgraph/drawio](https://github.com/jgraph/drawio)
602606
* [https://github.com/jgraph/drawio-desktop](https://github.com/jgraph/drawio-desktop)
603607
* [https://app.diagrams.net](https://app.diagrams.net)
608+
* [https://github.com/DayuanJiang/next-ai-draw-io](https://github.com/DayuanJiang/next-ai-draw-io)
604609
* [https://github.com/umlet/umlet](https://github.com/umlet/umlet)
605610
* [https://github.com/staruml](https://github.com/staruml)
606611
* [https://www.processon.com](https://www.processon.com)

Other/Markdown.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -608,6 +608,7 @@ string &operator+(const string& A,const string& B) //cpp
608608
* [https://github.com/streetwriters/notesnook](https://github.com/streetwriters/notesnook)
609609
* [https://github.com/docmost/docmost](https://github.com/docmost/docmost)
610610
* [https://github.com/codexu/note-gen](https://github.com/codexu/note-gen)
611+
* [https://github.com/blueberrycongee/Lumina-Note](https://github.com/blueberrycongee/Lumina-Note)
611612
* GitBook替代 [https://github.com/lindeer/dartbook](https://github.com/lindeer/dartbook)
612613
* 临时存储 [https://github.com/heyman/heynote](https://github.com/heyman/heynote)
613614
* 待办事项 [https://github.com/go-vikunja/vikunja](https://github.com/go-vikunja/vikunja)

PL/CPlusPlus.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,8 +198,6 @@
198198
* [https://github.com/puerts](https://github.com/puerts)
199199
* 图片编解码 [Codec comparison](https://storage.googleapis.com/demos.webmproject.org/webp/cmp/index.html)
200200
* [https://jpeg.org](https://jpeg.org)
201-
* [https://github.com/AOMediaCodec/libavif](https://github.com/AOMediaCodec/libavif)
202-
* [https://aomedia.googlesource.com/aom](https://aomedia.googlesource.com/aom)
203201
* [https://github.com/mirrorer/libbpg](https://github.com/mirrorer/libbpg)
204202
* [https://github.com/strukturag/libheif](https://github.com/strukturag/libheif)
205203
* [https://github.com/libjxl/libjxl](https://github.com/libjxl/libjxl)

PL/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,8 @@
193193
* [https://nlnet.nl/project](https://nlnet.nl/project)
194194
* [https://github.com/opentffoundation](https://github.com/opentffoundation)
195195
* [https://github.com/commonhaus/foundation](https://github.com/commonhaus/foundation)
196-
196+
* 开放媒体联盟 [https://github.com/AOMediaCodec](https://github.com/AOMediaCodec) 视频编解码器
197+
* [https://aomedia.googlesource.com/aom](https://aomedia.googlesource.com/aom)
197198

198199

199200
**开源个人**

PL/Rust.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,7 @@ check-revoke = false
253253
- 搜索算法 [https://github.com/hora-search/hora](https://github.com/hora-search/hora)
254254
- [https://github.com/meilisearch/MeiliSearch](https://github.com/meilisearch/MeiliSearch)
255255
- WEB [https://github.com/deislabs/wagi](https://github.com/deislabs/wagi)
256+
- [https://github.com/hyperlane-dev/hyperlane-quick-start](https://github.com/hyperlane-dev/hyperlane-quick-start)
256257
- [https://github.com/iron/iron](https://github.com/iron/iron)
257258
- [https://github.com/longfangsong/rs-rtt](https://github.com/longfangsong/rs-rtt)
258259
- [https://github.com/actix](https://github.com/actix)

PL/编程规范.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,7 @@
157157
* SQL样式指南 [https://github.com/treffynnon/sqlstyle.guide](https://github.com/treffynnon/sqlstyle.guide)
158158
* 加密编码标准(CCS) [https://github.com/veorq/cryptocoding](https://github.com/veorq/cryptocoding)
159159
* [https://cryptocoding.net](https://cryptocoding.net)
160+
* Git分支命名规范 [https://github.com/conventional-branch/conventional-branch](https://github.com/conventional-branch/conventional-branch)
160161

161162

162163
- [JavaScript 开发规范](https://www.cnblogs.com/polk6/p/4660195.html)

System/Linux.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
+ [https://github.com/libbpf/libbpf-bootstrap](https://github.com/libbpf/libbpf-bootstrap)
3737
+ [https://github.com/aya-rs/aya](https://github.com/aya-rs/aya)
3838
+ [https://github.com/Sherlock-Holo/lycoris](https://github.com/Sherlock-Holo/lycoris)
39+
+ 资源管理器 [https://gitlab.com/mission-center-devs/mission-center](https://gitlab.com/mission-center-devs/mission-center)
3940

4041

4142
* [VIM键盘图形备忘单](http://www.viemu.com/a_vi_vim_graphical_cheat_sheet_tutorial.html)

System/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -643,6 +643,7 @@
643643
* [https://github.com/franklioxygen/MyTube](https://github.com/franklioxygen/MyTube)
644644
* [https://github.com/HoshinoSuzumi/chronoframe](https://github.com/HoshinoSuzumi/chronoframe)
645645
* [https://github.com/Afilmory/Afilmory](https://github.com/Afilmory/Afilmory)
646+
* 私人音乐服务 [https://github.com/chenqimiao/qm-music](https://github.com/chenqimiao/qm-music)
646647
* 音频编辑 [https://github.com/RylanBot/melody-workshop](https://github.com/RylanBot/melody-workshop)
647648
* 视频编辑 [https://github.com/OpenCut-app/OpenCut](https://github.com/OpenCut-app/OpenCut)
648649
* [https://github.com/robinroy03/videoeditor](https://github.com/robinroy03/videoeditor)
@@ -799,6 +800,7 @@
799800
* 计算器 [https://github.com/numworks/epsilon](https://github.com/numworks/epsilon)
800801
* [https://github.com/bbodi/notecalc3](https://github.com/bbodi/notecalc3)
801802
* 焦虑辅助工具 [https://github.com/alvinunreal/anxiety-aid-tools](https://github.com/alvinunreal/anxiety-aid-tools)
803+
* 英语阅读学习 [https://github.com/xckevin/magic-english-buddy](https://github.com/xckevin/magic-english-buddy)
802804
803805
804806

0 commit comments

Comments
 (0)