Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ A clear and concise description of what you expected to happen.
Steps to reproduce the behavior:

Please include:
- A **minimal reproducible example** shared via the Prometheus Web playground: https://prometheus-lua.github.io/Prometheus/
- A **minimal reproducible example** shared via the Prometheus Playground: https://prometheus-lua.github.io/Prometheus/
- Your config (preset/custom config)
- The produced output (or relevant excerpt/error)

Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ When opening a bug report, include:
- Clear bug description
- Expected behavior
- Steps to reproduce
- A minimal reproducible example shared via the Prometheus Web playground: https://prometheus-lua.github.io/Prometheus/
- A minimal reproducible example shared via the Prometheus Playground: https://prometheus-lua.github.io/Prometheus/
- Config used (preset/custom config)
- Produced output and relevant errors/logs
- Environment details (OS, Lua/LuaJIT version)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<br/>

<a href="https://prometheus-lua.github.io/Prometheus/">
<img src="https://img.shields.io/badge/Prometheus%20Web-Try%20Out-0F766E?style=for-the-badge&logo=github&logoColor=white" alt="Open Prometheus Web UI" />
<img src="https://img.shields.io/badge/Prometheus%20Web-Try%20Out-0F766E?style=for-the-badge&logo=github&logoColor=white" alt="Open Prometheus Playground" />
</a>
<a href="https://github.com/prometheus-lua/Prometheus/actions/workflows/Test.yml">
<img src="https://img.shields.io/github/actions/workflow/status/prometheus-lua/Prometheus/Test.yml?branch=master&style=for-the-badge&label=Tests" alt="Tests" />
Expand Down Expand Up @@ -50,7 +50,7 @@ Try the browser version first:


<a href="https://prometheus-lua.github.io/Prometheus/">
<img src="https://img.shields.io/badge/Prometheus%20Web-Open-0F766E?style=for-the-badge&logo=github&logoColor=white" alt="Open Prometheus Web UI" />
<img src="https://img.shields.io/badge/Prometheus%20Web-Open-0F766E?style=for-the-badge&logo=github&logoColor=white" alt="Open Prometheus Playground" />
</a>

### Install CLI (Linux/macOS)
Expand Down
2 changes: 1 addition & 1 deletion doc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description: Prometheus is a Lua obfuscator written in pure Lua.

Prometheus obfuscates Lua source code using AST transforms and a configurable pipeline.

Use the [Prometheus Webapp](https://prometheus-lua.github.io/Prometheus/) to quickly try out settings and test small snippets. For larger scripts and advanced workflows, use the CLI (`prometheus-lua` or `cli.lua`).
Use the [Prometheus Playground](https://prometheus-lua.github.io/Prometheus/) to quickly try out settings and test small snippets. For larger scripts and advanced workflows, use the CLI (`prometheus-lua` or `cli.lua`).

This documentation covers:

Expand Down
2 changes: 1 addition & 1 deletion doc/getting-started/quickstart-first-obfuscation.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Quickstart: First Obfuscation

You can quickly try Prometheus in the [Prometheus Webapp](https://prometheus-lua.github.io/Prometheus/). For large scripts or advanced use cases, prefer the CLI workflow below.
You can quickly try Prometheus in the [Prometheus Playground](https://prometheus-lua.github.io/Prometheus/). For large scripts or advanced use cases, prefer the CLI workflow below.

Create a simple Lua file:

Expand Down
2 changes: 1 addition & 1 deletion web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Prometheus Web</title>
<title>Prometheus</title>
</head>
<body>
<div id="root"></div>
Expand Down
2 changes: 1 addition & 1 deletion web/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ export default function App() {
<FileCode2 className="size-5" />
</div>
<div>
<h1 className="text-lg font-semibold leading-tight">Prometheus Web</h1>
<h1 className="text-lg font-semibold leading-tight">Prometheus Playground</h1>
<p className="text-xs text-muted-foreground">
In-browser Lua obfuscation powered by Prometheus by levno-710.
</p>
Expand Down
8 changes: 4 additions & 4 deletions web/src/e2e/app.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { expect, test } from "@playwright/test"

test("loads under the GitHub Pages base and obfuscates input", async ({ page }) => {
await page.goto("/")
await expect(page.getByRole("heading", { name: "Prometheus Web" })).toBeVisible()
await expect(page.getByRole("heading", { name: "Prometheus Playground" })).toBeVisible()

const input = page.getByLabel("Lua input").locator(".cm-content")
await input.click()
Expand All @@ -22,7 +22,7 @@ test("loads under the GitHub Pages base and obfuscates input", async ({ page })

test("runs input script and shows logs", async ({ page }) => {
await page.goto("/")
await expect(page.getByRole("heading", { name: "Prometheus Web" })).toBeVisible()
await expect(page.getByRole("heading", { name: "Prometheus Playground" })).toBeVisible()

const input = page.getByLabel("Lua input").locator(".cm-content")
await input.click()
Expand All @@ -37,7 +37,7 @@ test("runs input script and shows logs", async ({ page }) => {
test("share link roundtrip keeps the same obfuscated output", async ({ browser, page, context }) => {
await context.grantPermissions(["clipboard-read", "clipboard-write"])
await page.goto("/")
await expect(page.getByRole("heading", { name: "Prometheus Web" })).toBeVisible()
await expect(page.getByRole("heading", { name: "Prometheus Playground" })).toBeVisible()

const input = page.getByLabel("Lua input").locator(".cm-content")
await input.click()
Expand Down Expand Up @@ -66,7 +66,7 @@ test("share link roundtrip keeps the same obfuscated output", async ({ browser,
test("share link can be created after obfuscation fails", async ({ browser, page, context }) => {
await context.grantPermissions(["clipboard-read", "clipboard-write"])
await page.goto("/")
await expect(page.getByRole("heading", { name: "Prometheus Web" })).toBeVisible()
await expect(page.getByRole("heading", { name: "Prometheus Playground" })).toBeVisible()

const input = page.getByLabel("Lua input").locator(".cm-content")
await input.click()
Expand Down
Loading