Skip to content
This repository has been archived by the owner on Oct 15, 2024. It is now read-only.

Releases: Chasmical/RogueLibs

RogueLibs v1.3.2

15 Jul 07:16
Compare
Choose a tag to compare
  • RogueLibs source code is now available on GitHub!;
  • Added RogueUtilities.ConvertToSprite(string filePath, int ppu) and RogueUtilities.ConvertToSprite(byte[] data, int ppu), so you can specify your image's pixel-per-unit scale;

RogueLibs v1.3.1

14 Jul 15:24
11c8ae1
Compare
Choose a tag to compare
  • Added InvItem.CombineTooltip delegate to determine the tooltip text when combining items;

RogueLibs v1.3

11 Jul 14:05
22522ed
Compare
Choose a tag to compare
  • Added CustomItem class, more info here;
  • Added Examples.md section;
  • Added missing XML comments;

RogueLibs v1.2

18 Jun 07:39
ad3d19e
Compare
Choose a tag to compare
  • Added RogueUtilities.CrossConflict(params CustomMutator[] mutators) method;
  • Added RogueUtilities.EachConflict(IEnumerable\<string\> conflicts, params CustomMutator[] mutators) method;
  • Added CustomMutator.OnChangedState event;
  • Added CustomMutator.SortingOrder and CustomMutator.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's OnEnabled and OnDisabled weren't triggered;

RogueLibs v1.1.2

26 May 05:37
cc370f3
Compare
Choose a tag to compare
  • Fixed configuration loading errors;

RogueLibs v1.1

24 May 15:59
972a562
Compare
Choose a tag to compare
  • Renamed Mutator class to CustomMutator!;
  • Removed MutatorInfo class, use CustomNameInfo instead!;
  • Removed Mutator.Cancellations and CancelledBy, use Conflicting instead!;
  • Removed SetMutator(id, unlocked, english,..), use SetMutator(id, unlocked, name, description) instead!;
  • Removed SetCustomName(id, type, english,..), use SetCustomName(id, type, info) instead!;
  • Removed GetCustomName(id), use GetCustomName(id, type) instead!;
  • Removed DeleteCustomName(id), use DeleteCustomName(id, type) instead!;
  • CustomNameInfo is now a struct;
  • Changed some configuration loading code;
  • Added class RoguePatcher, more info here;
  • Added static class RogueUtilities, more info here;