diff --git a/.gitattributes b/.gitattributes index dfe0770..3e0ca5f 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,2 +1,9 @@ -# Auto detect text files and perform LF normalization -* text=auto +# Normalize EOL for all files that Git considers text files. +* text=auto eol=lf + +# Ignore some files when exporting to a ZIP. +/.gitattributes export-ignore +/.gitignore export-ignore +/LICENSE export-ignore +/LICENSE.md export-ignore +/README.md export-ignore \ No newline at end of file diff --git a/.gitignore b/.gitignore index ba45ca4..3c74a29 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,18 @@ +# Godot 4+ specific ignores +.godot/ # Godot-specific ignores .import/ export.cfg export_presets.cfg +# Imported translations (automatically generated from CSV files) +*.translation + # Mono-specific ignores .mono/ +data_*/ +mono_crash.*.json + +# Other Assets +*.png~ \ No newline at end of file diff --git a/README.md b/README.md index 94df00e..bc2514d 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,26 @@ # Database Workspace for storing data through Resource. + +## About +This plugin adds Database as a new main screen. With this, you can edit resources on the viewport rather than on the side Inspection panel. + +Also comes with an example project. + +## Getting Started + +### Requirement +Godot 3.x + +### Installation +After downloading, move the folder `addons/database` to your project folder. + +## Goal-Post +By v1.0, it is to have the following: +* Add Categories and Resources +* Datatypes for Editing a Property + +## License +This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details + +## Author +* mechPenSketch \ No newline at end of file diff --git a/icon.png b/icon.png index 9f5c87d..91f7784 100644 Binary files a/icon.png and b/icon.png differ diff --git a/icon.png~ b/icon.png~ index c98fbb6..9f5c87d 100644 Binary files a/icon.png~ and b/icon.png~ differ