diff --git a/docs/api/Dalamud.Game.Internal.Gui.GameGui.html b/docs/api/Dalamud.Game.Internal.Gui.GameGui.html
index 3ecdd6c83..94217cf56 100644
--- a/docs/api/Dalamud.Game.Internal.Gui.GameGui.html
+++ b/docs/api/Dalamud.Game.Internal.Gui.GameGui.html
@@ -121,7 +121,7 @@
@@ -290,11 +290,12 @@ If > 1.000.000, subtract 1.000.000 and treat it as HQ
@@ -313,7 +314,8 @@ If > 1.000.000, subtract 1.000.000 and treat it as HQ
MapLinkPayload
mapLink
-
+ Link to the map to be opened
+
@@ -328,7 +330,70 @@ If > 1.000.000, subtract 1.000.000 and treat it as HQ
System.Boolean
-
+ True if there were no errors and it could open the map
+
+
+
+
+
+ |
+ Improve this Doc
+
+
+ View Source
+
+
+
ScreenToWorld(Vector2, out Vector3, Single)
+
Converts screen coordinates to in-world coordinates via raycasting.
+
+
+
Declaration
+
+
public bool ScreenToWorld(Vector2 screenPos, out Vector3 worldPos, float rayDistance = 100000F)
+
+
Parameters
+
+
+
+ Type
+ Name
+ Description
+
+
+
+
+ SharpDX.Vector2
+ screenPos
+ Screen coordinates
+
+
+
+ SharpDX.Vector3
+ worldPos
+ Converted coordinates
+
+
+
+ System.Single
+ rayDistance
+ How far to search for a collision
+
+
+
+
+
Returns
+
+
+
+ Type
+ Description
+
+
+
+
+ System.Boolean
+ True if successful. On false, worldPos's contents are undefined
+
@@ -337,7 +402,7 @@ If > 1.000.000, subtract 1.000.000 and treat it as HQ
Improve this Doc
- View Source
+ View Source
SetBgm(UInt16)
@@ -364,6 +429,62 @@ If > 1.000.000, subtract 1.000.000 and treat it as HQ
+
+ |
+ Improve this Doc
+
+
+ View Source
+
+
+
WorldToScreen(Vector3, out Vector2)
+
Converts in-world coordinates to screen coordinates (upper left corner origin).
+
+
+
Declaration
+
+
public bool WorldToScreen(Vector3 worldPos, out Vector2 screenPos)
+
+
Parameters
+
+
+
+ Type
+ Name
+ Description
+
+
+
+
+ SharpDX.Vector3
+ worldPos
+ Coordinates in the world
+
+
+
+ SharpDX.Vector2
+ screenPos
+ Converted coordinates
+
+
+
+
+
Returns
+
+
+
+ Type
+ Description
+
+
+
+
+ System.Boolean
+ True if worldPos corresponds to a position in front of the camera
+
+
+
+
Implements
diff --git a/docs/api/Dalamud.Game.Internal.Gui.html b/docs/api/Dalamud.Game.Internal.Gui.html
index 4eec33965..0be9c1c91 100644
--- a/docs/api/Dalamud.Game.Internal.Gui.html
+++ b/docs/api/Dalamud.Game.Internal.Gui.html
@@ -85,6 +85,8 @@
Delegates
+
+
diff --git a/docs/api/Dalamud.Game.Internal.Network.GameNetwork.OnNetworkMessageDelegate.html b/docs/api/Dalamud.Game.Internal.Network.GameNetwork.OnNetworkMessageDelegate.html
new file mode 100644
index 000000000..9c77b70e5
--- /dev/null
+++ b/docs/api/Dalamud.Game.Internal.Network.GameNetwork.OnNetworkMessageDelegate.html
@@ -0,0 +1,162 @@
+
+
+
+
+
+
+
+
Delegate GameNetwork.OnNetworkMessageDelegate
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Delegate GameNetwork.OnNetworkMessageDelegate
+
+
+
+
+ Assembly : Dalamud.dll
+ Syntax
+
+
public delegate void OnNetworkMessageDelegate(IntPtr dataPtr, ushort opCode, uint sourceActorId, uint targetActorId, NetworkMessageDirection direction);
+
+ Parameters
+
+
+
+ Type
+ Name
+ Description
+
+
+
+
+ System.IntPtr
+ dataPtr
+
+
+
+ System.UInt16
+ opCode
+
+
+
+ System.UInt32
+ sourceActorId
+
+
+
+ System.UInt32
+ targetActorId
+
+
+
+ NetworkMessageDirection
+ direction
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/api/Dalamud.Game.Internal.Network.GameNetwork.html b/docs/api/Dalamud.Game.Internal.Network.GameNetwork.html
index b4e65ccb8..a1ce97d00 100644
--- a/docs/api/Dalamud.Game.Internal.Network.GameNetwork.html
+++ b/docs/api/Dalamud.Game.Internal.Network.GameNetwork.html
@@ -118,18 +118,18 @@
|
- Improve this Doc
+ Improve this Doc
- View Source
+ View Source
-
GameNetwork(Dalamud, SigScanner)
+
GameNetwork(SigScanner)
Declaration
-
public GameNetwork(Dalamud dalamud, SigScanner scanner)
+
public GameNetwork(SigScanner scanner)
Parameters
@@ -141,11 +141,6 @@
-
- Dalamud.Dalamud
- dalamud
-
-
SigScanner
scanner
@@ -157,17 +152,18 @@
|
- Improve this Doc
+ Improve this Doc
- View Source
+ View Source
- OnZonePacket
-
+ OnNetworkMessage
+ Event that is called when a network message is sent/received.
+
Declaration
-
public GameNetwork.OnZonePacketDelegate OnZonePacket
+
public GameNetwork.OnNetworkMessageDelegate OnNetworkMessage
Field Value
@@ -179,7 +175,7 @@
- GameNetwork.OnZonePacketDelegate
+ GameNetwork.OnNetworkMessageDelegate
@@ -191,7 +187,7 @@
Improve this Doc
- View Source
+ View Source
Dispose()
@@ -206,7 +202,7 @@
Improve this Doc
- View Source
+ View Source
Enable()
@@ -221,7 +217,7 @@
Improve this Doc
- View Source
+ View Source
UpdateQueue(Framework)
@@ -264,7 +260,7 @@
Improve this Doc
- View Source
+ View Source
diff --git a/docs/api/Dalamud.Game.Internal.Network.NetworkMessageDirection.html b/docs/api/Dalamud.Game.Internal.Network.NetworkMessageDirection.html
new file mode 100644
index 000000000..5695c0ef9
--- /dev/null
+++ b/docs/api/Dalamud.Game.Internal.Network.NetworkMessageDirection.html
@@ -0,0 +1,149 @@
+
+
+
+
+
+
+
+ Enum NetworkMessageDirection
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Enum NetworkMessageDirection
+
+
+
+
+ Assembly : Dalamud.dll
+ Syntax
+
+
public enum NetworkMessageDirection
+
+ Fields
+
+
+
+
+ Name
+ Description
+
+
+
+
+ ZoneDown
+
+
+
+ ZoneUp
+
+
+
+
+ Extension Methods
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/api/Dalamud.Game.Internal.Network.html b/docs/api/Dalamud.Game.Internal.Network.html
index 67ec9a3c7..7b2e15ce2 100644
--- a/docs/api/Dalamud.Game.Internal.Network.html
+++ b/docs/api/Dalamud.Game.Internal.Network.html
@@ -79,9 +79,13 @@
+ Enums
+
+
+
Delegates
-
+
diff --git a/docs/api/Dalamud.Game.Network.NetworkHandlers.CfPop.html b/docs/api/Dalamud.Game.Network.NetworkHandlers.CfPop.html
index 1327b3e7f..df9fda653 100644
--- a/docs/api/Dalamud.Game.Network.NetworkHandlers.CfPop.html
+++ b/docs/api/Dalamud.Game.Network.NetworkHandlers.CfPop.html
@@ -124,7 +124,7 @@
Improve this Doc
- View Source
+ View Source
diff --git a/docs/api/Dalamud.Game.Network.NetworkHandlers.html b/docs/api/Dalamud.Game.Network.NetworkHandlers.html
index 3aa94c8ac..e7e557b28 100644
--- a/docs/api/Dalamud.Game.Network.NetworkHandlers.html
+++ b/docs/api/Dalamud.Game.Network.NetworkHandlers.html
@@ -117,7 +117,7 @@
Improve this Doc
- View Source
+ View Source
NetworkHandlers(Dalamud, Boolean)
@@ -156,7 +156,7 @@
Improve this Doc
- View Source
+ View Source
ProcessCfPop
@@ -191,7 +191,7 @@
Improve this Doc
- View Source
+ View Source
diff --git a/docs/api/Dalamud.Interface.FontAwesomeExtensions.html b/docs/api/Dalamud.Interface.FontAwesomeExtensions.html
new file mode 100644
index 000000000..6adc4104d
--- /dev/null
+++ b/docs/api/Dalamud.Interface.FontAwesomeExtensions.html
@@ -0,0 +1,250 @@
+
+
+
+
+
+
+
+ Class FontAwesomeExtensions
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Class FontAwesomeExtensions
+
+
+
+
+
Inheritance
+
System.Object
+
FontAwesomeExtensions
+
+
+
Inherited Members
+
+ System.Object.ToString()
+
+
+ System.Object.Equals(System.Object)
+
+
+ System.Object.Equals(System.Object, System.Object)
+
+
+ System.Object.ReferenceEquals(System.Object, System.Object)
+
+
+ System.Object.GetHashCode()
+
+
+ System.Object.GetType()
+
+
+ System.Object.MemberwiseClone()
+
+
+
+ Assembly : Dalamud.dll
+ Syntax
+
+
public static class FontAwesomeExtensions
+
+ Methods
+
+
+ |
+ Improve this Doc
+
+
+ View Source
+
+
+ ToIconChar(FontAwesomeIcon)
+
+
+ Declaration
+
+
public static char ToIconChar(this FontAwesomeIcon icon)
+
+ Parameters
+
+ Returns
+
+
+
+ Type
+ Description
+
+
+
+
+ System.Char
+
+
+
+
+
+ |
+ Improve this Doc
+
+
+ View Source
+
+
+ ToIconString(FontAwesomeIcon)
+
+
+ Declaration
+
+
public static string ToIconString(this FontAwesomeIcon icon)
+
+ Parameters
+
+ Returns
+
+
+
+ Type
+ Description
+
+
+
+
+ System.String
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/api/Dalamud.Interface.FontAwesomeIcon.html b/docs/api/Dalamud.Interface.FontAwesomeIcon.html
new file mode 100644
index 000000000..604456b82
--- /dev/null
+++ b/docs/api/Dalamud.Interface.FontAwesomeIcon.html
@@ -0,0 +1,5779 @@
+
+
+
+
+
+
+
+ Enum FontAwesomeIcon
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Enum FontAwesomeIcon
+
+
+
+
+ Assembly : Dalamud.dll
+ Syntax
+
+
public enum FontAwesomeIcon
+
+ Fields
+
+
+
+
+ Name
+ Description
+
+
+
+
+ _500Px
+
+
+
+ AccessibleIcon
+
+
+
+ Accusoft
+
+
+
+ AcquisitionsIncorporated
+
+
+
+ Ad
+
+
+
+ AddressBook
+
+
+
+ AddressCard
+
+
+
+ Adjust
+
+
+
+ Adn
+
+
+
+ Adobe
+
+
+
+ Adversal
+
+
+
+ Affiliatetheme
+
+
+
+ Airbnb
+
+
+
+ AirFreshener
+
+
+
+ Algolia
+
+
+
+ AlignCenter
+
+
+
+ AlignJustify
+
+
+
+ AlignLeft
+
+
+
+ AlignRight
+
+
+
+ Alipay
+
+
+
+ Allergies
+
+
+
+ Amazon
+
+
+
+ AmazonPay
+
+
+
+ Ambulance
+
+
+
+ AmericanSignLanguageInterpreting
+
+
+
+ Amilia
+
+
+
+ Anchor
+
+
+
+ Android
+
+
+
+ Angellist
+
+
+
+ AngleDoubleDown
+
+
+
+ AngleDoubleLeft
+
+
+
+ AngleDoubleRight
+
+
+
+ AngleDoubleUp
+
+
+
+ AngleDown
+
+
+
+ AngleLeft
+
+
+
+ AngleRight
+
+
+
+ AngleUp
+
+
+
+ Angry
+
+
+
+ Angrycreative
+
+
+
+ Angular
+
+
+
+ Ankh
+
+
+
+ Apper
+
+
+
+ Apple
+
+
+
+ AppleAlt
+
+
+
+ ApplePay
+
+
+
+ AppStore
+
+
+
+ AppStoreIos
+
+
+
+ Archive
+
+
+
+ Archway
+
+
+
+ ArrowAltCircleDown
+
+
+
+ ArrowAltCircleLeft
+
+
+
+ ArrowAltCircleRight
+
+
+
+ ArrowAltCircleUp
+
+
+
+ ArrowCircleDown
+
+
+
+ ArrowCircleLeft
+
+
+
+ ArrowCircleRight
+
+
+
+ ArrowCircleUp
+
+
+
+ ArrowDown
+
+
+
+ ArrowLeft
+
+
+
+ ArrowRight
+
+
+
+ ArrowsAlt
+
+
+
+ ArrowsAltH
+
+
+
+ ArrowsAltV
+
+
+
+ ArrowUp
+
+
+
+ Artstation
+
+
+
+ AssistiveListeningSystems
+
+
+
+ Asterisk
+
+
+
+ Asymmetrik
+
+
+
+ At
+
+
+
+ Atlas
+
+
+
+ Atlassian
+
+
+
+ Atom
+
+
+
+ Audible
+
+
+
+ AudioDescription
+
+
+
+ Autoprefixer
+
+
+
+ Avianex
+
+
+
+ Aviato
+
+
+
+ Award
+
+
+
+ Aws
+
+
+
+ Baby
+
+
+
+ BabyCarriage
+
+
+
+ Backspace
+
+
+
+ Backward
+
+
+
+ Bacon
+
+
+
+ Bahai
+
+
+
+ BalanceScale
+
+
+
+ BalanceScaleLeft
+
+
+
+ BalanceScaleRight
+
+
+
+ Ban
+
+
+
+ BandAid
+
+
+
+ Bandcamp
+
+
+
+ Barcode
+
+
+
+ Bars
+
+
+
+ BaseballBall
+
+
+
+ BasketballBall
+
+
+
+ Bath
+
+
+
+ BatteryEmpty
+
+
+
+ BatteryFull
+
+
+
+ BatteryHalf
+
+
+
+ BatteryQuarter
+
+
+
+ BatteryThreeQuarters
+
+
+
+ BattleNet
+
+
+
+ Bed
+
+
+
+ Beer
+
+
+
+ Behance
+
+
+
+ BehanceSquare
+
+
+
+ Bell
+
+
+
+ BellSlash
+
+
+
+ BezierCurve
+
+
+
+ Bible
+
+
+
+ Bicycle
+
+
+
+ Biking
+
+
+
+ Bimobject
+
+
+
+ Binoculars
+
+
+
+ Biohazard
+
+
+
+ BirthdayCake
+
+
+
+ Bitbucket
+
+
+
+ Bitcoin
+
+
+
+ Bity
+
+
+
+ Blackberry
+
+
+
+ BlackTie
+
+
+
+ Blender
+
+
+
+ BlenderPhone
+
+
+
+ Blind
+
+
+
+ Blog
+
+
+
+ Blogger
+
+
+
+ BloggerB
+
+
+
+ Bluetooth
+
+
+
+ BluetoothB
+
+
+
+ Bold
+
+
+
+ Bolt
+
+
+
+ Bomb
+
+
+
+ Bone
+
+
+
+ Bong
+
+
+
+ Book
+
+
+
+ BookDead
+
+
+
+ Bookmark
+
+
+
+ BookMedical
+
+
+
+ BookOpen
+
+
+
+ BookReader
+
+
+
+ Bootstrap
+
+
+
+ BorderAll
+
+
+
+ BorderNone
+
+
+
+ BorderStyle
+
+
+
+ BowlingBall
+
+
+
+ Box
+
+
+
+ Boxes
+
+
+
+ BoxOpen
+
+
+
+ Braille
+
+
+
+ Brain
+
+
+
+ BreadSlice
+
+
+
+ Briefcase
+
+
+
+ BriefcaseMedical
+
+
+
+ BroadcastTower
+
+
+
+ Broom
+
+
+
+ Brush
+
+
+
+ Btc
+
+
+
+ Buffer
+
+
+
+ Bug
+
+
+
+ Building
+
+
+
+ Bullhorn
+
+
+
+ Bullseye
+
+
+
+ Burn
+
+
+
+ Buromobelexperte
+
+
+
+ Bus
+
+
+
+ BusAlt
+
+
+
+ BusinessTime
+
+
+
+ BuyNLarge
+
+
+
+ Buysellads
+
+
+
+ Calculator
+
+
+
+ Calendar
+
+
+
+ CalendarAlt
+
+
+
+ CalendarCheck
+
+
+
+ CalendarDay
+
+
+
+ CalendarMinus
+
+
+
+ CalendarPlus
+
+
+
+ CalendarTimes
+
+
+
+ CalendarWeek
+
+
+
+ Camera
+
+
+
+ CameraRetro
+
+
+
+ Campground
+
+
+
+ CanadianMapleLeaf
+
+
+
+ CandyCane
+
+
+
+ Cannabis
+
+
+
+ Capsules
+
+
+
+ Car
+
+
+
+ CarAlt
+
+
+
+ Caravan
+
+
+
+ CarBattery
+
+
+
+ CarCrash
+
+
+
+ CaretDown
+
+
+
+ CaretLeft
+
+
+
+ CaretRight
+
+
+
+ CaretSquareDown
+
+
+
+ CaretSquareLeft
+
+
+
+ CaretSquareRight
+
+
+
+ CaretSquareUp
+
+
+
+ CaretUp
+
+
+
+ Carrot
+
+
+
+ CarSide
+
+
+
+ CartArrowDown
+
+
+
+ CartPlus
+
+
+
+ CashRegister
+
+
+
+ Cat
+
+
+
+ CcAmazonPay
+
+
+
+ CcAmex
+
+
+
+ CcApplePay
+
+
+
+ CcDinersClub
+
+
+
+ CcDiscover
+
+
+
+ CcJcb
+
+
+
+ CcMastercard
+
+
+
+ CcPaypal
+
+
+
+ CcStripe
+
+
+
+ CcVisa
+
+
+
+ Centercode
+
+
+
+ Centos
+
+
+
+ Certificate
+
+
+
+ Chair
+
+
+
+ Chalkboard
+
+
+
+ ChalkboardTeacher
+
+
+
+ ChargingStation
+
+
+
+ ChartArea
+
+
+
+ ChartBar
+
+
+
+ ChartLine
+
+
+
+ ChartPie
+
+
+
+ Check
+
+
+
+ CheckCircle
+
+
+
+ CheckDouble
+
+
+
+ CheckSquare
+
+
+
+ Cheese
+
+
+
+ Chess
+
+
+
+ ChessBishop
+
+
+
+ ChessBoard
+
+
+
+ ChessKing
+
+
+
+ ChessKnight
+
+
+
+ ChessPawn
+
+
+
+ ChessQueen
+
+
+
+ ChessRook
+
+
+
+ ChevronCircleDown
+
+
+
+ ChevronCircleLeft
+
+
+
+ ChevronCircleRight
+
+
+
+ ChevronCircleUp
+
+
+
+ ChevronDown
+
+
+
+ ChevronLeft
+
+
+
+ ChevronRight
+
+
+
+ ChevronUp
+
+
+
+ Child
+
+
+
+ Chrome
+
+
+
+ Chromecast
+
+
+
+ Church
+
+
+
+ Circle
+
+
+
+ CircleNotch
+
+
+
+ City
+
+
+
+ ClinicMedical
+
+
+
+ Clipboard
+
+
+
+ ClipboardCheck
+
+
+
+ ClipboardList
+
+
+
+ Clock
+
+
+
+ Clone
+
+
+
+ ClosedCaptioning
+
+
+
+ Cloud
+
+
+
+ CloudDownloadAlt
+
+
+
+ CloudMeatball
+
+
+
+ CloudMoon
+
+
+
+ CloudMoonRain
+
+
+
+ CloudRain
+
+
+
+ Cloudscale
+
+
+
+ CloudShowersHeavy
+
+
+
+ Cloudsmith
+
+
+
+ CloudSun
+
+
+
+ CloudSunRain
+
+
+
+ CloudUploadAlt
+
+
+
+ Cloudversify
+
+
+
+ Cocktail
+
+
+
+ Code
+
+
+
+ CodeBranch
+
+
+
+ Codepen
+
+
+
+ Codiepie
+
+
+
+ Coffee
+
+
+
+ Cog
+
+
+
+ Cogs
+
+
+
+ Coins
+
+
+
+ Columns
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ CompactDisc
+
+
+
+ Compass
+
+
+
+ Compress
+
+
+
+ CompressAlt
+
+
+
+ CompressArrowsAlt
+
+
+
+ ConciergeBell
+
+
+
+ Confluence
+
+
+
+ Connectdevelop
+
+
+
+ Contao
+
+
+
+ Cookie
+
+
+
+ CookieBite
+
+
+
+ Copy
+
+
+
+ Copyright
+
+
+
+ CottonBureau
+
+
+
+ Couch
+
+
+
+ Cpanel
+
+
+
+ CreativeCommons
+
+
+
+ CreativeCommonsBy
+
+
+
+ CreativeCommonsNc
+
+
+
+ CreativeCommonsNcEu
+
+
+
+ CreativeCommonsNcJp
+
+
+
+ CreativeCommonsNd
+
+
+
+ CreativeCommonsPd
+
+
+
+ CreativeCommonsPdAlt
+
+
+
+ CreativeCommonsRemix
+
+
+
+ CreativeCommonsSa
+
+
+
+ CreativeCommonsSampling
+
+
+
+ CreativeCommonsSamplingPlus
+
+
+
+ CreativeCommonsShare
+
+
+
+ CreativeCommonsZero
+
+
+
+ CreditCard
+
+
+
+ CriticalRole
+
+
+
+ Crop
+
+
+
+ CropAlt
+
+
+
+ Cross
+
+
+
+ Crosshairs
+
+
+
+ Crow
+
+
+
+ Crown
+
+
+
+ Crutch
+
+
+
+ Css3
+
+
+
+ Css3Alt
+
+
+
+ Cube
+
+
+
+ Cubes
+
+
+
+ Cut
+
+
+
+ Cuttlefish
+
+
+
+ Dailymotion
+
+
+
+ DAndD
+
+
+
+ DAndDBeyond
+
+
+
+ Dashcube
+
+
+
+ Database
+
+
+
+ Deaf
+
+
+
+ Delicious
+
+
+
+ Democrat
+
+
+
+ Deploydog
+
+
+
+ Deskpro
+
+
+
+ Desktop
+
+
+
+ Dev
+
+
+
+ Deviantart
+
+
+
+ Dharmachakra
+
+
+
+ Dhl
+
+
+
+ Diagnoses
+
+
+
+ Diaspora
+
+
+
+ Dice
+
+
+
+ DiceD20
+
+
+
+ DiceD6
+
+
+
+ DiceFive
+
+
+
+ DiceFour
+
+
+
+ DiceOne
+
+
+
+ DiceSix
+
+
+
+ DiceThree
+
+
+
+ DiceTwo
+
+
+
+ Digg
+
+
+
+ DigitalOcean
+
+
+
+ DigitalTachograph
+
+
+
+ Directions
+
+
+
+ Discord
+
+
+
+ Discourse
+
+
+
+ Divide
+
+
+
+ Dizzy
+
+
+
+ Dna
+
+
+
+ Dochub
+
+
+
+ Docker
+
+
+
+ Dog
+
+
+
+ DollarSign
+
+
+
+ Dolly
+
+
+
+ DollyFlatbed
+
+
+
+ Donate
+
+
+
+ DoorClosed
+
+
+
+ DoorOpen
+
+
+
+ DotCircle
+
+
+
+ Dove
+
+
+
+ Download
+
+
+
+ Draft2digital
+
+
+
+ DraftingCompass
+
+
+
+ Dragon
+
+
+
+ DrawPolygon
+
+
+
+ Dribbble
+
+
+
+ DribbbleSquare
+
+
+
+ Dropbox
+
+
+
+ Drum
+
+
+
+ DrumSteelpan
+
+
+
+ DrumstickBite
+
+
+
+ Drupal
+
+
+
+ Dumbbell
+
+
+
+ Dumpster
+
+
+
+ DumpsterFire
+
+
+
+ Dungeon
+
+
+
+ Dyalog
+
+
+
+ Earlybirds
+
+
+
+ Ebay
+
+
+
+ Edge
+
+
+
+ Edit
+
+
+
+ Egg
+
+
+
+ Eject
+
+
+
+ Elementor
+
+
+
+ EllipsisH
+
+
+
+ EllipsisV
+
+
+
+ Ello
+
+
+
+ Ember
+
+
+
+ Empire
+
+
+
+ Envelope
+
+
+
+ EnvelopeOpen
+
+
+
+ EnvelopeOpenText
+
+
+
+ EnvelopeSquare
+
+
+
+ Envira
+
+
+
+ Equals
+
+
+
+ Eraser
+
+
+
+ Erlang
+
+
+
+ Ethereum
+
+
+
+ Ethernet
+
+
+
+ Etsy
+
+
+
+ EuroSign
+
+
+
+ Evernote
+
+
+
+ ExchangeAlt
+
+
+
+ Exclamation
+
+
+
+ ExclamationCircle
+
+
+
+ ExclamationTriangle
+
+
+
+ Expand
+
+
+
+ ExpandAlt
+
+
+
+ ExpandArrowsAlt
+
+
+
+ Expeditedssl
+
+
+
+ ExternalLinkAlt
+
+
+
+ ExternalLinkSquareAlt
+
+
+
+ Eye
+
+
+
+ EyeDropper
+
+
+
+ EyeSlash
+
+
+
+ Facebook
+
+
+
+ FacebookF
+
+
+
+ FacebookMessenger
+
+
+
+ FacebookSquare
+
+
+
+ Fan
+
+
+
+ FantasyFlightGames
+
+
+
+ FastBackward
+
+
+
+ FastForward
+
+
+
+ Fax
+
+
+
+ Feather
+
+
+
+ FeatherAlt
+
+
+
+ Fedex
+
+
+
+ Fedora
+
+
+
+ Female
+
+
+
+ FighterJet
+
+
+
+ Figma
+
+
+
+ File
+
+
+
+ FileAlt
+
+
+
+ FileArchive
+
+
+
+ FileAudio
+
+
+
+ FileCode
+
+
+
+ FileContract
+
+
+
+ FileCsv
+
+
+
+ FileDownload
+
+
+
+ FileExcel
+
+
+
+ FileExport
+
+
+
+ FileImage
+
+
+
+ FileImport
+
+
+
+ FileInvoice
+
+
+
+ FileInvoiceDollar
+
+
+
+ FileMedical
+
+
+
+ FileMedicalAlt
+
+
+
+ FilePdf
+
+
+
+ FilePowerpoint
+
+
+
+ FilePrescription
+
+
+
+ FileSignature
+
+
+
+ FileUpload
+
+
+
+ FileVideo
+
+
+
+ FileWord
+
+
+
+ Fill
+
+
+
+ FillDrip
+
+
+
+ Film
+
+
+
+ Filter
+
+
+
+ Fingerprint
+
+
+
+ Fire
+
+
+
+ FireAlt
+
+
+
+ FireExtinguisher
+
+
+
+ Firefox
+
+
+
+ FirefoxBrowser
+
+
+
+ FirstAid
+
+
+
+ Firstdraft
+
+
+
+ FirstOrder
+
+
+
+ FirstOrderAlt
+
+
+
+ Fish
+
+
+
+ FistRaised
+
+
+
+ Flag
+
+
+
+ FlagCheckered
+
+
+
+ FlagUsa
+
+
+
+ Flask
+
+
+
+ Flickr
+
+
+
+ Flipboard
+
+
+
+ Flushed
+
+
+
+ Fly
+
+
+
+ Folder
+
+
+
+ FolderMinus
+
+
+
+ FolderOpen
+
+
+
+ FolderPlus
+
+
+
+ Font
+
+
+
+ FontAwesome
+
+
+
+ FontAwesomeAlt
+
+
+
+ FontAwesomeFlag
+
+
+
+ FontAwesomeLogoFull
+
+
+
+ Fonticons
+
+
+
+ FonticonsFi
+
+
+
+
+
+
+
+ FortAwesome
+
+
+
+ FortAwesomeAlt
+
+
+
+ Forumbee
+
+
+
+ Forward
+
+
+
+ Foursquare
+
+
+
+ Freebsd
+
+
+
+ FreeCodeCamp
+
+
+
+ Frog
+
+
+
+ Frown
+
+
+
+ FrownOpen
+
+
+
+ Fulcrum
+
+
+
+ FunnelDollar
+
+
+
+ Futbol
+
+
+
+ GalacticRepublic
+
+
+
+ GalacticSenate
+
+
+
+ Gamepad
+
+
+
+ GasPump
+
+
+
+ Gavel
+
+
+
+ Gem
+
+
+
+ Genderless
+
+
+
+ GetPocket
+
+
+
+ Gg
+
+
+
+ GgCircle
+
+
+
+ Ghost
+
+
+
+ Gift
+
+
+
+ Gifts
+
+
+
+ Git
+
+
+
+ GitAlt
+
+
+
+ Github
+
+
+
+ GithubAlt
+
+
+
+ GithubSquare
+
+
+
+ Gitkraken
+
+
+
+ Gitlab
+
+
+
+ GitSquare
+
+
+
+ Gitter
+
+
+
+ GlassCheers
+
+
+
+ Glasses
+
+
+
+ GlassMartini
+
+
+
+ GlassMartiniAlt
+
+
+
+ GlassWhiskey
+
+
+
+ Glide
+
+
+
+ GlideG
+
+
+
+ Globe
+
+
+
+ GlobeAfrica
+
+
+
+ GlobeAmericas
+
+
+
+ GlobeAsia
+
+
+
+ GlobeEurope
+
+
+
+ Gofore
+
+
+
+ GolfBall
+
+
+
+ Goodreads
+
+
+
+ GoodreadsG
+
+
+
+ Google
+
+
+
+ GoogleDrive
+
+
+
+ GooglePlay
+
+
+
+ GooglePlus
+
+
+
+ GooglePlusG
+
+
+
+ GooglePlusSquare
+
+
+
+ GoogleWallet
+
+
+
+ Gopuram
+
+
+
+ GraduationCap
+
+
+
+ Gratipay
+
+
+
+ Grav
+
+
+
+ GreaterThan
+
+
+
+ GreaterThanEqual
+
+
+
+ Grimace
+
+
+
+ Grin
+
+
+
+ GrinAlt
+
+
+
+ GrinBeam
+
+
+
+ GrinBeamSweat
+
+
+
+ GrinHearts
+
+
+
+ GrinSquint
+
+
+
+ GrinSquintTears
+
+
+
+ GrinStars
+
+
+
+ GrinTears
+
+
+
+ GrinTongue
+
+
+
+ GrinTongueSquint
+
+
+
+ GrinTongueWink
+
+
+
+ GrinWink
+
+
+
+ Gripfire
+
+
+
+ GripHorizontal
+
+
+
+ GripLines
+
+
+
+ GripLinesVertical
+
+
+
+ GripVertical
+
+
+
+ Grunt
+
+
+
+ Guitar
+
+
+
+ Gulp
+
+
+
+ HackerNews
+
+
+
+ HackerNewsSquare
+
+
+
+ Hackerrank
+
+
+
+ Hamburger
+
+
+
+ Hammer
+
+
+
+ Hamsa
+
+
+
+ HandHolding
+
+
+
+ HandHoldingHeart
+
+
+
+ HandHoldingUsd
+
+
+
+ HandLizard
+
+
+
+ HandMiddleFinger
+
+
+
+ HandPaper
+
+
+
+ HandPeace
+
+
+
+ HandPointDown
+
+
+
+ HandPointer
+
+
+
+ HandPointLeft
+
+
+
+ HandPointRight
+
+
+
+ HandPointUp
+
+
+
+ HandRock
+
+
+
+ Hands
+
+
+
+ HandScissors
+
+
+
+ Handshake
+
+
+
+ HandsHelping
+
+
+
+ HandSpock
+
+
+
+ Hanukiah
+
+
+
+ HardHat
+
+
+
+ Hashtag
+
+
+
+ HatCowboy
+
+
+
+ HatCowboySide
+
+
+
+ HatWizard
+
+
+
+ Hdd
+
+
+
+ Heading
+
+
+
+ Headphones
+
+
+
+ HeadphonesAlt
+
+
+
+ Headset
+
+
+
+ Heart
+
+
+
+ Heartbeat
+
+
+
+ HeartBroken
+
+
+
+ Helicopter
+
+
+
+ Highlighter
+
+
+
+ Hiking
+
+
+
+ Hippo
+
+
+
+ Hips
+
+
+
+ HireAHelper
+
+
+
+ History
+
+
+
+ HockeyPuck
+
+
+
+ HollyBerry
+
+
+
+ Home
+
+
+
+ Hooli
+
+
+
+ Hornbill
+
+
+
+ Horse
+
+
+
+ HorseHead
+
+
+
+ Hospital
+
+
+
+ HospitalAlt
+
+
+
+ HospitalSymbol
+
+
+
+ Hotdog
+
+
+
+ Hotel
+
+
+
+ Hotjar
+
+
+
+ HotTub
+
+
+
+ Hourglass
+
+
+
+ HourglassEnd
+
+
+
+ HourglassHalf
+
+
+
+ HourglassStart
+
+
+
+ HouseDamage
+
+
+
+ Houzz
+
+
+
+ Hryvnia
+
+
+
+ HSquare
+
+
+
+ Html5
+
+
+
+ Hubspot
+
+
+
+ IceCream
+
+
+
+ Icicles
+
+
+
+ Icons
+
+
+
+ ICursor
+
+
+
+ IdBadge
+
+
+
+ IdCard
+
+
+
+ IdCardAlt
+
+
+
+ Ideal
+
+
+
+ Igloo
+
+
+
+ Image
+
+
+
+ Images
+
+
+
+ Imdb
+
+
+
+ Inbox
+
+
+
+ Indent
+
+
+
+ Industry
+
+
+
+ Infinity
+
+
+
+ Info
+
+
+
+ InfoCircle
+
+
+
+ Instagram
+
+
+
+ InstagramSquare
+
+
+
+ Intercom
+
+
+
+ InternetExplorer
+
+
+
+ Invision
+
+
+
+ Ioxhost
+
+
+
+ Italic
+
+
+
+ ItchIo
+
+
+
+ Itunes
+
+
+
+ ItunesNote
+
+
+
+ Java
+
+
+
+ Jedi
+
+
+
+ JediOrder
+
+
+
+ Jenkins
+
+
+
+ Jira
+
+
+
+ Joget
+
+
+
+ Joint
+
+
+
+ Joomla
+
+
+
+ JournalWhills
+
+
+
+ Js
+
+
+
+ Jsfiddle
+
+
+
+ JsSquare
+
+
+
+ Kaaba
+
+
+
+ Kaggle
+
+
+
+ Key
+
+
+
+ Keybase
+
+
+
+ Keyboard
+
+
+
+ Keycdn
+
+
+
+ Khanda
+
+
+
+ Kickstarter
+
+
+
+ KickstarterK
+
+
+
+ Kiss
+
+
+
+ KissBeam
+
+
+
+ KissWinkHeart
+
+
+
+ KiwiBird
+
+
+
+ Korvue
+
+
+
+ Landmark
+
+
+
+ Language
+
+
+
+ Laptop
+
+
+
+ LaptopCode
+
+
+
+ LaptopMedical
+
+
+
+ Laravel
+
+
+
+ Lastfm
+
+
+
+ LastfmSquare
+
+
+
+ Laugh
+
+
+
+ LaughBeam
+
+
+
+ LaughSquint
+
+
+
+ LaughWink
+
+
+
+ LayerGroup
+
+
+
+ Leaf
+
+
+
+ Leanpub
+
+
+
+ Lemon
+
+
+
+ Less
+
+
+
+ LessThan
+
+
+
+ LessThanEqual
+
+
+
+ LevelDownAlt
+
+
+
+ LevelUpAlt
+
+
+
+ LifeRing
+
+
+
+ Lightbulb
+
+
+
+ Line
+
+
+
+ Link
+
+
+
+ Linkedin
+
+
+
+ LinkedinIn
+
+
+
+ Linode
+
+
+
+ Linux
+
+
+
+ LiraSign
+
+
+
+ List
+
+
+
+ ListAlt
+
+
+
+ ListOl
+
+
+
+ ListUl
+
+
+
+ LocationArrow
+
+
+
+ Lock
+
+
+
+ LockOpen
+
+
+
+ LongArrowAltDown
+
+
+
+ LongArrowAltLeft
+
+
+
+ LongArrowAltRight
+
+
+
+ LongArrowAltUp
+
+
+
+ LowVision
+
+
+
+ LuggageCart
+
+
+
+ Lyft
+
+
+
+ Magento
+
+
+
+ Magic
+
+
+
+ Magnet
+
+
+
+ MailBulk
+
+
+
+ Mailchimp
+
+
+
+ Male
+
+
+
+ Mandalorian
+
+
+
+ Map
+
+
+
+ MapMarked
+
+
+
+ MapMarkedAlt
+
+
+
+ MapMarker
+
+
+
+ MapMarkerAlt
+
+
+
+ MapPin
+
+
+
+ MapSigns
+
+
+
+ Markdown
+
+
+
+ Marker
+
+
+
+ Mars
+
+
+
+ MarsDouble
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Mask
+
+
+
+ Mastodon
+
+
+
+ Maxcdn
+
+
+
+ Mdb
+
+
+
+ Medal
+
+
+
+ Medapps
+
+
+
+ Medium
+
+
+
+ MediumM
+
+
+
+ Medkit
+
+
+
+ Medrt
+
+
+
+ Meetup
+
+
+
+ Megaport
+
+
+
+ Meh
+
+
+
+ MehBlank
+
+
+
+ MehRollingEyes
+
+
+
+ Memory
+
+
+
+ Mendeley
+
+
+
+ Menorah
+
+
+
+ Mercury
+
+
+
+ Meteor
+
+
+
+ Microblog
+
+
+
+ Microchip
+
+
+
+ Microphone
+
+
+
+ MicrophoneAlt
+
+
+
+ MicrophoneAltSlash
+
+
+
+ MicrophoneSlash
+
+
+
+ Microscope
+
+
+
+ Microsoft
+
+
+
+ Minus
+
+
+
+ MinusCircle
+
+
+
+ MinusSquare
+
+
+
+ Mitten
+
+
+
+ Mix
+
+
+
+ Mixcloud
+
+
+
+ Mixer
+
+
+
+ Mizuni
+
+
+
+ Mobile
+
+
+
+ MobileAlt
+
+
+
+ Modx
+
+
+
+ Monero
+
+
+
+ MoneyBill
+
+
+
+ MoneyBillAlt
+
+
+
+ MoneyBillWave
+
+
+
+ MoneyBillWaveAlt
+
+
+
+ MoneyCheck
+
+
+
+ MoneyCheckAlt
+
+
+
+ Monument
+
+
+
+ Moon
+
+
+
+ MortarPestle
+
+
+
+ Mosque
+
+
+
+ Motorcycle
+
+
+
+ Mountain
+
+
+
+ Mouse
+
+
+
+ MousePointer
+
+
+
+ MugHot
+
+
+
+ Music
+
+
+
+ Napster
+
+
+
+ Neos
+
+
+
+ NetworkWired
+
+
+
+ Neuter
+
+
+
+ Newspaper
+
+
+
+ Nimblr
+
+
+
+ Node
+
+
+
+ NodeJs
+
+
+
+ None
+
+
+
+ NotEqual
+
+
+
+ NotesMedical
+
+
+
+ Npm
+
+
+
+ Ns8
+
+
+
+ Nutritionix
+
+
+
+ ObjectGroup
+
+
+
+ ObjectUngroup
+
+
+
+ Odnoklassniki
+
+
+
+ OdnoklassnikiSquare
+
+
+
+ OilCan
+
+
+
+ OldRepublic
+
+
+
+ Om
+
+
+
+ Opencart
+
+
+
+ Openid
+
+
+
+ Opera
+
+
+
+ OptinMonster
+
+
+
+ Orcid
+
+
+
+ Osi
+
+
+
+ Otter
+
+
+
+ Outdent
+
+
+
+ Page4
+
+
+
+ Pagelines
+
+
+
+
+
+
+
+ PaintBrush
+
+
+
+ PaintRoller
+
+
+
+ Palette
+
+
+
+ Palfed
+
+
+
+ Pallet
+
+
+
+ Paperclip
+
+
+
+ PaperPlane
+
+
+
+ ParachuteBox
+
+
+
+ Paragraph
+
+
+
+ Parking
+
+
+
+ Passport
+
+
+
+ Pastafarianism
+
+
+
+ Paste
+
+
+
+ Patreon
+
+
+
+ Pause
+
+
+
+ PauseCircle
+
+
+
+ Paw
+
+
+
+ Paypal
+
+
+
+ Peace
+
+
+
+ Pen
+
+
+
+ PenAlt
+
+
+
+ PencilAlt
+
+
+
+ PencilRuler
+
+
+
+ PenFancy
+
+
+
+ PenNib
+
+
+
+ PennyArcade
+
+
+
+ PenSquare
+
+
+
+ PeopleCarry
+
+
+
+ PepperHot
+
+
+
+ Percent
+
+
+
+ Percentage
+
+
+
+ Periscope
+
+
+
+ PersonBooth
+
+
+
+ Phabricator
+
+
+
+ PhoenixFramework
+
+
+
+ PhoenixSquadron
+
+
+
+ Phone
+
+
+
+ PhoneAlt
+
+
+
+ PhoneSlash
+
+
+
+ PhoneSquare
+
+
+
+ PhoneSquareAlt
+
+
+
+ PhoneVolume
+
+
+
+ PhotoVideo
+
+
+
+ Php
+
+
+
+ PiedPiper
+
+
+
+ PiedPiperAlt
+
+
+
+ PiedPiperHat
+
+
+
+ PiedPiperPp
+
+
+
+ PiedPiperSquare
+
+
+
+ PiggyBank
+
+
+
+ Pills
+
+
+
+ Pinterest
+
+
+
+ PinterestP
+
+
+
+ PinterestSquare
+
+
+
+ PizzaSlice
+
+
+
+ PlaceOfWorship
+
+
+
+ Plane
+
+
+
+ PlaneArrival
+
+
+
+ PlaneDeparture
+
+
+
+ Play
+
+
+
+ PlayCircle
+
+
+
+ Playstation
+
+
+
+ Plug
+
+
+
+ Plus
+
+
+
+ PlusCircle
+
+
+
+ PlusSquare
+
+
+
+ Podcast
+
+
+
+ Poll
+
+
+
+ PollH
+
+
+
+ Poo
+
+
+
+ Poop
+
+
+
+ PooStorm
+
+
+
+ Portrait
+
+
+
+ PoundSign
+
+
+
+ PowerOff
+
+
+
+ Pray
+
+
+
+ PrayingHands
+
+
+
+ Prescription
+
+
+
+ PrescriptionBottle
+
+
+
+ PrescriptionBottleAlt
+
+
+
+ Print
+
+
+
+ Procedures
+
+
+
+ ProductHunt
+
+
+
+ ProjectDiagram
+
+
+
+ Pushed
+
+
+
+ PuzzlePiece
+
+
+
+ Python
+
+
+
+ Qq
+
+
+
+ Qrcode
+
+
+
+ Question
+
+
+
+ QuestionCircle
+
+
+
+ Quidditch
+
+
+
+ Quinscape
+
+
+
+ Quora
+
+
+
+ QuoteLeft
+
+
+
+ QuoteRight
+
+
+
+ Quran
+
+
+
+ Radiation
+
+
+
+ RadiationAlt
+
+
+
+ Rainbow
+
+
+
+ Random
+
+
+
+ RaspberryPi
+
+
+
+ Ravelry
+
+
+
+ React
+
+
+
+ Reacteurope
+
+
+
+ Readme
+
+
+
+ Rebel
+
+
+
+ Receipt
+
+
+
+ RecordVinyl
+
+
+
+ Recycle
+
+
+
+ Reddit
+
+
+
+ RedditAlien
+
+
+
+ RedditSquare
+
+
+
+ Redhat
+
+
+
+ Redo
+
+
+
+ RedoAlt
+
+
+
+ RedRiver
+
+
+
+ Registered
+
+
+
+ RemoveFormat
+
+
+
+ Renren
+
+
+
+ Reply
+
+
+
+ ReplyAll
+
+
+
+ Replyd
+
+
+
+ Republican
+
+
+
+ Researchgate
+
+
+
+ Resolving
+
+
+
+ Restroom
+
+
+
+
+
+
+
+ Rev
+
+
+
+ Ribbon
+
+
+
+ Ring
+
+
+
+ Road
+
+
+
+ Robot
+
+
+
+ Rocket
+
+
+
+ Rocketchat
+
+
+
+ Rockrms
+
+
+
+ Route
+
+
+
+ RProject
+
+
+
+
+
+
+
+
+
+
+
+ RubleSign
+
+
+
+ Ruler
+
+
+
+ RulerCombined
+
+
+
+ RulerHorizontal
+
+
+
+ RulerVertical
+
+
+
+ Running
+
+
+
+ RupeeSign
+
+
+
+ SadCry
+
+
+
+ SadTear
+
+
+
+ Safari
+
+
+
+ Salesforce
+
+
+
+ Sass
+
+
+
+ Satellite
+
+
+
+ SatelliteDish
+
+
+
+ Save
+
+
+
+ Schlix
+
+
+
+ School
+
+
+
+ Screwdriver
+
+
+
+ Scribd
+
+
+
+ Scroll
+
+
+
+ SdCard
+
+
+
+ Search
+
+
+
+ SearchDollar
+
+
+
+ Searchengin
+
+
+
+ SearchLocation
+
+
+
+ SearchMinus
+
+
+
+ SearchPlus
+
+
+
+ Seedling
+
+
+
+ Sellcast
+
+
+
+ Sellsy
+
+
+
+ Server
+
+
+
+ Servicestack
+
+
+
+ Shapes
+
+
+
+ Share
+
+
+
+ ShareAlt
+
+
+
+ ShareAltSquare
+
+
+
+ ShareSquare
+
+
+
+ ShekelSign
+
+
+
+ ShieldAlt
+
+
+
+ Ship
+
+
+
+ ShippingFast
+
+
+
+ Shirtsinbulk
+
+
+
+ ShoePrints
+
+
+
+ Shopify
+
+
+
+ ShoppingBag
+
+
+
+ ShoppingBasket
+
+
+
+ ShoppingCart
+
+
+
+ Shopware
+
+
+
+ Shower
+
+
+
+ ShuttleVan
+
+
+
+ Sign
+
+
+
+ Signal
+
+
+
+ Signature
+
+
+
+ SignInAlt
+
+
+
+ SignLanguage
+
+
+
+ SignOutAlt
+
+
+
+ SimCard
+
+
+
+ Simplybuilt
+
+
+
+ Sistrix
+
+
+
+ Sitemap
+
+
+
+ Sith
+
+
+
+ Skating
+
+
+
+ Sketch
+
+
+
+ Skiing
+
+
+
+ SkiingNordic
+
+
+
+ Skull
+
+
+
+ SkullCrossbones
+
+
+
+ Skyatlas
+
+
+
+ Skype
+
+
+
+ Slack
+
+
+
+ SlackHash
+
+
+
+ Slash
+
+
+
+ Sleigh
+
+
+
+ SlidersH
+
+
+
+ Slideshare
+
+
+
+ Smile
+
+
+
+ SmileBeam
+
+
+
+ SmileWink
+
+
+
+ Smog
+
+
+
+ Smoking
+
+
+
+ SmokingBan
+
+
+
+ Sms
+
+
+
+ Snapchat
+
+
+
+ SnapchatGhost
+
+
+
+ SnapchatSquare
+
+
+
+ Snowboarding
+
+
+
+ Snowflake
+
+
+
+ Snowman
+
+
+
+ Snowplow
+
+
+
+ Socks
+
+
+
+ SolarPanel
+
+
+
+ Sort
+
+
+
+ SortAlphaDown
+
+
+
+ SortAlphaDownAlt
+
+
+
+ SortAlphaUp
+
+
+
+ SortAlphaUpAlt
+
+
+
+ SortAmountDown
+
+
+
+ SortAmountDownAlt
+
+
+
+ SortAmountUp
+
+
+
+ SortAmountUpAlt
+
+
+
+ SortDown
+
+
+
+ SortNumericDown
+
+
+
+ SortNumericDownAlt
+
+
+
+ SortNumericUp
+
+
+
+ SortNumericUpAlt
+
+
+
+ SortUp
+
+
+
+ Soundcloud
+
+
+
+ Sourcetree
+
+
+
+ Spa
+
+
+
+ SpaceShuttle
+
+
+
+ Speakap
+
+
+
+ SpeakerDeck
+
+
+
+ SpellCheck
+
+
+
+ Spider
+
+
+
+ Spinner
+
+
+
+ Splotch
+
+
+
+ Spotify
+
+
+
+ SprayCan
+
+
+
+ Square
+
+
+
+ SquareFull
+
+
+
+ SquareRootAlt
+
+
+
+ Squarespace
+
+
+
+ StackExchange
+
+
+
+ StackOverflow
+
+
+
+ Stackpath
+
+
+
+ Stamp
+
+
+
+ Star
+
+
+
+ StarAndCrescent
+
+
+
+ StarHalf
+
+
+
+ StarHalfAlt
+
+
+
+ StarOfDavid
+
+
+
+ StarOfLife
+
+
+
+ Staylinked
+
+
+
+ Steam
+
+
+
+ SteamSquare
+
+
+
+ SteamSymbol
+
+
+
+ StepBackward
+
+
+
+ StepForward
+
+
+
+ Stethoscope
+
+
+
+ StickerMule
+
+
+
+ StickyNote
+
+
+
+ Stop
+
+
+
+ StopCircle
+
+
+
+ Stopwatch
+
+
+
+ Store
+
+
+
+ StoreAlt
+
+
+
+ Strava
+
+
+
+ Stream
+
+
+
+ StreetView
+
+
+
+ Strikethrough
+
+
+
+ Stripe
+
+
+
+ StripeS
+
+
+
+ Stroopwafel
+
+
+
+ Studiovinari
+
+
+
+ Stumbleupon
+
+
+
+ StumbleuponCircle
+
+
+
+ Subscript
+
+
+
+ Subway
+
+
+
+ Suitcase
+
+
+
+ SuitcaseRolling
+
+
+
+ Sun
+
+
+
+ Superpowers
+
+
+
+ Superscript
+
+
+
+ Supple
+
+
+
+ Surprise
+
+
+
+ Suse
+
+
+
+ Swatchbook
+
+
+
+ Swift
+
+
+
+ Swimmer
+
+
+
+ SwimmingPool
+
+
+
+ Symfony
+
+
+
+ Synagogue
+
+
+
+ Sync
+
+
+
+ SyncAlt
+
+
+
+ Syringe
+
+
+
+ Table
+
+
+
+ Tablet
+
+
+
+ TabletAlt
+
+
+
+ TableTennis
+
+
+
+ Tablets
+
+
+
+ TachometerAlt
+
+
+
+ Tag
+
+
+
+ Tags
+
+
+
+ Tape
+
+
+
+ Tasks
+
+
+
+ Taxi
+
+
+
+ Teamspeak
+
+
+
+ Teeth
+
+
+
+ TeethOpen
+
+
+
+ Telegram
+
+
+
+ TelegramPlane
+
+
+
+ TemperatureHigh
+
+
+
+ TemperatureLow
+
+
+
+ TencentWeibo
+
+
+
+ Tenge
+
+
+
+ Terminal
+
+
+
+ TextHeight
+
+
+
+ TextWidth
+
+
+
+ Th
+
+
+
+ TheaterMasks
+
+
+
+ Themeco
+
+
+
+ Themeisle
+
+
+
+ TheRedYeti
+
+
+
+ Thermometer
+
+
+
+ ThermometerEmpty
+
+
+
+ ThermometerFull
+
+
+
+ ThermometerHalf
+
+
+
+ ThermometerQuarter
+
+
+
+ ThermometerThreeQuarters
+
+
+
+ ThinkPeaks
+
+
+
+ ThLarge
+
+
+
+ ThList
+
+
+
+ ThumbsDown
+
+
+
+ ThumbsUp
+
+
+
+ Thumbtack
+
+
+
+ TicketAlt
+
+
+
+ Times
+
+
+
+ TimesCircle
+
+
+
+ Tint
+
+
+
+ TintSlash
+
+
+
+ Tired
+
+
+
+ ToggleOff
+
+
+
+ ToggleOn
+
+
+
+ Toilet
+
+
+
+ ToiletPaper
+
+
+
+ Toolbox
+
+
+
+ Tools
+
+
+
+ Tooth
+
+
+
+ Torah
+
+
+
+ ToriiGate
+
+
+
+ Tractor
+
+
+
+ TradeFederation
+
+
+
+ Trademark
+
+
+
+ TrafficLight
+
+
+
+ Trailer
+
+
+
+ Train
+
+
+
+ Tram
+
+
+
+ Transgender
+
+
+
+ TransgenderAlt
+
+
+
+ Trash
+
+
+
+ TrashAlt
+
+
+
+ TrashRestore
+
+
+
+ TrashRestoreAlt
+
+
+
+ Tree
+
+
+
+ Trello
+
+
+
+ Tripadvisor
+
+
+
+ Trophy
+
+
+
+ Truck
+
+
+
+ TruckLoading
+
+
+
+ TruckMonster
+
+
+
+ TruckMoving
+
+
+
+ TruckPickup
+
+
+
+ Tshirt
+
+
+
+ Tty
+
+
+
+ Tumblr
+
+
+
+ TumblrSquare
+
+
+
+ Tv
+
+
+
+ Twitch
+
+
+
+
+
+
+
+
+
+
+
+ Typo3
+
+
+
+ Uber
+
+
+
+ Ubuntu
+
+
+
+ Uikit
+
+
+
+ Umbraco
+
+
+
+ Umbrella
+
+
+
+ UmbrellaBeach
+
+
+
+ Underline
+
+
+
+ Undo
+
+
+
+ UndoAlt
+
+
+
+ Uniregistry
+
+
+
+ Unity
+
+
+
+ UniversalAccess
+
+
+
+ University
+
+
+
+ Unlink
+
+
+
+ Unlock
+
+
+
+ UnlockAlt
+
+
+
+ Untappd
+
+
+
+ Upload
+
+
+
+ Ups
+
+
+
+ Usb
+
+
+
+ User
+
+
+
+ UserAlt
+
+
+
+ UserAltSlash
+
+
+
+ UserAstronaut
+
+
+
+ UserCheck
+
+
+
+ UserCircle
+
+
+
+ UserClock
+
+
+
+ UserCog
+
+
+
+ UserEdit
+
+
+
+ UserFriends
+
+
+
+ UserGraduate
+
+
+
+ UserInjured
+
+
+
+ UserLock
+
+
+
+ UserMd
+
+
+
+ UserMinus
+
+
+
+ UserNinja
+
+
+
+ UserNurse
+
+
+
+ UserPlus
+
+
+
+ Users
+
+
+
+ UsersCog
+
+
+
+ UserSecret
+
+
+
+ UserShield
+
+
+
+ UserSlash
+
+
+
+ UserTag
+
+
+
+ UserTie
+
+
+
+ UserTimes
+
+
+
+ Usps
+
+
+
+ Ussunnah
+
+
+
+ Utensils
+
+
+
+ UtensilSpoon
+
+
+
+ Vaadin
+
+
+
+ VectorSquare
+
+
+
+ Venus
+
+
+
+ VenusDouble
+
+
+
+ VenusMars
+
+
+
+ Viacoin
+
+
+
+ Viadeo
+
+
+
+ ViadeoSquare
+
+
+
+ Vial
+
+
+
+ Vials
+
+
+
+ Viber
+
+
+
+ Video
+
+
+
+ VideoSlash
+
+
+
+ Vihara
+
+
+
+ Vimeo
+
+
+
+ VimeoSquare
+
+
+
+ VimeoV
+
+
+
+ Vine
+
+
+
+ Vk
+
+
+
+ Vnv
+
+
+
+ Voicemail
+
+
+
+ VolleyballBall
+
+
+
+ VolumeDown
+
+
+
+ VolumeMute
+
+
+
+ VolumeOff
+
+
+
+ VolumeUp
+
+
+
+ VoteYea
+
+
+
+ VrCardboard
+
+
+
+ Vuejs
+
+
+
+ Walking
+
+
+
+ Wallet
+
+
+
+ Warehouse
+
+
+
+ Water
+
+
+
+ WaveSquare
+
+
+
+ Waze
+
+
+
+ Weebly
+
+
+
+ Weibo
+
+
+
+ Weight
+
+
+
+ WeightHanging
+
+
+
+ Weixin
+
+
+
+ Whatsapp
+
+
+
+ WhatsappSquare
+
+
+
+ Wheelchair
+
+
+
+ Whmcs
+
+
+
+ Wifi
+
+
+
+ WikipediaW
+
+
+
+ Wind
+
+
+
+ WindowClose
+
+
+
+ WindowMaximize
+
+
+
+ WindowMinimize
+
+
+
+ WindowRestore
+
+
+
+ Windows
+
+
+
+ WineBottle
+
+
+
+ WineGlass
+
+
+
+ WineGlassAlt
+
+
+
+ Wix
+
+
+
+ WizardsOfTheCoast
+
+
+
+ WolfPackBattalion
+
+
+
+ WonSign
+
+
+
+ Wordpress
+
+
+
+ WordpressSimple
+
+
+
+ Wpbeginner
+
+
+
+ Wpexplorer
+
+
+
+ Wpforms
+
+
+
+ Wpressr
+
+
+
+ Wrench
+
+
+
+ Xbox
+
+
+
+ Xing
+
+
+
+ XingSquare
+
+
+
+ XRay
+
+
+
+ Yahoo
+
+
+
+ Yammer
+
+
+
+ Yandex
+
+
+
+ YandexInternational
+
+
+
+ Yarn
+
+
+
+ YCombinator
+
+
+
+ Yelp
+
+
+
+ YenSign
+
+
+
+ YinYang
+
+
+
+ Yoast
+
+
+
+ Youtube
+
+
+
+ YoutubeSquare
+
+
+
+ Zhihu
+
+
+
+
+ Extension Methods
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/api/Dalamud.Interface.InterfaceManager.html b/docs/api/Dalamud.Interface.InterfaceManager.html
index cb0073ca9..bdf5dcf9c 100644
--- a/docs/api/Dalamud.Interface.InterfaceManager.html
+++ b/docs/api/Dalamud.Interface.InterfaceManager.html
@@ -121,7 +121,7 @@
Improve this Doc
- View Source
+ View Source
InterfaceManager(Dalamud, SigScanner)
@@ -184,6 +184,97 @@
+
+ |
+ Improve this Doc
+
+
+ View Source
+
+ OnBuildFonts
+
+
+ Declaration
+
+
public Action OnBuildFonts
+
+ Field Value
+
+
+
+ Type
+ Description
+
+
+
+
+ System.Action
+
+
+
+
+ Properties
+
+
+ |
+ Improve this Doc
+
+
+ View Source
+
+
+ DefaultFont
+
+
+ Declaration
+
+
public static ImFontPtr DefaultFont { get; }
+
+ Property Value
+
+
+
+ Type
+ Description
+
+
+
+
+ ImFontPtr
+
+
+
+
+
+ |
+ Improve this Doc
+
+
+ View Source
+
+
+ IconFont
+
+
+ Declaration
+
+
public static ImFontPtr IconFont { get; }
+
+ Property Value
+
+
+
+ Type
+ Description
+
+
+
+
+ ImFontPtr
+
+
+
+
Methods
@@ -191,7 +282,7 @@
Improve this Doc
- View Source
+ View Source
Dispose()
@@ -206,7 +297,7 @@
Improve this Doc
- View Source
+ View Source
Enable()
@@ -221,7 +312,7 @@
Improve this Doc
- View Source
+ View Source
LoadImage(Byte[])
@@ -268,7 +359,7 @@
Improve this Doc
- View Source
+ View Source
LoadImage(String)
@@ -315,7 +406,7 @@
Improve this Doc
- View Source
+ View Source
LoadImageRaw(Byte[], Int32, Int32, Int32)
@@ -372,6 +463,21 @@
+
+ |
+ Improve this Doc
+
+
+ View Source
+
+
+
RebuildFonts()
+
+
+
Declaration
+
+
public void RebuildFonts()
+
Events
@@ -379,7 +485,7 @@
Improve this Doc
- View Source
+ View Source
OnDraw
This event gets called by a plugin UiBuilder when read
diff --git a/docs/api/Dalamud.Interface.UiBuilder.html b/docs/api/Dalamud.Interface.UiBuilder.html
index 3692957ba..d5ab88dc9 100644
--- a/docs/api/Dalamud.Interface.UiBuilder.html
+++ b/docs/api/Dalamud.Interface.UiBuilder.html
@@ -123,7 +123,7 @@ It can be used to draw custom windows and overlays.
Improve this Doc
- View Source
+ View Source
UiBuilder(InterfaceManager, String)
@@ -165,7 +165,7 @@ It can be used to draw custom windows and overlays.
Improve this Doc
- View Source
+ View Source
OnOpenConfigUi
Event that is fired when the plugin should open its configuration interface.
@@ -190,6 +190,105 @@ It can be used to draw custom windows and overlays.
+
Properties
+
+
+ |
+ Improve this Doc
+
+
+ View Source
+
+
+
DefaultFont
+
The default Dalamud font based on Noto Sans CJK Medium in 17pt - supporting all game languages and icons.
+
+
+
Declaration
+
+
public static ImFontPtr DefaultFont { get; }
+
+
Property Value
+
+
+
+ Type
+ Description
+
+
+
+
+ ImFontPtr
+
+
+
+
+
+ |
+ Improve this Doc
+
+
+ View Source
+
+
+
IconFont
+
The default Dalamud icon font based on FontAwesome 5 Free solid in 17pt.
+
+
+
Declaration
+
+
public static ImFontPtr IconFont { get; }
+
+
Property Value
+
+
+
+ Type
+ Description
+
+
+
+
+ ImFontPtr
+
+
+
+
+
+ |
+ Improve this Doc
+
+
+ View Source
+
+
+
OnBuildFonts
+
An event that is called any time ImGui fonts need to be rebuilt.
+Any ImFontPtr objects that you store can be invalidated when fonts are rebuilt
+(at any time), so you should both reload your custom fonts and restore those
+pointers inside this handler.
+PLEASE remove this handler inside Dipose, or when you no longer need your fonts!
+
+
+
Declaration
+
+
public Action OnBuildFonts { get; set; }
+
+
Property Value
+
+
+
+ Type
+ Description
+
+
+
+
+ System.Action
+
+
+
+
Methods
@@ -197,7 +296,7 @@ It can be used to draw custom windows and overlays.
Improve this Doc
- View Source
+ View Source
Dispose()
@@ -213,7 +312,7 @@ It can be used to draw custom windows and overlays.
Improve this Doc
- View Source
+ View Source
LoadImage(Byte[])
@@ -263,7 +362,7 @@ It can be used to draw custom windows and overlays.
Improve this Doc
- View Source
+ View Source
LoadImage(String)
@@ -313,7 +412,7 @@ It can be used to draw custom windows and overlays.
Improve this Doc
- View Source
+ View Source
LoadImageRaw(Byte[], Int32, Int32, Int32)
@@ -376,6 +475,24 @@ It can be used to draw custom windows and overlays.
+
+ |
+ Improve this Doc
+
+
+ View Source
+
+
+
RebuildFonts()
+
Call this to queue a rebuild of the font atlas.
+This will invoke any OnBuildFonts handlers and ensure that any loaded fonts are
+ready to be used on the next UI frame.
+
+
+
Declaration
+
+
public void RebuildFonts()
+
Events
@@ -383,7 +500,7 @@ It can be used to draw custom windows and overlays.
Improve this Doc
- View Source
+ View Source
OnBuildUi
The delegate that gets called when Dalamud is ready to draw your windows or overlays.
diff --git a/docs/api/Dalamud.Interface.html b/docs/api/Dalamud.Interface.html
index 3ae9b2ba4..ce13beaf1 100644
--- a/docs/api/Dalamud.Interface.html
+++ b/docs/api/Dalamud.Interface.html
@@ -77,6 +77,8 @@
Classes
+
+
@@ -87,6 +89,10 @@
This class represents the Dalamud UI that is drawn on top of the game.
It can be used to draw custom windows and overlays.
+
Enums
+
+
+
diff --git a/docs/api/Dalamud.Plugin.PluginDefinition.html b/docs/api/Dalamud.Plugin.PluginDefinition.html
index 50bcc3bb2..6a10ac7c7 100644
--- a/docs/api/Dalamud.Plugin.PluginDefinition.html
+++ b/docs/api/Dalamud.Plugin.PluginDefinition.html
@@ -267,7 +267,7 @@
Improve this Doc
- View Source
+ View Source
IsHide
@@ -322,6 +322,36 @@
+
+ |
+ Improve this Doc
+
+
+ View Source
+
+
+
RepoUrl
+
+
+
Declaration
+
+
public string RepoUrl { get; set; }
+
+
Property Value
+
+
+
+ Type
+ Description
+
+
+
+
+ System.String
+
+
+
+
diff --git a/docs/api/Dalamud.Plugin.PluginRepository.html b/docs/api/Dalamud.Plugin.PluginRepository.html
index 1b3090588..8f2b3b35a 100644
--- a/docs/api/Dalamud.Plugin.PluginRepository.html
+++ b/docs/api/Dalamud.Plugin.PluginRepository.html
@@ -221,18 +221,18 @@
|
- Improve this Doc
+ Improve this Doc
View Source
-
InstallPlugin(PluginDefinition)
+
InstallPlugin(PluginDefinition, Boolean)
Declaration
-
public bool InstallPlugin(PluginDefinition definition)
+
public bool InstallPlugin(PluginDefinition definition, bool enableAfterInstall = true)
Parameters
@@ -249,6 +249,11 @@
definition
+
+ System.Boolean
+ enableAfterInstall
+
+
Returns
@@ -271,7 +276,7 @@
Improve this Doc
- View Source
+ View Source
UpdatePlugins(Boolean)
diff --git a/docs/api/ImGuiScene.FramerateLimit.LimitType.html b/docs/api/ImGuiScene.FramerateLimit.LimitType.html
index 091bfff68..438ffd1db 100644
--- a/docs/api/ImGuiScene.FramerateLimit.LimitType.html
+++ b/docs/api/ImGuiScene.FramerateLimit.LimitType.html
@@ -122,10 +122,10 @@ This will disable vsync regardless of the fps value.
diff --git a/docs/api/ImGuiScene.FramerateLimit.html b/docs/api/ImGuiScene.FramerateLimit.html
index b986af0b0..7b9015374 100644
--- a/docs/api/ImGuiScene.FramerateLimit.html
+++ b/docs/api/ImGuiScene.FramerateLimit.html
@@ -113,10 +113,10 @@ Vsync-enabled (sync to monitor refresh), or a specified fixed framerate (vsync d
|
- Improve this Doc
+ Improve this Doc
- View Source
+ View Source
FramerateLimit(FramerateLimit.LimitType, Int32)
@@ -155,10 +155,10 @@ Vsync-enabled (sync to monitor refresh), or a specified fixed framerate (vsync d
|
- Improve this Doc
+ Improve this Doc
- View Source
+ View Source
FPS
@@ -186,10 +186,10 @@ Vsync-enabled (sync to monitor refresh), or a specified fixed framerate (vsync d
|
- Improve this Doc
+ Improve this Doc
- View Source
+ View Source
Type
@@ -219,10 +219,10 @@ Vsync-enabled (sync to monitor refresh), or a specified fixed framerate (vsync d
|
- Improve this Doc
+ Improve this Doc
- View Source
+ View Source
ToString()
@@ -257,10 +257,10 @@ Vsync-enabled (sync to monitor refresh), or a specified fixed framerate (vsync d
diff --git a/docs/api/ImGuiScene.GLTextureWrap.html b/docs/api/ImGuiScene.GLTextureWrap.html
index 1ae296054..5b19c6733 100644
--- a/docs/api/ImGuiScene.GLTextureWrap.html
+++ b/docs/api/ImGuiScene.GLTextureWrap.html
@@ -121,10 +121,10 @@ Provides a simple wrapped view of the disposeable resource as well as the handle
|
- Improve this Doc
+ Improve this Doc
- View Source
+ View Source
GLTextureWrap(UInt32, Int32, Int32)
@@ -165,10 +165,10 @@ Provides a simple wrapped view of the disposeable resource as well as the handle
|
- Improve this Doc
+ Improve this Doc
- View Source
+ View Source
Height
@@ -195,10 +195,10 @@ Provides a simple wrapped view of the disposeable resource as well as the handle
|
- Improve this Doc
+ Improve this Doc
- View Source
+ View Source
ImGuiHandle
@@ -225,10 +225,10 @@ Provides a simple wrapped view of the disposeable resource as well as the handle
|
- Improve this Doc
+ Improve this Doc
- View Source
+ View Source
Width
@@ -257,10 +257,10 @@ Provides a simple wrapped view of the disposeable resource as well as the handle
|
- Improve this Doc
+ Improve this Doc
- View Source
+ View Source
Dispose()
@@ -272,10 +272,10 @@ Provides a simple wrapped view of the disposeable resource as well as the handle
|
- Improve this Doc
+ Improve this Doc
- View Source
+ View Source
Dispose(Boolean)
@@ -304,10 +304,10 @@ Provides a simple wrapped view of the disposeable resource as well as the handle
|
- Improve this Doc
+ Improve this Doc
- View Source
+ View Source
Finalize()
@@ -332,10 +332,10 @@ Provides a simple wrapped view of the disposeable resource as well as the handle
diff --git a/docs/api/ImGuiScene.IImGuiInputHandler.html b/docs/api/ImGuiScene.IImGuiInputHandler.html
index abea06ec7..bb0aba362 100644
--- a/docs/api/ImGuiScene.IImGuiInputHandler.html
+++ b/docs/api/ImGuiScene.IImGuiInputHandler.html
@@ -91,10 +91,10 @@
|
- Improve this Doc
+ Improve this Doc
- View Source
+ View Source
@@ -128,10 +128,10 @@
|
- Improve this Doc
+ Improve this Doc
- View Source
+ View Source
@@ -166,10 +166,10 @@
diff --git a/docs/api/ImGuiScene.IImGuiRenderer.html b/docs/api/ImGuiScene.IImGuiRenderer.html
index 07499b939..a2c87d626 100644
--- a/docs/api/ImGuiScene.IImGuiRenderer.html
+++ b/docs/api/ImGuiScene.IImGuiRenderer.html
@@ -86,10 +86,10 @@
|
- Improve this Doc
+ Improve this Doc
- View Source
+ View Source
Init(Object[])
@@ -118,10 +118,10 @@
|
- Improve this Doc
+ Improve this Doc
- View Source
+ View Source
NewFrame()
@@ -133,10 +133,10 @@
diff --git a/docs/api/ImGuiScene.IRenderer.html b/docs/api/ImGuiScene.IRenderer.html
index d4ef2c8f8..02dfe9047 100644
--- a/docs/api/ImGuiScene.IRenderer.html
+++ b/docs/api/ImGuiScene.IRenderer.html
@@ -92,10 +92,10 @@