You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
XStorage lets you open multiple chests at once, rename them, and move items/stacks to the most suitable chest.
3
+
XStorage <#= (target == Targets.GitHub) ? "is a Valheim mod that " : "" #>lets you open multiple chests at once, rename them, and move items/stacks to the most suitable chest.
Copy file name to clipboardExpand all lines: Docs/Modules/20Features.t4
+3-9Lines changed: 3 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -4,22 +4,17 @@
4
4
5
5
By pressing alt-interact (<#= mf.Code("Shift + E") #> by default), you can give your chests a name. This name is shown when you hover over the chest, and also in the panel above the inventory when a chest is opened.
6
6
7
-
Chest names will be permanently stored in your world file. Uninstalling XStorage makes them go away, but after reinstalling they will be recovered.
8
-
9
7
<#= mf.Heading("Open many chests", size: HeadingSize.Small) #>
10
8
11
-
To display multiple chests, XStorage creates a new panel in the UI. Sadly there aren't enough pixels on the screen to make everything fit nicely, so there is a small overlap with existing UI panels. Hopefully I can address this in the future.
12
-
13
-
In theory there is no limit to how many chests XStorage can display. When the UI panel is full, XStorage makes the panel scrollable. In a future version, I might impose a restriction on how many chests can be opened though, as this could cause performance issues.
9
+
To display multiple chests, XStorage creates a new panel in the UI. The panel will automatically expand to fit in as many chests as it can. You can restrict the width and height in XStorage's config.
14
10
15
-
Also on the roadmap are config options that let you configure the distance and methods that decide which chests are opened. One such method I have in mind is chest linking, i.e. every opened chests searches for other chests near it, so that you could open an entire row of chests from either end. For now, XStorage opens any chest that is within 5 meters of the player (again, with no maximum amount of chests).
11
+
When you open more chests than XStorage can display on the screen, this panel will become scrollable.
16
12
17
13
<#= mf.Heading("Moving items/stacks to the most suitable chest", size: HeadingSize.Small) #>
18
14
19
15
When you auto-move an item from your inventory (via <#= mf.Code("Ctrl + Click") #>), XStorage tries to find the most suitable chest to put the item/stack in. It does so by picking the chest containing the highest quantity of the item you are moving, from all opened chests that still have free space.
20
-
So if you have a wooden chest with 499 stone in it, and you `Ctrl + Click` on a stack of stone in your inventory, 1 stone will be moved to that chest. You have to then <#= mf.Code("Ctrl + Click") #> it again to make the rest go to the next most suitable chest.
21
16
22
-
<#= mf.Code("Ctrl + Click") #>-ing an item or stack in any of the chests will always make it go to the player inventory.
17
+
<#= mf.Code("Ctrl + Click") #>-ing an item or stack in any of the chests will always make it go to the player inventory (equal to vanilla behaviour).
@@ -31,7 +26,6 @@ There are a few things that, at this stage, XStorage does not do well, or at all
31
26
<#=
32
27
mf.List(ListBullets.Asterisk, items: new string[] {
33
28
$"{mf.Bold("Gamepad input")}: XStorage does not deal with gamepad input at all. That is to say, the UI kind of breaks when you use a gamepad. I will look into this in the future, but for now this mod is pretty much mouse/keyboard only.",
34
-
$"{mf.Bold("The panel does not fit")}: The XStorage UI panel does not fit within the vanilla UI very well. I am considering alternative ways of displaying the container panels (for example by overlapping or even removing the crafting panel. Does anyone even use that while opening a chest?)"
Copy file name to clipboardExpand all lines: Docs/Modules/50Changelogs.t4
+21-3Lines changed: 21 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,26 @@
1
1
<#= mf.Heading("Changelogs") #>
2
2
3
+
* **v1.1.0** (2023-03-11)
4
+
5
+
* Fix error when placing a new chest
6
+
7
+
* Fix a HarmonyX warning that occurs when loading XStorage; this was caused by a library I use locally to manage documentation, but XStorage does not ship with this library.
8
+
9
+
* Fix being able to rename chests that are protected by a ward
10
+
11
+
* UI overhaul:
12
+
13
+
* You can now drag the XStorage panel
14
+
15
+
* You can set the maximum panel size in XStorage's config file using MaxColumns and MaxRows. Default value is 2 columns by 3 rows. XStorage will still restrict the size by what fits on your screen.
16
+
17
+
* XStorage will store the position of the panel per grid size when you close the panel, so that next time you open a panel of the same size, it will be restored to that position on the screen.
18
+
19
+
* Many code improvements and optimisations
20
+
21
+
<details>
22
+
<summary>Click to view previous versions</summary>
23
+
3
24
* **v1.0.2** (2023-03-02)
4
25
5
26
* Fix tooltips not always being fully visible
@@ -8,9 +29,6 @@
8
29
9
30
* Reworked a large portion of the containers panel UI
10
31
11
-
<details>
12
-
<summary>Click to view previous versions</summary>
13
-
14
32
* **v1.0.1** (2023-02-28)
15
33
16
34
* Remove "valheim.exe" check as it stops dedicated servers from loading the mod.
I will soon write a guide to get <#= thisModName #> working in your development environment. For now, you can probably figure some stuff out by having a look at the [J�tunnModStub](https://github.com/Valheim-Modding/JotunnModStub) project that <#= thisModName #> is based on. Please bear in mind that the information there might have changed since <#= thisModName #> was created, and that <#= thisModName #> itself may over time have diverted from the steps laid out there. Again, a guide will follow soon!
3
+
I will soon write a guide to get <#= thisModName #> working in your development environment. For now, you can probably figure some stuff out by having a look at the [JotunnModStub](https://github.com/Valheim-Modding/JotunnModStub) project that <#= thisModName #> is based on. Please bear in mind that the information there might have changed since <#= thisModName #> was created, and that <#= thisModName #> itself may over time have diverted from the steps laid out there. Again, a guide will follow soon!
# Download and installation instructions (for players)
@@ -27,7 +27,7 @@ For feature requests, choose `Feature request` on the [New issue](https://github
27
27
28
28
# Installation instructions (for developers)
29
29
30
-
I will soon write a guide to get XStorage working in your development environment. For now, you can probably figure some stuff out by having a look at the [J?tunnModStub](https://github.com/Valheim-Modding/JotunnModStub) project that XStorage is based on. Please bear in mind that the information there might have changed since XStorage was created, and that XStorage itself may over time have diverted from the steps laid out there. Again, a guide will follow soon!
30
+
I will soon write a guide to get XStorage working in your development environment. For now, you can probably figure some stuff out by having a look at the [JotunnModStub](https://github.com/Valheim-Modding/JotunnModStub) project that XStorage is based on. Please bear in mind that the information there might have changed since XStorage was created, and that XStorage itself may over time have diverted from the steps laid out there. Again, a guide will follow soon!
@@ -11,22 +11,17 @@ XStorage lets you open multiple chests at once, rename them, and move items/stac
11
11
12
12
By pressing alt-interact ([font=Courier New][b]'Shift + E'[/b][/font] by default), you can give your chests a name. This name is shown when you hover over the chest, and also in the panel above the inventory when a chest is opened.
13
13
14
-
Chest names will be permanently stored in your world file. Uninstalling XStorage makes them go away, but after reinstalling they will be recovered.
15
-
16
14
[size=3][b][color=#FFA03C]Open many chests[/color][/b][/size]
17
15
18
-
To display multiple chests, XStorage creates a new panel in the UI. Sadly there aren't enough pixels on the screen to make everything fit nicely, so there is a small overlap with existing UI panels. Hopefully I can address this in the future.
19
-
20
-
In theory there is no limit to how many chests XStorage can display. When the UI panel is full, XStorage makes the panel scrollable. In a future version, I might impose a restriction on how many chests can be opened though, as this could cause performance issues.
16
+
To display multiple chests, XStorage creates a new panel in the UI. The panel will automatically expand to fit in as many chests as it can. You can restrict the width and height in XStorage's config.
21
17
22
-
Also on the roadmap are config options that let you configure the distance and methods that decide which chests are opened. One such method I have in mind is chest linking, i.e. every opened chests searches for other chests near it, so that you could open an entire row of chests from either end. For now, XStorage opens any chest that is within 5 meters of the player (again, with no maximum amount of chests).
18
+
When you open more chests than XStorage can display on the screen, this panel will become scrollable.
23
19
24
20
[size=3][b][color=#FFA03C]Moving items/stacks to the most suitable chest[/color][/b][/size]
25
21
26
22
When you auto-move an item from your inventory (via [font=Courier New][b]'Ctrl + Click'[/b][/font]), XStorage tries to find the most suitable chest to put the item/stack in. It does so by picking the chest containing the highest quantity of the item you are moving, from all opened chests that still have free space.
27
-
So if you have a wooden chest with 499 stone in it, and you `Ctrl + Click` on a stack of stone in your inventory, 1 stone will be moved to that chest. You have to then [font=Courier New][b]'Ctrl + Click'[/b][/font] it again to make the rest go to the next most suitable chest.
28
23
29
-
[font=Courier New][b]'Ctrl + Click'[/b][/font]-ing an item or stack in any of the chests will always make it go to the player inventory.
24
+
[font=Courier New][b]'Ctrl + Click'[/b][/font]-ing an item or stack in any of the chests will always make it go to the player inventory (equal to vanilla behaviour).
@@ -37,7 +32,6 @@ In multiplayer games, all players need to have XStorage installed, or it will no
37
32
There are a few things that, at this stage, XStorage does not do well, or at all:
38
33
[list]
39
34
[*][b]Gamepad input[/b]: XStorage does not deal with gamepad input at all. That is to say, the UI kind of breaks when you use a gamepad. I will look into this in the future, but for now this mod is pretty much mouse/keyboard only.
40
-
[*][b]The panel does not fit[/b]: The XStorage UI panel does not fit within the vanilla UI very well. I am considering alternative ways of displaying the container panels (for example by overlapping or even removing the crafting panel. Does anyone even use that while opening a chest?)
41
35
[/list]
42
36
43
37
XStorage looks best when playing at a 16:9 ratio with a UI scaling of 95% or smaller.
@@ -11,22 +11,17 @@ XStorage lets you open multiple chests at once, rename them, and move items/stac
11
11
12
12
By pressing alt-interact (`Shift + E` by default), you can give your chests a name. This name is shown when you hover over the chest, and also in the panel above the inventory when a chest is opened.
13
13
14
-
Chest names will be permanently stored in your world file. Uninstalling XStorage makes them go away, but after reinstalling they will be recovered.
15
-
16
14
#### Open many chests
17
15
18
-
To display multiple chests, XStorage creates a new panel in the UI. Sadly there aren't enough pixels on the screen to make everything fit nicely, so there is a small overlap with existing UI panels. Hopefully I can address this in the future.
19
-
20
-
In theory there is no limit to how many chests XStorage can display. When the UI panel is full, XStorage makes the panel scrollable. In a future version, I might impose a restriction on how many chests can be opened though, as this could cause performance issues.
16
+
To display multiple chests, XStorage creates a new panel in the UI. The panel will automatically expand to fit in as many chests as it can. You can restrict the width and height in XStorage's config.
21
17
22
-
Also on the roadmap are config options that let you configure the distance and methods that decide which chests are opened. One such method I have in mind is chest linking, i.e. every opened chests searches for other chests near it, so that you could open an entire row of chests from either end. For now, XStorage opens any chest that is within 5 meters of the player (again, with no maximum amount of chests).
18
+
When you open more chests than XStorage can display on the screen, this panel will become scrollable.
23
19
24
20
#### Moving items/stacks to the most suitable chest
25
21
26
22
When you auto-move an item from your inventory (via `Ctrl + Click`), XStorage tries to find the most suitable chest to put the item/stack in. It does so by picking the chest containing the highest quantity of the item you are moving, from all opened chests that still have free space.
27
-
So if you have a wooden chest with 499 stone in it, and you `Ctrl + Click` on a stack of stone in your inventory, 1 stone will be moved to that chest. You have to then `Ctrl + Click` it again to make the rest go to the next most suitable chest.
28
23
29
-
`Ctrl + Click`-ing an item or stack in any of the chests will always make it go to the player inventory.
24
+
`Ctrl + Click`-ing an item or stack in any of the chests will always make it go to the player inventory (equal to vanilla behaviour).
30
25
31
26
#### Multiplayer
32
27
@@ -36,7 +31,6 @@ In multiplayer games, all players need to have XStorage installed, or it will no
36
31
37
32
There are a few things that, at this stage, XStorage does not do well, or at all:
38
33
***Gamepad input**: XStorage does not deal with gamepad input at all. That is to say, the UI kind of breaks when you use a gamepad. I will look into this in the future, but for now this mod is pretty much mouse/keyboard only.
39
-
***The panel does not fit**: The XStorage UI panel does not fit within the vanilla UI very well. I am considering alternative ways of displaying the container panels (for example by overlapping or even removing the crafting panel. Does anyone even use that while opening a chest?)
40
34
41
35
42
36
XStorage looks best when playing at a 16:9 ratio with a UI scaling of 95% or smaller.
@@ -57,6 +51,27 @@ I very strongly recommend using a mod manager such as [Vortex](https://www.nexus
57
51
58
52
# Changelogs
59
53
54
+
***v1.1.0** (2023-03-11)
55
+
56
+
* Fix error when placing a new chest
57
+
58
+
* Fix a HarmonyX warning that occurs when loading XStorage; this was caused by a library I use locally to manage documentation, but XStorage does not ship with this library.
59
+
60
+
* Fix being able to rename chests that are protected by a ward
61
+
62
+
* UI overhaul:
63
+
64
+
* You can now drag the XStorage panel
65
+
66
+
* You can set the maximum panel size in XStorage's config file using MaxColumns and MaxRows. Default value is 2 columns by 3 rows. XStorage will still restrict the size by what fits on your screen.
67
+
68
+
* XStorage will store the position of the panel per grid size when you close the panel, so that next time you open a panel of the same size, it will be restored to that position on the screen.
69
+
70
+
* Many code improvements and optimisations
71
+
72
+
<details>
73
+
<summary>Click to view previous versions</summary>
74
+
60
75
***v1.0.2** (2023-03-02)
61
76
62
77
* Fix tooltips not always being fully visible
@@ -65,9 +80,6 @@ I very strongly recommend using a mod manager such as [Vortex](https://www.nexus
65
80
66
81
* Reworked a large portion of the containers panel UI
67
82
68
-
<details>
69
-
<summary>Click to view previous versions</summary>
70
-
71
83
***v1.0.1** (2023-02-28)
72
84
73
85
* Remove "valheim.exe" check as it stops dedicated servers from loading the mod.
0 commit comments