Skip to content

Commit

Permalink
Update website and repo links
Browse files Browse the repository at this point in the history
  • Loading branch information
Snowiiii committed Dec 29, 2024
1 parent ad2fd3c commit c5c7e89
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 15 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ There are several ways you can contribute to Pumpkin:

### Docs

The Documentation of Pumpkin can be found at <https://snowiiii.github.io/Pumpkin/>
The Documentation of Pumpkin can be found at <https://pumpkinmc.org/>

**Tip: [typos](https://github.com/crate-ci/typos) is a great Project to detect and automatically fix typos

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ RUN strip pumpkin.release
FROM alpine:3.21

# Identifying information for registries like ghcr.io
LABEL org.opencontainers.image.source=https://github.com/Snowiiii/Pumpkin
LABEL org.opencontainers.image.source=https://github.com/Pumpkin-MC/Pumpkin

RUN apk add --no-cache libgcc

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

</div>

[Pumpkin](https://snowiiii.github.io/Pumpkin-Website/) is a Minecraft server built entirely in Rust, offering a fast, efficient,
[Pumpkin](https://pumpkinmc.org/) is a Minecraft server built entirely in Rust, offering a fast, efficient,
and customizable experience. It prioritizes performance and player enjoyment while adhering to the core mechanics of the game.

![image](https://github.com/user-attachments/assets/7e2e865e-b150-4675-a2d5-b52f9900378e)
Expand Down Expand Up @@ -88,15 +88,15 @@ Check out our [Github Project](https://github.com/users/Snowiiii/projects/12/vie

## How to run

See our [Quick Start](https://snowiiii.github.io/Pumpkin-Website/about/quick-start.html) Guide to get Pumpkin running
See our [Quick Start](https://pumpkinmc.org/about/quick-start.html) Guide to get Pumpkin running

## Contributions

Contributions are welcome! See [CONTRIBUTING.md](CONTRIBUTING.md)

## Docs

The Documentation of Pumpkin can be found at https://snowiiii.github.io/Pumpkin-Website/
The Documentation of Pumpkin can be found at https://pumpkinmc.org/

## Communication

Expand Down
2 changes: 1 addition & 1 deletion pumpkin-config/src/server_links.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ impl Default for ServerLinksConfig {
fn default() -> Self {
Self {
enabled: true,
bug_report: "https://github.com/Snowiiii/Pumpkin/issues".to_string(),
bug_report: "https://github.com/Pumpkin-MC/Pumpkin/issues".to_string(),
support: "".to_string(),
status: "".to_string(),
feedback: "".to_string(),
Expand Down
12 changes: 5 additions & 7 deletions pumpkin/src/command/commands/cmd_pumpkin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,11 @@ impl CommandExecutor for PumpkinExecutor {
.color_named(NamedColor::Gold),
)
.add_child(TextComponent::text(" "))
// https://snowiiii.github.io/Pumpkin/
// https://pumpkinmc.org/
.add_child(
TextComponent::text("Github Repository")
.click_event(ClickEvent::OpenUrl(Cow::from(
"https://github.com/Snowiiii/Pumpkin",
"https://github.com/Pumpkin-MC/Pumpkin",
)))
.hover_event(HoverEvent::ShowText(Cow::from(
"Click to open repository.",
Expand All @@ -77,11 +77,9 @@ impl CommandExecutor for PumpkinExecutor {
// Added docs. and a space for spacing
.add_child(TextComponent::text(" "))
.add_child(
TextComponent::text("Docs")
.click_event(ClickEvent::OpenUrl(Cow::from(
"https://snowiiii.github.io/Pumpkin/",
)))
.hover_event(HoverEvent::ShowText(Cow::from("Click to open docs.")))
TextComponent::text("Website")
.click_event(ClickEvent::OpenUrl(Cow::from("https://pumpkinmc.org/")))
.hover_event(HoverEvent::ShowText(Cow::from("Click to open website.")))
.color_named(NamedColor::Blue)
.bold()
.underlined(),
Expand Down
2 changes: 1 addition & 1 deletion pumpkin/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ async fn main() {
);

log::warn!("Pumpkin is currently under heavy development!");
log::info!("Report Issues on https://github.com/Snowiiii/Pumpkin/issues");
log::info!("Report Issues on https://github.com/Pumpkin-MC/Pumpkin/issues");
log::info!("Join our Discord for community support https://discord.com/invite/wT8XjrjKkf");

tokio::spawn(async {
Expand Down
2 changes: 1 addition & 1 deletion pumpkin/src/net/authentication.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const MOJANG_PREVENT_PROXY_AUTHENTICATION_URL: &str = "https://sessionserver.moj
/// 2. Mojang's servers verify the client's credentials and add the player to the their Servers
/// 3. Now our server will send a Request to the Session servers and check if the Player has joined the Session Server .
///
/// See <https://snowiiii.github.io/Pumpkin-Website/developer/authentication.html>
/// See <https://pumpkinmc.org/developer/authentication.html>
pub async fn authenticate(
username: &str,
server_hash: &str,
Expand Down

0 comments on commit c5c7e89

Please sign in to comment.