#docs

2177 messages · Page 3 of 3 (latest)

worthy trellisBOT
#

67f2c40 fix: invalidate assets cache if configuration or i... - zlataovce
a41922e fix: remote image revalidation error - zlataovce
9c1d1dd fix: prevent format workflow from uploading build... - zlataovce
f44d110 feat: update for Paper 26.1 (#741) - Strokkur424
ded3b45 Update paperDevBundle dependency format in userdev... - Wuason6x9
b774723 chore(paper): document dynamic build version fetch... - Strokkur424
b9850ff chore(paper): include .build in Maven version rang... - Strokkur424
7cd5ede chore(paper): cleanup project setup Gradle label - Strokkur424
bb684e0 chore(paper): cleanup project setup main class des... - Strokkur424...

#
[PaperMC/docs] branch deleted: feat/document-mob-goals
worthy trellisBOT
worthy trellisBOT
worthy trellisBOT
worthy trellisBOT
worthy trellisBOT
worthy trellisBOT
worthy trellisBOT
worthy trellisBOT
worthy trellisBOT
worthy trellisBOT
#

TODO: Someone make the Copy Markdown button more pretty

This pull request introduces a new agent-docs plugin for the Astro project, enabling documentation pages to be exported as Markdown files and adding a "Copy Markdown" button to each page. It also sets up special routes to provide both an index and a full export of all documentation in Markdown format, making the docs more accessible for LLMs and agentic tools.

The most important changes are:

Plugin Integration and Configuration:

  • Added the agent-docs plugin to the Astro configuration, which sets up custom integrations and overrides the PageTitle component to include a "Copy Markdown" button. (astro.config.ts, src/plugins/agent-docs/index.ts) [...
worthy trellisBOT
worthy trellisBOT
worthy trellisBOT
worthy trellisBOT
#

Summary

  • Clarifies that enabling tripwire hook duplication does not make every duplicator design work
  • Explains that designs relying on a same-tick door update may still fail because of Paper's block physics handling
  • Links the maintainer explanation, original implementation, and tested duplicator design

Testing

  • Ran pnpm exec prettier src/content/docs/paper/admin/misc/paper-bug-fixes.md --check
  • Ran pnpm run build
  • Confirmed all internal links are valid

Closes #712

worthy trellisBOT
worthy trellisBOT
worthy trellisBOT
#

Summary

  • Expands the documentation for the miscellaneous entity activation range
  • Clarifies that dropped items are affected by this setting
  • Explains that reduced ticking outside the range may cause items in water streams to lag or rubber-band
  • Documents how setting the value to 0 or less disables activation-range throttling for loaded miscellaneous entities

Testing

  • Ran pnpm exec prettier "src/config/paper/spigot.yml" --check
  • Ran pnpm run build
  • Confirmed all internal links are valid

Closes #713

worthy trellisBOT
#

the only "issue" is the whole module reference like (jd:adventure:net.kyori.adventure.api:net.kyori.adventure.sound.Sound.Emitter#self()) maybe can be good include all the modules like adventure_api: { url: "https://jd.papermc.io/adventure", module: "net.kyori.adventure.api" }, and then use (jd:adventure_api:net.kyori.adventure.sound.Sound.Emitter#self()) but its just for have less text in the component....

worthy trellisBOT
worthy trellisBOT
#
[PaperMC/docs] New branch created: lilfix/tofile
worthy trellisBOT
#
[PaperMC/docs] branch deleted: lilfix/tofile
worthy trellisBOT
worthy trellisBOT
worthy trellisBOT
worthy trellisBOT
worthy trellisBOT
worthy trellisBOT
worthy trellisBOT
#

I don't think removing it entirely is the best option here. Instead add a notice that is discontinued. The forums are still up and contain old, but useful threads.

But as a means of getting in contact with anyone, a read-only forum is useless.

+1 this section is for contact, even not sure if the twitter can be consider a good way to contact....

I remember the website mention a email for contact

worthy trellisBOT
worthy trellisBOT
worthy trellisBOT
worthy trellisBOT
worthy trellisBOT
#

I mean, overall I initially expected the behavior to be

                    final long catchup = 1L + io.papermc.paper.configuration.GlobalConfiguration.get().misc.catchupTicks.or(4);

instead of

                    final long catchup = (long)Math.max(
                        1,
                        io.papermc.paper.configuration.GlobalConfiguration.get().misc.catchupTicks.or(5)
                    );

when I first saw that option. That said, if this is the intended behavior, it would be good to document that the minimum effective enabled value is 2, or at least mention that setting it to 1 is equivalent to 0.