Compare commits

..

No commits in common. "397f2cc14964c01ce7680cdf28752d689bfd3ada" and "0cf7c4f6c0831505963e8c3c23b5bce6f051c1a0" have entirely different histories.

3 changed files with 6 additions and 8 deletions

View File

@ -1,9 +1,8 @@
# gdke
A external and gui based version of [godot-key-extract](https://github.com/pozm/godot-key-extract)
# Images
<img width="912" alt="Screenshot 2024-09-03 at 07 18 29" src="https://github.com/user-attachments/assets/3c14010b-570e-4364-8baa-e4e5628152d1">
<img width="912" alt="Screenshot 2024-09-03 at 07 18 38" src="https://github.com/user-attachments/assets/f9dfb86f-5c40-4787-b81a-f61acaad74a9">
<img width="912" alt="Screenshot 2024-09-03 at 07 18 25" src="https://github.com/user-attachments/assets/bb226238-41d2-4277-8e08-9efb0caac30d">
![image](https://user-images.githubusercontent.com/44528100/226689803-88b22777-f2ed-4b6f-ad57-4adfab1e9f7c.png)
![image](https://user-images.githubusercontent.com/44528100/226690113-5d6210f2-f4b6-48e0-958d-20e74c75fc59.png)
### How does this work?
When you build a godot template with an encryption key set, the build tool (scons) will inline somewhere into the file. And so the key is in a random location pretty much every time you build.

View File

@ -2,6 +2,6 @@
@tailwind components;
@tailwind utilities;
body,html, #root {
@apply dark:bg-black dark:text-white h-svh;
body {
@apply dark:bg-black dark:text-white;
}

View File

@ -81,10 +81,9 @@ function App() {
};
}, []);
//captybara testing is real
return (
<div
className={`h-full py-5 container dark:bg-black dark:text-white ${drag_over ? "border-dotted min-h-screen rounded-lg border-2 border-neutral-300 dark:border-neutral-700" : ""}`}
className={`container dark:bg-black dark:text-white ${drag_over ? "border-dotted min-h-screen rounded-lg border-2 border-neutral-300 dark:border-neutral-700" : ""}`}
>
<Dialog open={show_pre_run} onOpenChange={(e) => set_show_pre_run(e)}>
<DialogContent>
@ -146,7 +145,7 @@ function App() {
To get started drop your program below:
</p>
<div className="mt-6 items-center justify-center w-full">
<div className="flex items-center justify-center w-full">
<label
htmlFor="dropzone-file"
className="flex flex-col items-center justify-center w-full h-64 border-2 border-gray-300 border-dashed rounded-lg cursor-pointer bg-neutral-50-50 dark:hover:bg-neutral-800 dark:bg-neutral-900 hover:bg-neutral-100 dark:border-neutral-600 dark:hover:border-neutral-500"