mirror of https://github.com/pozm/gdke.git
Compare commits
3 Commits
0cf7c4f6c0
...
397f2cc149
Author | SHA1 | Date |
---|---|---|
Amelia | 397f2cc149 | |
Amelia | 1449e78638 | |
amelia | f6842a11e4 |
|
@ -1,8 +1,9 @@
|
|||
# gdke
|
||||
A external and gui based version of [godot-key-extract](https://github.com/pozm/godot-key-extract)
|
||||
# Images
|
||||
![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)
|
||||
<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">
|
||||
|
||||
### 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.
|
||||
|
|
|
@ -2,6 +2,6 @@
|
|||
@tailwind components;
|
||||
@tailwind utilities;
|
||||
|
||||
body {
|
||||
@apply dark:bg-black dark:text-white;
|
||||
body,html, #root {
|
||||
@apply dark:bg-black dark:text-white h-svh;
|
||||
}
|
||||
|
|
|
@ -81,9 +81,10 @@ function App() {
|
|||
};
|
||||
}, []);
|
||||
|
||||
//captybara testing is real
|
||||
return (
|
||||
<div
|
||||
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" : ""}`}
|
||||
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" : ""}`}
|
||||
>
|
||||
<Dialog open={show_pre_run} onOpenChange={(e) => set_show_pre_run(e)}>
|
||||
<DialogContent>
|
||||
|
@ -145,7 +146,7 @@ function App() {
|
|||
To get started drop your program below:
|
||||
</p>
|
||||
|
||||
<div className="flex items-center justify-center w-full">
|
||||
<div className="mt-6 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"
|
||||
|
|
Loading…
Reference in New Issue