Skip to content

Commit

Permalink
Fix no import files
Browse files Browse the repository at this point in the history
  • Loading branch information
otDan committed Feb 27, 2023
1 parent 31be16e commit 1bb4b66
Show file tree
Hide file tree
Showing 19 changed files with 24 additions and 15 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
source_md5="c83b83db17ed93111aa00d9c0e8f97d4"
dest_md5="ffb003e1d43ee8c9dd98c67094bb011f"

Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
source_md5="3b97568505931feabf09174fcce3e241"
dest_md5="a6fb928e0522f5856dbc677915a8004d"

Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
source_md5="72b4c119b3f27d347a98c39104bdf106"
dest_md5="bbd5043f8583eca259a1b6c810f56358"

Binary file not shown.
2 changes: 1 addition & 1 deletion root/mods-unpacked/otDan-BetterModList/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "BetterModList",
"namespace": "otDan",
"version_number": "1.3.0",
"version_number": "1.3.1",
"description": "Modifies the in game mod menu to provide more information",
"website_url": "https://github.com/otDan/Brotato-BetterModList",
"dependencies": [],
Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

importer="texture"
type="StreamTexture"
path="res://.import/info.png-1ec42d1953633f920fe7011cc6b19098.stex"
path="res://.import/bettermodlist-check_box_off.png-b27a9e4daef525176f738a19944ad966.stex"
metadata={
"vram_texture": false
}

[deps]

source_file="res://mods-unpacked/otDan-BetterModList/ui/menus/global/info.png"
dest_files=[ "res://.import/info.png-1ec42d1953633f920fe7011cc6b19098.stex" ]
source_file="res://mods-unpacked/otDan-BetterModList/ui/menus/global/bettermodlist-check_box_off.png"
dest_files=[ "res://.import/bettermodlist-check_box_off.png-b27a9e4daef525176f738a19944ad966.stex" ]

[params]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

importer="texture"
type="StreamTexture"
path="res://.import/check_box_on.png-2465afb427a94f03f97ca36847aa46db.stex"
path="res://.import/bettermodlist-check_box_on.png-99d38da3947233da317b404f74f4fc5a.stex"
metadata={
"vram_texture": false
}

[deps]

source_file="res://mods-unpacked/otDan-BetterModList/ui/menus/global/check_box_on.png"
dest_files=[ "res://.import/check_box_on.png-2465afb427a94f03f97ca36847aa46db.stex" ]
source_file="res://mods-unpacked/otDan-BetterModList/ui/menus/global/bettermodlist-check_box_on.png"
dest_files=[ "res://.import/bettermodlist-check_box_on.png-99d38da3947233da317b404f74f4fc5a.stex" ]

[params]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

importer="texture"
type="StreamTexture"
path="res://.import/check_box_off.png-c866265a844d63ed361b3d576585cb2b.stex"
path="res://.import/bettermodlist-info.png-f065c2de866552f8375b29a31105109d.stex"
metadata={
"vram_texture": false
}

[deps]

source_file="res://mods-unpacked/otDan-BetterModList/ui/menus/global/check_box_off.png"
dest_files=[ "res://.import/check_box_off.png-c866265a844d63ed361b3d576585cb2b.stex" ]
source_file="res://mods-unpacked/otDan-BetterModList/ui/menus/global/bettermodlist-info.png"
dest_files=[ "res://.import/bettermodlist-info.png-f065c2de866552f8375b29a31105109d.stex" ]

[params]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

[ext_resource path="res://resources/fonts/actual/base/font_small_button.tres" type="DynamicFont" id=1]
[ext_resource path="res://mods-unpacked/otDan-BetterModList/ui/menus/pages/mods/components/author_toggle.gd" type="Script" id=2]
[ext_resource path="res://mods-unpacked/otDan-BetterModList/resources/themes/mod_menu_theme.theme" type="Theme" id=3]
[ext_resource path="res://mods-unpacked/otDan-BetterModList/resources/themes/parts/checkbox_hover_pressed_styleboxflat.tres" type="StyleBox" id=4]
[ext_resource path="res://mods-unpacked/otDan-BetterModList/resources/themes/bettermodlist-mod_menu_theme.theme" type="Theme" id=3]
[ext_resource path="res://mods-unpacked/otDan-BetterModList/resources/themes/parts/bettermodlist-checkbox_hover_pressed_styleboxflat.tres" type="StyleBox" id=4]

[node name="AuthorToggle" type="CheckBox"]
margin_right = 318.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ func add_authors():
_author_container.add_child(instance)

func sort_nodes(sort_type: String):
var sorter = NodeSorter.new()
var sorter = load("res://mods-unpacked/otDan-BetterModList/global/node_sorter.gd").new()
var children = _mod_list_container.get_children()

children.sort_custom(sorter, sort_type)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
[ext_resource path="res://mods-unpacked/otDan-BetterModList/ui/menus/pages/mods/components/mod_container.tscn" type="PackedScene" id=6]
[ext_resource path="res://mods-unpacked/otDan-BetterModList/ui/menus/pages/mods/components/author_toggle.tscn" type="PackedScene" id=7]
[ext_resource path="res://resources/fonts/actual/base/font_menus.tres" type="DynamicFont" id=8]
[ext_resource path="res://mods-unpacked/otDan-BetterModList/resources/themes/mod_menu_theme.theme" type="Theme" id=9]
[ext_resource path="res://mods-unpacked/otDan-BetterModList/ui/menus/global/info.png" type="Texture" id=10]
[ext_resource path="res://mods-unpacked/otDan-BetterModList/resources/themes/bettermodlist-mod_menu_theme.theme" type="Theme" id=9]
[ext_resource path="res://mods-unpacked/otDan-BetterModList/ui/menus/global/bettermodlist-info.png" type="Texture" id=10]

[node name="BetterMenuMods" type="MarginContainer"]
anchor_right = 1.0
Expand Down

0 comments on commit 1bb4b66

Please sign in to comment.