This repository has been archived by the owner on Oct 15, 2024. It is now read-only.
Releases: Chasmical/RogueLibs
Releases · Chasmical/RogueLibs
RogueLibs v1.3.2
- RogueLibs source code is now available on GitHub!;
- Added
RogueUtilities.ConvertToSprite(string filePath, int ppu)
andRogueUtilities.ConvertToSprite(byte[] data, int ppu)
, so you can specify your image's pixel-per-unit scale;
RogueLibs v1.3.1
- Added
InvItem.CombineTooltip
delegate to determine the tooltip text when combining items;
RogueLibs v1.3
- Added
CustomItem
class, more info here; - Added Examples.md section;
- Added missing XML comments;
RogueLibs v1.2
- Added
RogueUtilities.CrossConflict(params CustomMutator[] mutators)
method; - Added
RogueUtilities.EachConflict(IEnumerable\<string\> conflicts, params CustomMutator[] mutators)
method; - Added
CustomMutator.OnChangedState
event; - Added
CustomMutator.SortingOrder
andCustomMutator.SortingIndex
properties; - Added a small class
RogueChat
, more info here; - Fixed a bug, when custom mutators replaced original mutators in the Mutator Menu;
- Fixed a bug, when
CustomMutator
'sOnEnabled
andOnDisabled
weren't triggered;
RogueLibs v1.1.2
- Fixed configuration loading errors;
RogueLibs v1.1
- Renamed
Mutator
class toCustomMutator
!; - Removed
MutatorInfo
class, useCustomNameInfo
instead!; - Removed
Mutator.Cancellations
andCancelledBy
, useConflicting
instead!; - Removed
SetMutator(id, unlocked, english,..)
, useSetMutator(id, unlocked, name, description)
instead!; - Removed
SetCustomName(id, type, english,..)
, useSetCustomName(id, type, info)
instead!; - Removed
GetCustomName(id)
, useGetCustomName(id, type)
instead!; - Removed
DeleteCustomName(id)
, useDeleteCustomName(id, type)
instead!; CustomNameInfo
is now astruct
;- Changed some configuration loading code;
- Added class
RoguePatcher
, more info here; - Added static class
RogueUtilities
, more info here;