-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from fenix-hub/v0.3.2
V0.3.1
- Loading branch information
Showing
17 changed files
with
184 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
A little plugin to easy-way manage your text files inside your project folder. | ||
|
||
Author: *"Nicolo (fenix) Santilio"* | ||
Version: *0.2.5* | ||
Version: *0.3.1* | ||
Godot Version: *3.1.1-stable* | ||
|
||
**This repository was pushed directly from Godot Engine Editor thanks to [GitHub Integration](https://github.com/fenix-hub/godot-engine.github-integration)!** | ||
|
@@ -28,11 +28,12 @@ Then, go to `Project > Plugins > "File Editor" > Status > Activate`. | |
You can find this plugin in the AssetLib of Godot Engine Editor. Just download it from there and everything should be fine! | ||
(Remember to activate this plugin) | ||
|
||
#### Current version | ||
### Current version | ||
To check all the features included in the current version, please read the [VERSION file](./VERSION.md) | ||
|
||
#### Upcoming features | ||
### Upcoming features | ||
To check all the features I'm currently working on, please read the [TODO file](./TODO.md) | ||
|
||
# Want to contact me? | ||
I'm planning to create a Discord group to collect each plugin I've made (and I will make), but until then you can directly talk with my via e-mail at *[email protected]* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
### to do (v-0.x.x) | ||
- Popup dialog when closing a tab if there is new content | ||
- Module for markdown support/conversion | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
[gd_scene load_steps=12 format=2] | ||
|
||
[ext_resource path="res://addons/file-editor/scripts/Preview.gd" type="Script" id=1] | ||
[ext_resource path="res://addons/file-editor/fonts/COUR.TTF" type="DynamicFontData" id=2] | ||
[ext_resource path="res://addons/file-editor/fonts/Carlito-BoldItalic.ttf" type="DynamicFontData" id=3] | ||
[ext_resource path="res://addons/file-editor/fonts/Carlito-Italic.ttf" type="DynamicFontData" id=4] | ||
[ext_resource path="res://addons/file-editor/fonts/Carlito-Bold.ttf" type="DynamicFontData" id=5] | ||
[ext_resource path="res://addons/file-editor/fonts/Carlito-Regular.ttf" type="DynamicFontData" id=6] | ||
|
||
[sub_resource type="DynamicFont" id=5] | ||
use_mipmaps = true | ||
use_filter = true | ||
font_data = ExtResource( 2 ) | ||
|
||
[sub_resource type="DynamicFont" id=1] | ||
font_data = ExtResource( 3 ) | ||
|
||
[sub_resource type="DynamicFont" id=2] | ||
font_data = ExtResource( 4 ) | ||
|
||
[sub_resource type="DynamicFont" id=3] | ||
font_data = ExtResource( 5 ) | ||
|
||
[sub_resource type="DynamicFont" id=4] | ||
font_data = ExtResource( 6 ) | ||
|
||
[node name="Preview" type="WindowDialog"] | ||
anchor_right = 1.0 | ||
anchor_bottom = 1.0 | ||
margin_left = 81.0 | ||
margin_top = 47.0 | ||
margin_right = -80.0 | ||
margin_bottom = -48.0 | ||
window_title = "File preview" | ||
resizable = true | ||
script = ExtResource( 1 ) | ||
|
||
[node name="Container" type="VBoxContainer" parent="."] | ||
anchor_right = 1.0 | ||
anchor_bottom = 1.0 | ||
|
||
[node name="TextPreview" type="RichTextLabel" parent="Container"] | ||
margin_right = 863.0 | ||
margin_bottom = 505.0 | ||
size_flags_vertical = 3 | ||
custom_fonts/mono_font = SubResource( 5 ) | ||
custom_fonts/bold_italics_font = SubResource( 1 ) | ||
custom_fonts/italics_font = SubResource( 2 ) | ||
custom_fonts/bold_font = SubResource( 3 ) | ||
custom_fonts/normal_font = SubResource( 4 ) | ||
bbcode_enabled = true | ||
scroll_following = true | ||
[connection signal="popup_hide" from="." to="." method="_on_Preview_popup_hide"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.