0eNqlk89q20AQxl9l2ENPUhorcpIacrBJ2h4SWuoUCpYo69VEGrLeEatVHGEMeZY+Wp+kI8kEFwqF9iJmR59++ubP7tTatlh7ckHNdqrAxniqA7FTM7WigJsr8uxi9piPR8N1jf63hLaHsAnsMIeb5+C16SGzzP18+QHX5NEEGEVoJfZk4g05cmVceLI2jwPHB572JcdbXbLL4YE93FER3+qA8EFvcATeV9ggvFpvQHsctBvR2l5biha2FTrouPWQqbvhb/DZc9GKtycKXaYgoKkcWy47oAbauvS66GVbChU0tTYIjSF0Bk8yl7n3N/P7r19uloe6hIke3sACtWEHug0MNW8lV/DWnYyiW+0EUrWhz42WuA3ADyA9HKifPJXktIWxIyBToNLBuoNC+0dLppqkESwss3Q+Au0KWPB6Pp8bbDJ3xwU9kNF9v5vhpTS3ksqeQ49YGSnPXyXTaQTj4zRftgJqgraP6L+t3g6KPHMHqccinyRn6VRFiqSuRs1WO9Vb0rZfktDVKNvRD0sUThotpz9OVe2F4Ap8VrPJPvor42jyR18m+zxS6AIFwtHKcOi+u3azRi/oV8CayvjVSM0WhV1zQ+M+75TQ4uQ0jVQnQZqc73v04GF2dA8iZfUa7X9cgDReBq7/Zd/P4ku4/XgtHp5kQoPt5HKSXrxLLiaXF+n0fLLf/wLYGFBA
[kovarex] [1.1.3] Blueprint description gets cut off by 8 characters
-
- Inserter
- Posts: 20
- Joined: Mon Mar 04, 2019 7:53 pm
- Contact:
[kovarex] [1.1.3] Blueprint description gets cut off by 8 characters
Blueprint description gets cut off by 8 characters when saving after reaching max character limit.
Re: [1.1.3] Blueprint description gets cut off by 8 characters
Not really a bug as maximum description size is currently 500 characters.
But, the textbox should be also limited to this number so it would be obvious why editing, not only after confirmation.
But, the textbox should be also limited to this number so it would be obvious why editing, not only after confirmation.
Re: [1.1.3] Blueprint description gets cut off by 8 characters
There isn't really a technicall limit for 500 is there? You might want to increase it to 1000 or 5000.
Also while watching this I saw:
Also while watching this I saw:
Re: [1.1.3] Blueprint description gets cut off by 8 characters
The technical limit is to keep the blueprints reasonably small, especially when it comes to multiplayer and internal transfer of blueprint library contents into the game state.
Re: [kovarex] [1.1.3] Blueprint description gets cut off by 8 characters
I fixed the button position, but I can't reproduce the discrepancy between the limit of the textbox and the real limit, could you post the text that you used here, so I can reproduce it?
-
- Inserter
- Posts: 20
- Joined: Mon Mar 04, 2019 7:53 pm
- Contact:
Re: [kovarex] [1.1.3] Blueprint description gets cut off by 8 characters
I put the BP string in the first post so you could copy the text easily. Are you saying that you still could not recreate it even with the BP?
anyways, this is the string i used:
Code: Select all
[item=iron-ore][item=copper-ore][item=coal][item=stone] Extraction:
• Direct [item=electric-mining-drill]-to-[item=cargo-wagon] for Mid-Late Game
• These blueprints are for mid-late game when your "Mining Productivity" technology is upgrading with space science.
FEATURES:
• Miner & Beacon auto power down.
• Lane shutdown when out of ore.
Original mining design by darklich14, Blooper, and BobAAAces
Modifications and rich text by [color=255, 255, 20]SuperstalkerX[/color]
[color=red]12345
for a quality of life improvement, could you make a footer stating how many characters out of the max have been used? It's not critical it would just be nice to have.
Re: [kovarex] [1.1.3] Blueprint description gets cut off by 8 characters
Ok, so the inconsistency were the UTF8 charaters (the "•" in your case).
The limit in the GUI was the amount of UTF8 characters, while the internal limit was the amount of bytes in the string, and since • is worth 3 bytes, it didn't match up.
I fixed it in the way, that the limit always refers to the amount of bytes, so it is consistent.
The limit in the GUI was the amount of UTF8 characters, while the internal limit was the amount of bytes in the string, and since • is worth 3 bytes, it didn't match up.
I fixed it in the way, that the limit always refers to the amount of bytes, so it is consistent.