Skip to content

Commit b488a60

Browse files
authored
Remove diff viewer (#60)
Moved to https://github.com/PaperMC/diff-viewer
1 parent 93e974a commit b488a60

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+137
-6048
lines changed

.github/workflows/build-preview.yml

Lines changed: 0 additions & 25 deletions
This file was deleted.

.github/workflows/deploy-preview.yml

Lines changed: 0 additions & 36 deletions
This file was deleted.

.github/workflows/test.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,3 @@ jobs:
2727
- run: cd web && bun install
2828
- run: cd web && bun run lint
2929
- run: cd web && bun run check
30-
- run: cd web-extension && bun install
31-
- run: cd web-extension && bun run lint

README.md

Lines changed: 5 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Patch Roulette
22

3-
REST API and web interface for managing Paper updates and dealing with patches.
3+
REST API and web interface for managing Paper updates.
44

55
> [!NOTE]
6-
> This project is intended for internal use and does not guarantee stability, compatibility, support, or follow semantic versioning. External users will likely only find the diff viewer useful.
6+
> This project is intended for internal use and does not guarantee stability, compatibility, support, or follow semantic versioning.
77
88
## Overview
99

@@ -19,20 +19,10 @@ Powered by Spring Boot, backend for the web interface and `paperweight`. Routes
1919

2020
SvelteKit frontend using tailwindcss for styling. Hosted as static files by the Spring Boot server.
2121

22-
#### Public Pages
22+
#### Pages
2323

24-
- [`/`](https://patch-roulette.papermc.io): Multi-file concise diff viewer
25-
26-
#### Authenticated Pages
27-
28-
- `/roulette/login`: Login page
29-
- `/roulette`: Management dashboard
30-
31-
### Web Extension
32-
33-
Web extension that streamlines opening diffs in the viewer.
34-
- [Firefox](https://addons.mozilla.org/en-US/firefox/addon/patch-roulette/)
35-
- [Chrome](https://chromewebstore.google.com/detail/patch-roulette/feaaoepdocmiibjilhoahgldkaajfnhb)
24+
- [`/`](https://patch-roulette.papermc.io/login): Management dashboard
25+
- [`/login`](https://patch-roulette.papermc.io/login) : Login page
3626

3727
## Development
3828

src/main/java/io/papermc/patchroulette/config/ApplicationConfig.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@
55

66
@ConfigurationProperties("application")
77
public record ApplicationConfig(
8-
List<UserConfig> users,
9-
String githubClientId,
10-
String githubClientSecret
8+
List<UserConfig> users
119
) {
1210
public record UserConfig(String username, String password) {}
1311
}

src/main/java/io/papermc/patchroulette/controller/GitHubApiController.java

Lines changed: 0 additions & 67 deletions
This file was deleted.

src/main/resources/application.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
application:
22
users: []
3-
github-client-id: Iv23lio9NNdLLYjZ363a
4-
github-client-secret: secret
53
management:
64
server:
75
port: 8081

web-extension/.gitignore

Lines changed: 0 additions & 29 deletions
This file was deleted.

web-extension/.prettierignore

Lines changed: 0 additions & 5 deletions
This file was deleted.

web-extension/.prettierrc

Lines changed: 0 additions & 9 deletions
This file was deleted.

0 commit comments

Comments
 (0)