├── .gitignore ├── .travis.yml ├── BUILDING.rst ├── CHANGELOG.txt ├── Doxyfile ├── DwarfTherapist.rc ├── LICENSE.txt ├── README.rst ├── debian ├── README.Debian ├── changelog ├── compat ├── control ├── copyright ├── install ├── menu ├── postinst ├── prerm ├── rules └── source │ ├── format │ └── options ├── dist ├── dwarftherapist └── dwarftherapist.desktop ├── doc ├── Dwarf Therapist.tex └── images │ ├── Illustration2.jpg │ ├── Illustration3.png │ ├── Sec1Fig1.png │ ├── Sec1Fig10.png │ ├── Sec1Fig11+.png │ ├── Sec1Fig11.png │ ├── Sec1Fig12.png │ ├── Sec1Fig13.png │ ├── Sec1Fig14.png │ ├── Sec1Fig15.png │ ├── Sec1Fig16-1.png │ ├── Sec1Fig16-2.png │ ├── Sec1Fig16-3.png │ ├── Sec1Fig16-4.png │ ├── Sec1Fig16-5.png │ ├── Sec1Fig17.png │ ├── Sec1Fig18.png │ ├── Sec1Fig19.png │ ├── Sec1Fig2.png │ ├── Sec1Fig20.png │ ├── Sec1Fig3.png │ ├── Sec1Fig4.png │ ├── Sec1Fig5.png │ ├── Sec1Fig6+.png │ ├── Sec1Fig6.png │ ├── Sec1Fig7.png │ ├── Sec1Fig8.png │ ├── Sec1Fig9.png │ ├── Sec2Fig1.png │ ├── Sec2Fig10+.png │ ├── Sec2Fig10.png │ ├── Sec2Fig11.png │ ├── Sec2Fig12.png │ ├── Sec2Fig13.png │ ├── Sec2Fig14.png │ ├── Sec2Fig15.png │ ├── Sec2Fig16.png │ ├── Sec2Fig17.png │ ├── Sec2Fig18.png │ ├── Sec2Fig19.png │ ├── Sec2Fig2-1.png │ ├── Sec2Fig20.png │ ├── Sec2Fig21.png │ ├── Sec2Fig22.png │ ├── Sec2Fig23.png │ ├── Sec2Fig24.png │ ├── Sec2Fig25.png │ ├── Sec2Fig26.png │ ├── Sec2Fig27.png │ ├── Sec2Fig28.png │ ├── Sec2Fig3-1.png │ ├── Sec2Fig3-2.png │ ├── Sec2Fig4.png │ ├── Sec2Fig5-1.png │ ├── Sec2Fig5-2.png │ ├── Sec2Fig5-3.png │ ├── Sec2Fig5-4.png │ ├── Sec2Fig5.png │ ├── Sec2Fig6.png │ ├── Sec2Fig7.png │ ├── Sec2Fig8.png │ ├── Sec2Fig9.png │ ├── Sec3Fig1.png │ ├── Sec3Fig10+.png │ ├── Sec3Fig10.png │ ├── Sec3Fig11.png │ ├── Sec3Fig12.png │ ├── Sec3Fig13+.png │ ├── Sec3Fig13+1.png │ ├── Sec3Fig13.png │ ├── Sec3Fig14.png │ ├── Sec3Fig15.png │ ├── Sec3Fig16.png │ ├── Sec3Fig17.png │ ├── Sec3Fig18.png │ ├── Sec3Fig19.png │ ├── Sec3Fig2.png │ ├── Sec3Fig20.png │ ├── Sec3Fig21.png │ ├── Sec3Fig22.png │ ├── Sec3Fig23.png │ ├── Sec3Fig24.png │ ├── Sec3Fig25.png │ ├── Sec3Fig26+.png │ ├── Sec3Fig26.png │ ├── Sec3Fig27.png │ ├── Sec3Fig28-Alt.png │ ├── Sec3Fig28.png │ ├── Sec3Fig29.png │ ├── Sec3Fig3.png │ ├── Sec3Fig4.png │ ├── Sec3Fig5.png │ ├── Sec3Fig6.png │ ├── Sec3Fig7.png │ ├── Sec3Fig8.png │ ├── Sec3Fig9.png │ ├── Sec4Fig1.png │ ├── Sec4Fig10.png │ ├── Sec4Fig11.png │ ├── Sec4Fig12.png │ ├── Sec4Fig13.png │ ├── Sec4Fig14.png │ ├── Sec4Fig15.png │ ├── Sec4Fig16.png │ ├── Sec4Fig17.png │ ├── Sec4Fig18.png │ ├── Sec4Fig2.png │ ├── Sec4Fig3.png │ ├── Sec4Fig4+.png │ ├── Sec4Fig4.png │ ├── Sec4Fig5.png │ ├── Sec4Fig6.png │ ├── Sec4Fig7.png │ ├── Sec4Fig8.png │ ├── Sec4Fig9.png │ ├── Sec4FigExtra.png │ ├── Sec4FigExtra2.png │ ├── Sec4FigExtra3.png │ ├── Sec5Fig1.jpg │ ├── Sec5Fig2.png │ ├── Sec5Fig3.png │ ├── Sec5Fig4.png │ ├── Sec5Fig5.png │ ├── Sec5Fig6.png │ └── logo.png ├── dwarftherapist.pro ├── dwarftherapist_en.ts ├── hammer.icns ├── hammer.ico ├── inc ├── aboutdialog.h ├── activity.h ├── activityevent.h ├── attribute.h ├── belief.h ├── bodypart.h ├── bodypartdamage.h ├── bodypartlayer.h ├── caste.h ├── contextmenuhelper.h ├── cp437codec.h ├── customcolor.h ├── customprofession.h ├── defaultfonts.h ├── defines.h ├── dfinstance.h ├── dfinstancelinux.h ├── dfinstancenix.h ├── dfinstanceosx.h ├── dfinstancewindows.h ├── docks │ ├── basedock.h │ ├── basetreedock.h │ ├── dwarfdetailsdock.h │ ├── equipmentoverviewdock.h │ ├── gridviewdock.h │ ├── healthlegenddock.h │ ├── informationdock.h │ ├── preferencesdock.h │ ├── skilllegenddock.h │ └── thoughtsdock.h ├── dtstandarditem.h ├── dwarf.h ├── dwarfdetailswidget.h ├── dwarfjob.h ├── dwarfstats.h ├── dwarftherapist.h ├── emotion.h ├── emotiongroup.h ├── equipwarn.h ├── eventfilterlineedit.h ├── flagarray.h ├── fortressentity.h ├── gamedatareader.h ├── global_enums.h ├── grid_view │ ├── attributecolumn.h │ ├── beliefcolumn.h │ ├── cellcolordef.h │ ├── cellcolors.h │ ├── columntypes.h │ ├── currentjobcolumn.h │ ├── customprofessioncolumn.h │ ├── equipmentcolumn.h │ ├── flagcolumn.h │ ├── gridview.h │ ├── happinesscolumn.h │ ├── healthcolumn.h │ ├── highestmoodcolumn.h │ ├── itemtypecolumn.h │ ├── laborcolumn.h │ ├── professioncolumn.h │ ├── rolecolumn.h │ ├── skillcolumn.h │ ├── spacercolumn.h │ ├── superlaborcolumn.h │ ├── trainedcolumn.h │ ├── traitcolumn.h │ ├── unitkillscolumn.h │ ├── viewcolumn.h │ ├── viewcolumncolors.h │ ├── viewcolumnset.h │ ├── viewcolumnsetcolors.h │ ├── vieweditordialog.h │ └── weaponcolumn.h ├── gridviewdialog.h ├── healthcategory.h ├── healthinfo.h ├── histfigure.h ├── iconchooser.h ├── importexportdialog.h ├── item.h ├── itemammo.h ├── itemarmor.h ├── itemarmorsubtype.h ├── itemdefuniform.h ├── itemgenericsubtype.h ├── iteminstrument.h ├── itemsubtype.h ├── itemtool.h ├── itemtoolsubtype.h ├── itemuniform.h ├── itemweapon.h ├── itemweaponsubtype.h ├── labor.h ├── laboroptimizer.h ├── laboroptimizerplan.h ├── languages.h ├── layoutcreator.h ├── mainwindow.h ├── material.h ├── memorylayout.h ├── memorysegment.h ├── models │ ├── dwarfmodel.h │ └── dwarfmodelproxy.h ├── mood.h ├── multilabor.h ├── notificationwidget.h ├── notifierwidget.h ├── optimizereditor.h ├── optionsmenu.h ├── plandetail.h ├── plant.h ├── preference.h ├── profession.h ├── races.h ├── reaction.h ├── role.h ├── roleaspect.h ├── rolecalcbase.h ├── rolecalcminmax.h ├── rolecalcrecenter.h ├── roledialog.h ├── rolestats.h ├── rotatedheader.h ├── scriptdialog.h ├── selectparentlayoutdialog.h ├── skill.h ├── sortabletableitems.h ├── squad.h ├── statetableview.h ├── subthoughttypes.h ├── superlabor.h ├── syndrome.h ├── thought.h ├── trait.h ├── truncatingfilelogger.h ├── uberdelegate.h ├── uniform.h ├── unitbelief.h ├── unitemotion.h ├── unithealth.h ├── unitwound.h ├── updater.h ├── utils.h ├── version.h ├── viewmanager.h └── word.h ├── osx ├── makedist.sh └── template.dmg ├── resource.h ├── resources.qrc ├── resources ├── default_gridviews.dtg ├── game_data.ini └── img │ ├── Ecstatic.png │ ├── Fine.png │ ├── Happy.png │ ├── Miserable.png │ ├── Quite Content.png │ ├── Unhappy.png │ ├── Very Unhappy.png │ ├── activity icons │ ├── abacus.png │ ├── ale--plus.png │ ├── ale.png │ ├── animal.png │ ├── armor.png │ ├── arrow-repeat.png │ ├── arrow-return.png │ ├── balance.png │ ├── balloon-ellipsis.png │ ├── balloon-prohibition.png │ ├── balloon-quotation.png │ ├── balloon.png │ ├── band-aid-double.png │ ├── bandaid--arrow.png │ ├── bandaid--exclamation.png │ ├── beans.png │ ├── bee.png │ ├── beehive--arrow.png │ ├── beehive--plus.png │ ├── beer.png │ ├── bell-green.png │ ├── bell-red.png │ ├── bell.png │ ├── board-game-go.png │ ├── book-open-bookmark.png │ ├── book-open-list.png │ ├── boot.png │ ├── bow.png │ ├── box--arrow.png │ ├── box--minus.png │ ├── box--plus.png │ ├── brain.png │ ├── bread--arrow.png │ ├── broom.png │ ├── bug--arrow.png │ ├── bullet-blue.png │ ├── carp.png │ ├── cart-box.png │ ├── chain-unchain.png │ ├── chain.png │ ├── chair--plus.png │ ├── chalkboard.png │ ├── chest--in.png │ ├── chest--plus.png │ ├── chest--search.png │ ├── church.png │ ├── clock-moon-phase.png │ ├── color--plus.png │ ├── control-play-blue.png │ ├── cross-small.png │ ├── crossed-swords.png │ ├── crown--plus.png │ ├── crown.png │ ├── cup2.png │ ├── cutlery.png │ ├── diamond.png │ ├── door--plus.png │ ├── drawer--in.png │ ├── drawer--plus.png │ ├── drawer-open.png │ ├── ear-listen.png │ ├── edit-quotation.png │ ├── exclamation-shield-frame.png │ ├── exclamation-white.png │ ├── eye--arrow.png │ ├── fire.png │ ├── first-aid-kit.png │ ├── fish.png │ ├── flask.png │ ├── furnace.png │ ├── gear--plus.png │ ├── gear-small.png │ ├── glass--plus.png │ ├── glove.png │ ├── grid-dot.png │ ├── grid-small-dot.png │ ├── grid.png │ ├── guitar.png │ ├── hammer--minus.png │ ├── hammer--plain.png │ ├── hammer-screwdriver.png │ ├── hand-finger.png │ ├── hand-shake--arrow.png │ ├── hand-shake.png │ ├── hatchet.png │ ├── headstone--plus.png │ ├── headstone-cross.png │ ├── headstone-rip.png │ ├── headstone.png │ ├── heart--arrow.png │ ├── helm.png │ ├── hourglass.png │ ├── ice.png │ ├── inbox--in.png │ ├── inbox--plus.png │ ├── jar--arrow.png │ ├── knife-bloody.png │ ├── leaf--arrow.png │ ├── leaf--plus.png │ ├── leaf-plant.png │ ├── leaf.png │ ├── lock--exclamation.png │ ├── lump.png │ ├── magnifier--arrow.png │ ├── meat.png │ ├── milk-cheese.png │ ├── milk.png │ ├── money--arrow.png │ ├── money-bag--in.png │ ├── money-bag-dollar.png │ ├── money-bag.png │ ├── money-coin.png │ ├── moon.png │ ├── mushroom--arrow.png │ ├── music-beam-16.png │ ├── paint-brush.png │ ├── paint-can--arrow.png │ ├── paper-bag--plus.png │ ├── party-hat.png │ ├── pipette.png │ ├── pot.png │ ├── prohibition-button.png │ ├── quill--plus.png │ ├── quill.png │ ├── rubber-balloons.png │ ├── ruby.png │ ├── safe--plus.png │ ├── service-bell--arrow.png │ ├── shield--arrow.png │ ├── shield-brown.png │ ├── shield-green.png │ ├── shield-grey.png │ ├── shield-purple.png │ ├── shield-teal.png │ ├── shield.png │ ├── shopping-basket--arrow.png │ ├── shovel.png │ ├── skull--plus.png │ ├── skull-mad.png │ ├── skull.png │ ├── soap.png │ ├── spectacle-lorgnette.png │ ├── spinning.png │ ├── stairs--minus.png │ ├── stairs--plus.png │ ├── stairs.png │ ├── status-forge.png │ ├── store-market-stall.png │ ├── store.png │ ├── switch-network.png │ ├── switch.png │ ├── target.png │ ├── toolbox--arrow.png │ ├── tree--minus.png │ ├── user-thief-baldie.png │ ├── wafer-adamantine.png │ ├── wall-brick.png │ ├── wand-magic.png │ ├── water--arrow.png │ ├── water--plus.png │ ├── water.png │ ├── weapon.png │ ├── weather-moon-half.png │ ├── wooden-box--arrow.png │ ├── x-ray.png │ ├── yin-yang.png │ └── zone--plus.png │ ├── application-import.png │ ├── arrow-circle.png │ ├── arrow-in.png │ ├── arrow-out.png │ ├── arrow-switch.png │ ├── balloon-box.png │ ├── book--pencil.png │ ├── book-question.png │ ├── book_edit.png │ ├── camera.png │ ├── category-group.png │ ├── color_swatch.png │ ├── color_wheel.png │ ├── connect.png │ ├── control.png │ ├── cross.png │ ├── document--plus.png │ ├── document-excel-csv.png │ ├── document-export.png │ ├── document-import.png │ ├── dwarf.jpg │ ├── dwarftherapist.xpm │ ├── emoticon_grin.png │ ├── exclamation--frame.png │ ├── exclamation-circle.png │ ├── exclamation-red-frame.png │ ├── exclamation-red.png │ ├── female-asexual.png │ ├── female-bi.png │ ├── female-female.png │ ├── female.png │ ├── funnel--plus.png │ ├── funnel.png │ ├── globe--arrow.png │ ├── hammer.png │ ├── heart.png │ ├── image--pencil.png │ ├── information.png │ ├── magnifier.png │ ├── male-asexual.png │ ├── male-bi.png │ ├── male-male.png │ ├── male.png │ ├── memory-scan.png │ ├── minus-circle.png │ ├── new.png │ ├── pencil.png │ ├── plug--arrow.png │ ├── plug-connect.png │ ├── plus-circle.png │ ├── plus-white.png │ ├── profession icons │ ├── prof_1.png │ ├── prof_10.png │ ├── prof_100.png │ ├── prof_101.png │ ├── prof_102.png │ ├── prof_103.png │ ├── prof_104.png │ ├── prof_105.png │ ├── prof_106.png │ ├── prof_11.png │ ├── prof_112.png │ ├── prof_12.png │ ├── prof_13.png │ ├── prof_14.png │ ├── prof_15.png │ ├── prof_16.png │ ├── prof_17.png │ ├── prof_18.png │ ├── prof_19.png │ ├── prof_2.png │ ├── prof_20.png │ ├── prof_21.png │ ├── prof_22.png │ ├── prof_23.png │ ├── prof_24.png │ ├── prof_25.png │ ├── prof_26.png │ ├── prof_27.png │ ├── prof_28.png │ ├── prof_29.png │ ├── prof_3.png │ ├── prof_30.png │ ├── prof_31.png │ ├── prof_32.png │ ├── prof_33.png │ ├── prof_34.png │ ├── prof_35.png │ ├── prof_36.png │ ├── prof_37.png │ ├── prof_38.png │ ├── prof_39.png │ ├── prof_4.png │ ├── prof_40.png │ ├── prof_41.png │ ├── prof_42.png │ ├── prof_43.png │ ├── prof_44.png │ ├── prof_45.png │ ├── prof_46.png │ ├── prof_47.png │ ├── prof_48.png │ ├── prof_49.png │ ├── prof_5.png │ ├── prof_50.png │ ├── prof_51.png │ ├── prof_52.png │ ├── prof_53.png │ ├── prof_54.png │ ├── prof_55.png │ ├── prof_56.png │ ├── prof_57.png │ ├── prof_58.png │ ├── prof_59.png │ ├── prof_6.png │ ├── prof_60.png │ ├── prof_61.png │ ├── prof_62.png │ ├── prof_63.png │ ├── prof_64.png │ ├── prof_65.png │ ├── prof_66.png │ ├── prof_67.png │ ├── prof_68.png │ ├── prof_69.png │ ├── prof_7.png │ ├── prof_70.png │ ├── prof_71.png │ ├── prof_72.png │ ├── prof_73.png │ ├── prof_74.png │ ├── prof_75.png │ ├── prof_76.png │ ├── prof_77.png │ ├── prof_78.png │ ├── prof_79.png │ ├── prof_8.png │ ├── prof_80.png │ ├── prof_81.png │ ├── prof_82.png │ ├── prof_83.png │ ├── prof_84.png │ ├── prof_85.png │ ├── prof_86.png │ ├── prof_87.png │ ├── prof_88.png │ ├── prof_89.png │ ├── prof_9.png │ ├── prof_90.png │ ├── prof_91.png │ ├── prof_92.png │ ├── prof_93.png │ ├── prof_94.png │ ├── prof_95.png │ ├── prof_96.png │ ├── prof_97.png │ ├── prof_98.png │ └── prof_99.png │ ├── question-frame.png │ ├── question-white.png │ ├── refresh.png │ ├── script_minus.png │ ├── script_pencil.png │ ├── script_plus.png │ ├── sort-alphabet-descending.png │ ├── sort-alphabet.png │ ├── sort-number-descending.png │ ├── sort-number.png │ ├── table--arrow.png │ ├── table--minus.png │ ├── table--pencil.png │ ├── table--plus.png │ ├── table-export.png │ ├── table-import.png │ ├── table-insert-column.png │ ├── table.png │ ├── tables.png │ ├── ui-button-navigation.png │ ├── ui-button-toggle.png │ ├── ui-layered-pane.png │ ├── ui-search-field.png │ ├── ui-tab--plus.png │ ├── ui-text-field-clear-button.png │ ├── ui-text-field-select.png │ └── wrench-screwdriver.png ├── scripts ├── build_package ├── build_packages ├── checkinstall.sh ├── export-dt-ini.lua ├── make-dt.pl ├── make-srctar └── windeployqt.sh ├── share ├── README.rst └── memory_layouts │ ├── README.rst │ ├── linux │ ├── v0.43.02.ini │ ├── v0.43.03.ini │ ├── v042.01.ini │ ├── v042.02.ini │ ├── v042.03.ini │ ├── v042.04.ini │ ├── v042.05.ini │ └── v042.06.ini │ ├── osx │ ├── v0.42.02_osx.ini │ ├── v0.42.03_osx.ini │ ├── v0.42.04_osx.ini │ ├── v0.42.05_osx.ini │ ├── v0.42.06_osx.ini │ ├── v0.43.02_osx.ini │ └── v0.43.03_osx.ini │ └── windows │ ├── v0.42.01_graphics.ini │ ├── v0.42.02_graphics.ini │ ├── v0.42.03_graphics.ini │ ├── v0.42.04_graphics.ini │ ├── v0.42.05_graphics.ini │ ├── v0.42.06_graphics.ini │ ├── v0.43.02_graphics.ini │ ├── v0.43.03_graphics.ini │ └── v0.43.05_graphics.ini ├── src ├── aboutdialog.cpp ├── activity.cpp ├── activityevent.cpp ├── attribute.cpp ├── belief.cpp ├── caste.cpp ├── customcolor.cpp ├── customprofession.cpp ├── defaultfonts.cpp ├── dfinstance.cpp ├── dfinstancelinux.cpp ├── dfinstancenix.cpp ├── dfinstanceosx.mm ├── dfinstancewindows.cpp ├── docks │ ├── basetreedock.cpp │ ├── dwarfdetailsdock.cpp │ ├── equipmentoverviewdock.cpp │ ├── gridviewdock.cpp │ ├── healthlegenddock.cpp │ ├── informationdock.cpp │ ├── preferencesdock.cpp │ ├── skilllegenddock.cpp │ └── thoughtsdock.cpp ├── dtstandarditem.cpp ├── dwarf.cpp ├── dwarfdetailswidget.cpp ├── dwarfstats.cpp ├── dwarftherapist.cpp ├── emotion.cpp ├── equipwarn.cpp ├── flagarray.cpp ├── fortressentity.cpp ├── gamedatareader.cpp ├── grid_view │ ├── attributecolumn.cpp │ ├── beliefcolumn.cpp │ ├── cellcolors.cpp │ ├── currentjobcolumn.cpp │ ├── customprofessioncolumn.cpp │ ├── equipmentcolumn.cpp │ ├── flagcolumn.cpp │ ├── gridview.cpp │ ├── happinesscolumn.cpp │ ├── healthcolumn.cpp │ ├── highestmoodcolumn.cpp │ ├── itemtypecolumn.cpp │ ├── laborcolumn.cpp │ ├── professioncolumn.cpp │ ├── rolecolumn.cpp │ ├── skillcolumn.cpp │ ├── spacercolumn.cpp │ ├── superlaborcolumn.cpp │ ├── trainedcolumn.cpp │ ├── traitcolumn.cpp │ ├── unitkillscolumn.cpp │ ├── viewcolumn.cpp │ ├── viewcolumncolors.cpp │ ├── viewcolumnset.cpp │ ├── viewcolumnsetcolors.cpp │ ├── vieweditordialog.cpp │ └── weaponcolumn.cpp ├── gridviewdialog.cpp ├── histfigure.cpp ├── iconchooser.cpp ├── importexportdialog.cpp ├── item.cpp ├── itemammo.cpp ├── itemarmorsubtype.cpp ├── iteminstrument.cpp ├── itemtool.cpp ├── itemuniform.cpp ├── itemweaponsubtype.cpp ├── laboroptimizer.cpp ├── laboroptimizerplan.cpp ├── languages.cpp ├── layoutcreator.cpp ├── main.cpp ├── mainwindow.cpp ├── material.cpp ├── memorylayout.cpp ├── models │ ├── dwarfmodel.cpp │ └── dwarfmodelproxy.cpp ├── multilabor.cpp ├── notificationwidget.cpp ├── notifierwidget.cpp ├── optimizereditor.cpp ├── optionsmenu.cpp ├── plant.cpp ├── preference.cpp ├── races.cpp ├── reaction.cpp ├── role.cpp ├── rolecalcbase.cpp ├── roledialog.cpp ├── rolestats.cpp ├── rotatedheader.cpp ├── scriptdialog.cpp ├── selectparentlayoutdialog.cpp ├── skill.cpp ├── squad.cpp ├── statetableview.cpp ├── superlabor.cpp ├── syndrome.cpp ├── thought.cpp ├── trait.cpp ├── truncatingfilelogger.cpp ├── uberdelegate.cpp ├── uniform.cpp ├── unitbelief.cpp ├── unitemotion.cpp ├── unithealth.cpp ├── unitwound.cpp ├── updater.cpp ├── viewmanager.cpp └── word.cpp ├── thirdparty └── qtcolorpicker-2.6 │ ├── LGPL_EXCEPTION.txt │ ├── LICENSE.LGPL │ ├── README.TXT │ ├── qtcolorpicker.cpp │ └── qtcolorpicker.h └── ui ├── about.ui ├── customprofession.ui ├── dwarfdetailsdock.ui ├── dwarfdetailswidget.ui ├── gridviewdialog.ui ├── gridviewdock.ui ├── importexportdialog.ui ├── mainwindow.ui ├── notification.ui ├── notifier.ui ├── optimizereditor.ui ├── optionsmenu.ui ├── pendingchanges.ui ├── roledialog.ui ├── scannerdialog.ui ├── scriptdialog.ui ├── selectparentlayoutdialog.ui ├── superlabor.ui └── vieweditor.ui /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/.travis.yml -------------------------------------------------------------------------------- /BUILDING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/BUILDING.rst -------------------------------------------------------------------------------- /CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/CHANGELOG.txt -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/Doxyfile -------------------------------------------------------------------------------- /DwarfTherapist.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/DwarfTherapist.rc -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/README.rst -------------------------------------------------------------------------------- /debian/README.Debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/debian/README.Debian -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/debian/install -------------------------------------------------------------------------------- /debian/menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/debian/menu -------------------------------------------------------------------------------- /debian/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/debian/postinst -------------------------------------------------------------------------------- /debian/prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/debian/prerm -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /debian/source/options: -------------------------------------------------------------------------------- 1 | extend-diff-ignore = "osx/*" 2 | -------------------------------------------------------------------------------- /dist/dwarftherapist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/dist/dwarftherapist -------------------------------------------------------------------------------- /dist/dwarftherapist.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/dist/dwarftherapist.desktop -------------------------------------------------------------------------------- /doc/Dwarf Therapist.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/Dwarf Therapist.tex -------------------------------------------------------------------------------- /doc/images/Illustration2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Illustration2.jpg -------------------------------------------------------------------------------- /doc/images/Illustration3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Illustration3.png -------------------------------------------------------------------------------- /doc/images/Sec1Fig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec1Fig1.png -------------------------------------------------------------------------------- /doc/images/Sec1Fig10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec1Fig10.png -------------------------------------------------------------------------------- /doc/images/Sec1Fig11+.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec1Fig11+.png -------------------------------------------------------------------------------- /doc/images/Sec1Fig11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec1Fig11.png -------------------------------------------------------------------------------- /doc/images/Sec1Fig12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec1Fig12.png -------------------------------------------------------------------------------- /doc/images/Sec1Fig13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec1Fig13.png -------------------------------------------------------------------------------- /doc/images/Sec1Fig14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec1Fig14.png -------------------------------------------------------------------------------- /doc/images/Sec1Fig15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec1Fig15.png -------------------------------------------------------------------------------- /doc/images/Sec1Fig16-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec1Fig16-1.png -------------------------------------------------------------------------------- /doc/images/Sec1Fig16-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec1Fig16-2.png -------------------------------------------------------------------------------- /doc/images/Sec1Fig16-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec1Fig16-3.png -------------------------------------------------------------------------------- /doc/images/Sec1Fig16-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec1Fig16-4.png -------------------------------------------------------------------------------- /doc/images/Sec1Fig16-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec1Fig16-5.png -------------------------------------------------------------------------------- /doc/images/Sec1Fig17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec1Fig17.png -------------------------------------------------------------------------------- /doc/images/Sec1Fig18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec1Fig18.png -------------------------------------------------------------------------------- /doc/images/Sec1Fig19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec1Fig19.png -------------------------------------------------------------------------------- /doc/images/Sec1Fig2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec1Fig2.png -------------------------------------------------------------------------------- /doc/images/Sec1Fig20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec1Fig20.png -------------------------------------------------------------------------------- /doc/images/Sec1Fig3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec1Fig3.png -------------------------------------------------------------------------------- /doc/images/Sec1Fig4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec1Fig4.png -------------------------------------------------------------------------------- /doc/images/Sec1Fig5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec1Fig5.png -------------------------------------------------------------------------------- /doc/images/Sec1Fig6+.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec1Fig6+.png -------------------------------------------------------------------------------- /doc/images/Sec1Fig6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec1Fig6.png -------------------------------------------------------------------------------- /doc/images/Sec1Fig7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec1Fig7.png -------------------------------------------------------------------------------- /doc/images/Sec1Fig8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec1Fig8.png -------------------------------------------------------------------------------- /doc/images/Sec1Fig9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec1Fig9.png -------------------------------------------------------------------------------- /doc/images/Sec2Fig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec2Fig1.png -------------------------------------------------------------------------------- /doc/images/Sec2Fig10+.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec2Fig10+.png -------------------------------------------------------------------------------- /doc/images/Sec2Fig10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec2Fig10.png -------------------------------------------------------------------------------- /doc/images/Sec2Fig11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec2Fig11.png -------------------------------------------------------------------------------- /doc/images/Sec2Fig12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec2Fig12.png -------------------------------------------------------------------------------- /doc/images/Sec2Fig13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec2Fig13.png -------------------------------------------------------------------------------- /doc/images/Sec2Fig14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec2Fig14.png -------------------------------------------------------------------------------- /doc/images/Sec2Fig15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec2Fig15.png -------------------------------------------------------------------------------- /doc/images/Sec2Fig16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec2Fig16.png -------------------------------------------------------------------------------- /doc/images/Sec2Fig17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec2Fig17.png -------------------------------------------------------------------------------- /doc/images/Sec2Fig18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec2Fig18.png -------------------------------------------------------------------------------- /doc/images/Sec2Fig19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec2Fig19.png -------------------------------------------------------------------------------- /doc/images/Sec2Fig2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec2Fig2-1.png -------------------------------------------------------------------------------- /doc/images/Sec2Fig20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec2Fig20.png -------------------------------------------------------------------------------- /doc/images/Sec2Fig21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec2Fig21.png -------------------------------------------------------------------------------- /doc/images/Sec2Fig22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec2Fig22.png -------------------------------------------------------------------------------- /doc/images/Sec2Fig23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec2Fig23.png -------------------------------------------------------------------------------- /doc/images/Sec2Fig24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec2Fig24.png -------------------------------------------------------------------------------- /doc/images/Sec2Fig25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec2Fig25.png -------------------------------------------------------------------------------- /doc/images/Sec2Fig26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec2Fig26.png -------------------------------------------------------------------------------- /doc/images/Sec2Fig27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec2Fig27.png -------------------------------------------------------------------------------- /doc/images/Sec2Fig28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec2Fig28.png -------------------------------------------------------------------------------- /doc/images/Sec2Fig3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec2Fig3-1.png -------------------------------------------------------------------------------- /doc/images/Sec2Fig3-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec2Fig3-2.png -------------------------------------------------------------------------------- /doc/images/Sec2Fig4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec2Fig4.png -------------------------------------------------------------------------------- /doc/images/Sec2Fig5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec2Fig5-1.png -------------------------------------------------------------------------------- /doc/images/Sec2Fig5-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec2Fig5-2.png -------------------------------------------------------------------------------- /doc/images/Sec2Fig5-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec2Fig5-3.png -------------------------------------------------------------------------------- /doc/images/Sec2Fig5-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec2Fig5-4.png -------------------------------------------------------------------------------- /doc/images/Sec2Fig5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec2Fig5.png -------------------------------------------------------------------------------- /doc/images/Sec2Fig6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec2Fig6.png -------------------------------------------------------------------------------- /doc/images/Sec2Fig7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec2Fig7.png -------------------------------------------------------------------------------- /doc/images/Sec2Fig8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec2Fig8.png -------------------------------------------------------------------------------- /doc/images/Sec2Fig9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec2Fig9.png -------------------------------------------------------------------------------- /doc/images/Sec3Fig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec3Fig1.png -------------------------------------------------------------------------------- /doc/images/Sec3Fig10+.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec3Fig10+.png -------------------------------------------------------------------------------- /doc/images/Sec3Fig10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec3Fig10.png -------------------------------------------------------------------------------- /doc/images/Sec3Fig11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec3Fig11.png -------------------------------------------------------------------------------- /doc/images/Sec3Fig12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec3Fig12.png -------------------------------------------------------------------------------- /doc/images/Sec3Fig13+.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec3Fig13+.png -------------------------------------------------------------------------------- /doc/images/Sec3Fig13+1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec3Fig13+1.png -------------------------------------------------------------------------------- /doc/images/Sec3Fig13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec3Fig13.png -------------------------------------------------------------------------------- /doc/images/Sec3Fig14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec3Fig14.png -------------------------------------------------------------------------------- /doc/images/Sec3Fig15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec3Fig15.png -------------------------------------------------------------------------------- /doc/images/Sec3Fig16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec3Fig16.png -------------------------------------------------------------------------------- /doc/images/Sec3Fig17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec3Fig17.png -------------------------------------------------------------------------------- /doc/images/Sec3Fig18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec3Fig18.png -------------------------------------------------------------------------------- /doc/images/Sec3Fig19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec3Fig19.png -------------------------------------------------------------------------------- /doc/images/Sec3Fig2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec3Fig2.png -------------------------------------------------------------------------------- /doc/images/Sec3Fig20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec3Fig20.png -------------------------------------------------------------------------------- /doc/images/Sec3Fig21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec3Fig21.png -------------------------------------------------------------------------------- /doc/images/Sec3Fig22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec3Fig22.png -------------------------------------------------------------------------------- /doc/images/Sec3Fig23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec3Fig23.png -------------------------------------------------------------------------------- /doc/images/Sec3Fig24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec3Fig24.png -------------------------------------------------------------------------------- /doc/images/Sec3Fig25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec3Fig25.png -------------------------------------------------------------------------------- /doc/images/Sec3Fig26+.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec3Fig26+.png -------------------------------------------------------------------------------- /doc/images/Sec3Fig26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec3Fig26.png -------------------------------------------------------------------------------- /doc/images/Sec3Fig27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec3Fig27.png -------------------------------------------------------------------------------- /doc/images/Sec3Fig28-Alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec3Fig28-Alt.png -------------------------------------------------------------------------------- /doc/images/Sec3Fig28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec3Fig28.png -------------------------------------------------------------------------------- /doc/images/Sec3Fig29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec3Fig29.png -------------------------------------------------------------------------------- /doc/images/Sec3Fig3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec3Fig3.png -------------------------------------------------------------------------------- /doc/images/Sec3Fig4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec3Fig4.png -------------------------------------------------------------------------------- /doc/images/Sec3Fig5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec3Fig5.png -------------------------------------------------------------------------------- /doc/images/Sec3Fig6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec3Fig6.png -------------------------------------------------------------------------------- /doc/images/Sec3Fig7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec3Fig7.png -------------------------------------------------------------------------------- /doc/images/Sec3Fig8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec3Fig8.png -------------------------------------------------------------------------------- /doc/images/Sec3Fig9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec3Fig9.png -------------------------------------------------------------------------------- /doc/images/Sec4Fig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec4Fig1.png -------------------------------------------------------------------------------- /doc/images/Sec4Fig10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec4Fig10.png -------------------------------------------------------------------------------- /doc/images/Sec4Fig11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec4Fig11.png -------------------------------------------------------------------------------- /doc/images/Sec4Fig12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec4Fig12.png -------------------------------------------------------------------------------- /doc/images/Sec4Fig13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec4Fig13.png -------------------------------------------------------------------------------- /doc/images/Sec4Fig14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec4Fig14.png -------------------------------------------------------------------------------- /doc/images/Sec4Fig15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec4Fig15.png -------------------------------------------------------------------------------- /doc/images/Sec4Fig16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec4Fig16.png -------------------------------------------------------------------------------- /doc/images/Sec4Fig17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec4Fig17.png -------------------------------------------------------------------------------- /doc/images/Sec4Fig18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec4Fig18.png -------------------------------------------------------------------------------- /doc/images/Sec4Fig2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec4Fig2.png -------------------------------------------------------------------------------- /doc/images/Sec4Fig3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec4Fig3.png -------------------------------------------------------------------------------- /doc/images/Sec4Fig4+.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec4Fig4+.png -------------------------------------------------------------------------------- /doc/images/Sec4Fig4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec4Fig4.png -------------------------------------------------------------------------------- /doc/images/Sec4Fig5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec4Fig5.png -------------------------------------------------------------------------------- /doc/images/Sec4Fig6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec4Fig6.png -------------------------------------------------------------------------------- /doc/images/Sec4Fig7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec4Fig7.png -------------------------------------------------------------------------------- /doc/images/Sec4Fig8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec4Fig8.png -------------------------------------------------------------------------------- /doc/images/Sec4Fig9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec4Fig9.png -------------------------------------------------------------------------------- /doc/images/Sec4FigExtra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec4FigExtra.png -------------------------------------------------------------------------------- /doc/images/Sec4FigExtra2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec4FigExtra2.png -------------------------------------------------------------------------------- /doc/images/Sec4FigExtra3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec4FigExtra3.png -------------------------------------------------------------------------------- /doc/images/Sec5Fig1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec5Fig1.jpg -------------------------------------------------------------------------------- /doc/images/Sec5Fig2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec5Fig2.png -------------------------------------------------------------------------------- /doc/images/Sec5Fig3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec5Fig3.png -------------------------------------------------------------------------------- /doc/images/Sec5Fig4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec5Fig4.png -------------------------------------------------------------------------------- /doc/images/Sec5Fig5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec5Fig5.png -------------------------------------------------------------------------------- /doc/images/Sec5Fig6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/Sec5Fig6.png -------------------------------------------------------------------------------- /doc/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/doc/images/logo.png -------------------------------------------------------------------------------- /dwarftherapist.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/dwarftherapist.pro -------------------------------------------------------------------------------- /dwarftherapist_en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/dwarftherapist_en.ts -------------------------------------------------------------------------------- /hammer.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/hammer.icns -------------------------------------------------------------------------------- /hammer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/hammer.ico -------------------------------------------------------------------------------- /inc/aboutdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/aboutdialog.h -------------------------------------------------------------------------------- /inc/activity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/activity.h -------------------------------------------------------------------------------- /inc/activityevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/activityevent.h -------------------------------------------------------------------------------- /inc/attribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/attribute.h -------------------------------------------------------------------------------- /inc/belief.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/belief.h -------------------------------------------------------------------------------- /inc/bodypart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/bodypart.h -------------------------------------------------------------------------------- /inc/bodypartdamage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/bodypartdamage.h -------------------------------------------------------------------------------- /inc/bodypartlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/bodypartlayer.h -------------------------------------------------------------------------------- /inc/caste.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/caste.h -------------------------------------------------------------------------------- /inc/contextmenuhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/contextmenuhelper.h -------------------------------------------------------------------------------- /inc/cp437codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/cp437codec.h -------------------------------------------------------------------------------- /inc/customcolor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/customcolor.h -------------------------------------------------------------------------------- /inc/customprofession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/customprofession.h -------------------------------------------------------------------------------- /inc/defaultfonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/defaultfonts.h -------------------------------------------------------------------------------- /inc/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/defines.h -------------------------------------------------------------------------------- /inc/dfinstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/dfinstance.h -------------------------------------------------------------------------------- /inc/dfinstancelinux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/dfinstancelinux.h -------------------------------------------------------------------------------- /inc/dfinstancenix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/dfinstancenix.h -------------------------------------------------------------------------------- /inc/dfinstanceosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/dfinstanceosx.h -------------------------------------------------------------------------------- /inc/dfinstancewindows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/dfinstancewindows.h -------------------------------------------------------------------------------- /inc/docks/basedock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/docks/basedock.h -------------------------------------------------------------------------------- /inc/docks/basetreedock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/docks/basetreedock.h -------------------------------------------------------------------------------- /inc/docks/dwarfdetailsdock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/docks/dwarfdetailsdock.h -------------------------------------------------------------------------------- /inc/docks/equipmentoverviewdock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/docks/equipmentoverviewdock.h -------------------------------------------------------------------------------- /inc/docks/gridviewdock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/docks/gridviewdock.h -------------------------------------------------------------------------------- /inc/docks/healthlegenddock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/docks/healthlegenddock.h -------------------------------------------------------------------------------- /inc/docks/informationdock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/docks/informationdock.h -------------------------------------------------------------------------------- /inc/docks/preferencesdock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/docks/preferencesdock.h -------------------------------------------------------------------------------- /inc/docks/skilllegenddock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/docks/skilllegenddock.h -------------------------------------------------------------------------------- /inc/docks/thoughtsdock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/docks/thoughtsdock.h -------------------------------------------------------------------------------- /inc/dtstandarditem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/dtstandarditem.h -------------------------------------------------------------------------------- /inc/dwarf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/dwarf.h -------------------------------------------------------------------------------- /inc/dwarfdetailswidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/dwarfdetailswidget.h -------------------------------------------------------------------------------- /inc/dwarfjob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/dwarfjob.h -------------------------------------------------------------------------------- /inc/dwarfstats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/dwarfstats.h -------------------------------------------------------------------------------- /inc/dwarftherapist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/dwarftherapist.h -------------------------------------------------------------------------------- /inc/emotion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/emotion.h -------------------------------------------------------------------------------- /inc/emotiongroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/emotiongroup.h -------------------------------------------------------------------------------- /inc/equipwarn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/equipwarn.h -------------------------------------------------------------------------------- /inc/eventfilterlineedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/eventfilterlineedit.h -------------------------------------------------------------------------------- /inc/flagarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/flagarray.h -------------------------------------------------------------------------------- /inc/fortressentity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/fortressentity.h -------------------------------------------------------------------------------- /inc/gamedatareader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/gamedatareader.h -------------------------------------------------------------------------------- /inc/global_enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/global_enums.h -------------------------------------------------------------------------------- /inc/grid_view/attributecolumn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/grid_view/attributecolumn.h -------------------------------------------------------------------------------- /inc/grid_view/beliefcolumn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/grid_view/beliefcolumn.h -------------------------------------------------------------------------------- /inc/grid_view/cellcolordef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/grid_view/cellcolordef.h -------------------------------------------------------------------------------- /inc/grid_view/cellcolors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/grid_view/cellcolors.h -------------------------------------------------------------------------------- /inc/grid_view/columntypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/grid_view/columntypes.h -------------------------------------------------------------------------------- /inc/grid_view/currentjobcolumn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/grid_view/currentjobcolumn.h -------------------------------------------------------------------------------- /inc/grid_view/customprofessioncolumn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/grid_view/customprofessioncolumn.h -------------------------------------------------------------------------------- /inc/grid_view/equipmentcolumn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/grid_view/equipmentcolumn.h -------------------------------------------------------------------------------- /inc/grid_view/flagcolumn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/grid_view/flagcolumn.h -------------------------------------------------------------------------------- /inc/grid_view/gridview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/grid_view/gridview.h -------------------------------------------------------------------------------- /inc/grid_view/happinesscolumn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/grid_view/happinesscolumn.h -------------------------------------------------------------------------------- /inc/grid_view/healthcolumn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/grid_view/healthcolumn.h -------------------------------------------------------------------------------- /inc/grid_view/highestmoodcolumn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/grid_view/highestmoodcolumn.h -------------------------------------------------------------------------------- /inc/grid_view/itemtypecolumn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/grid_view/itemtypecolumn.h -------------------------------------------------------------------------------- /inc/grid_view/laborcolumn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/grid_view/laborcolumn.h -------------------------------------------------------------------------------- /inc/grid_view/professioncolumn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/grid_view/professioncolumn.h -------------------------------------------------------------------------------- /inc/grid_view/rolecolumn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/grid_view/rolecolumn.h -------------------------------------------------------------------------------- /inc/grid_view/skillcolumn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/grid_view/skillcolumn.h -------------------------------------------------------------------------------- /inc/grid_view/spacercolumn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/grid_view/spacercolumn.h -------------------------------------------------------------------------------- /inc/grid_view/superlaborcolumn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/grid_view/superlaborcolumn.h -------------------------------------------------------------------------------- /inc/grid_view/trainedcolumn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/grid_view/trainedcolumn.h -------------------------------------------------------------------------------- /inc/grid_view/traitcolumn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/grid_view/traitcolumn.h -------------------------------------------------------------------------------- /inc/grid_view/unitkillscolumn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/grid_view/unitkillscolumn.h -------------------------------------------------------------------------------- /inc/grid_view/viewcolumn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/grid_view/viewcolumn.h -------------------------------------------------------------------------------- /inc/grid_view/viewcolumncolors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/grid_view/viewcolumncolors.h -------------------------------------------------------------------------------- /inc/grid_view/viewcolumnset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/grid_view/viewcolumnset.h -------------------------------------------------------------------------------- /inc/grid_view/viewcolumnsetcolors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/grid_view/viewcolumnsetcolors.h -------------------------------------------------------------------------------- /inc/grid_view/vieweditordialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/grid_view/vieweditordialog.h -------------------------------------------------------------------------------- /inc/grid_view/weaponcolumn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/grid_view/weaponcolumn.h -------------------------------------------------------------------------------- /inc/gridviewdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/gridviewdialog.h -------------------------------------------------------------------------------- /inc/healthcategory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/healthcategory.h -------------------------------------------------------------------------------- /inc/healthinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/healthinfo.h -------------------------------------------------------------------------------- /inc/histfigure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/histfigure.h -------------------------------------------------------------------------------- /inc/iconchooser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/iconchooser.h -------------------------------------------------------------------------------- /inc/importexportdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/importexportdialog.h -------------------------------------------------------------------------------- /inc/item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/item.h -------------------------------------------------------------------------------- /inc/itemammo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/itemammo.h -------------------------------------------------------------------------------- /inc/itemarmor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/itemarmor.h -------------------------------------------------------------------------------- /inc/itemarmorsubtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/itemarmorsubtype.h -------------------------------------------------------------------------------- /inc/itemdefuniform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/itemdefuniform.h -------------------------------------------------------------------------------- /inc/itemgenericsubtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/itemgenericsubtype.h -------------------------------------------------------------------------------- /inc/iteminstrument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/iteminstrument.h -------------------------------------------------------------------------------- /inc/itemsubtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/itemsubtype.h -------------------------------------------------------------------------------- /inc/itemtool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/itemtool.h -------------------------------------------------------------------------------- /inc/itemtoolsubtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/itemtoolsubtype.h -------------------------------------------------------------------------------- /inc/itemuniform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/itemuniform.h -------------------------------------------------------------------------------- /inc/itemweapon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/itemweapon.h -------------------------------------------------------------------------------- /inc/itemweaponsubtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/itemweaponsubtype.h -------------------------------------------------------------------------------- /inc/labor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/labor.h -------------------------------------------------------------------------------- /inc/laboroptimizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/laboroptimizer.h -------------------------------------------------------------------------------- /inc/laboroptimizerplan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/laboroptimizerplan.h -------------------------------------------------------------------------------- /inc/languages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/languages.h -------------------------------------------------------------------------------- /inc/layoutcreator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/layoutcreator.h -------------------------------------------------------------------------------- /inc/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/mainwindow.h -------------------------------------------------------------------------------- /inc/material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/material.h -------------------------------------------------------------------------------- /inc/memorylayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/memorylayout.h -------------------------------------------------------------------------------- /inc/memorysegment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/memorysegment.h -------------------------------------------------------------------------------- /inc/models/dwarfmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/models/dwarfmodel.h -------------------------------------------------------------------------------- /inc/models/dwarfmodelproxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/models/dwarfmodelproxy.h -------------------------------------------------------------------------------- /inc/mood.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/mood.h -------------------------------------------------------------------------------- /inc/multilabor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/multilabor.h -------------------------------------------------------------------------------- /inc/notificationwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/notificationwidget.h -------------------------------------------------------------------------------- /inc/notifierwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/notifierwidget.h -------------------------------------------------------------------------------- /inc/optimizereditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/optimizereditor.h -------------------------------------------------------------------------------- /inc/optionsmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/optionsmenu.h -------------------------------------------------------------------------------- /inc/plandetail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/plandetail.h -------------------------------------------------------------------------------- /inc/plant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/plant.h -------------------------------------------------------------------------------- /inc/preference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/preference.h -------------------------------------------------------------------------------- /inc/profession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/profession.h -------------------------------------------------------------------------------- /inc/races.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/races.h -------------------------------------------------------------------------------- /inc/reaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/reaction.h -------------------------------------------------------------------------------- /inc/role.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/role.h -------------------------------------------------------------------------------- /inc/roleaspect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/roleaspect.h -------------------------------------------------------------------------------- /inc/rolecalcbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/rolecalcbase.h -------------------------------------------------------------------------------- /inc/rolecalcminmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/rolecalcminmax.h -------------------------------------------------------------------------------- /inc/rolecalcrecenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/rolecalcrecenter.h -------------------------------------------------------------------------------- /inc/roledialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/roledialog.h -------------------------------------------------------------------------------- /inc/rolestats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/rolestats.h -------------------------------------------------------------------------------- /inc/rotatedheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/rotatedheader.h -------------------------------------------------------------------------------- /inc/scriptdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/scriptdialog.h -------------------------------------------------------------------------------- /inc/selectparentlayoutdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/selectparentlayoutdialog.h -------------------------------------------------------------------------------- /inc/skill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/skill.h -------------------------------------------------------------------------------- /inc/sortabletableitems.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/sortabletableitems.h -------------------------------------------------------------------------------- /inc/squad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/squad.h -------------------------------------------------------------------------------- /inc/statetableview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/statetableview.h -------------------------------------------------------------------------------- /inc/subthoughttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/subthoughttypes.h -------------------------------------------------------------------------------- /inc/superlabor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/superlabor.h -------------------------------------------------------------------------------- /inc/syndrome.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/syndrome.h -------------------------------------------------------------------------------- /inc/thought.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/thought.h -------------------------------------------------------------------------------- /inc/trait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/trait.h -------------------------------------------------------------------------------- /inc/truncatingfilelogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/truncatingfilelogger.h -------------------------------------------------------------------------------- /inc/uberdelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/uberdelegate.h -------------------------------------------------------------------------------- /inc/uniform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/uniform.h -------------------------------------------------------------------------------- /inc/unitbelief.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/unitbelief.h -------------------------------------------------------------------------------- /inc/unitemotion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/unitemotion.h -------------------------------------------------------------------------------- /inc/unithealth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/unithealth.h -------------------------------------------------------------------------------- /inc/unitwound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/unitwound.h -------------------------------------------------------------------------------- /inc/updater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/updater.h -------------------------------------------------------------------------------- /inc/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/utils.h -------------------------------------------------------------------------------- /inc/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/version.h -------------------------------------------------------------------------------- /inc/viewmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/viewmanager.h -------------------------------------------------------------------------------- /inc/word.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/inc/word.h -------------------------------------------------------------------------------- /osx/makedist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/osx/makedist.sh -------------------------------------------------------------------------------- /osx/template.dmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/osx/template.dmg -------------------------------------------------------------------------------- /resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resource.h -------------------------------------------------------------------------------- /resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources.qrc -------------------------------------------------------------------------------- /resources/default_gridviews.dtg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/default_gridviews.dtg -------------------------------------------------------------------------------- /resources/game_data.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/game_data.ini -------------------------------------------------------------------------------- /resources/img/Ecstatic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/Ecstatic.png -------------------------------------------------------------------------------- /resources/img/Fine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/Fine.png -------------------------------------------------------------------------------- /resources/img/Happy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/Happy.png -------------------------------------------------------------------------------- /resources/img/Miserable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/Miserable.png -------------------------------------------------------------------------------- /resources/img/Quite Content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/Quite Content.png -------------------------------------------------------------------------------- /resources/img/Unhappy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/Unhappy.png -------------------------------------------------------------------------------- /resources/img/Very Unhappy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/Very Unhappy.png -------------------------------------------------------------------------------- /resources/img/activity icons/abacus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/abacus.png -------------------------------------------------------------------------------- /resources/img/activity icons/ale--plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/ale--plus.png -------------------------------------------------------------------------------- /resources/img/activity icons/ale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/ale.png -------------------------------------------------------------------------------- /resources/img/activity icons/animal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/animal.png -------------------------------------------------------------------------------- /resources/img/activity icons/armor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/armor.png -------------------------------------------------------------------------------- /resources/img/activity icons/arrow-repeat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/arrow-repeat.png -------------------------------------------------------------------------------- /resources/img/activity icons/arrow-return.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/arrow-return.png -------------------------------------------------------------------------------- /resources/img/activity icons/balance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/balance.png -------------------------------------------------------------------------------- /resources/img/activity icons/balloon-ellipsis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/balloon-ellipsis.png -------------------------------------------------------------------------------- /resources/img/activity icons/balloon-prohibition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/balloon-prohibition.png -------------------------------------------------------------------------------- /resources/img/activity icons/balloon-quotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/balloon-quotation.png -------------------------------------------------------------------------------- /resources/img/activity icons/balloon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/balloon.png -------------------------------------------------------------------------------- /resources/img/activity icons/band-aid-double.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/band-aid-double.png -------------------------------------------------------------------------------- /resources/img/activity icons/bandaid--arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/bandaid--arrow.png -------------------------------------------------------------------------------- /resources/img/activity icons/bandaid--exclamation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/bandaid--exclamation.png -------------------------------------------------------------------------------- /resources/img/activity icons/beans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/beans.png -------------------------------------------------------------------------------- /resources/img/activity icons/bee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/bee.png -------------------------------------------------------------------------------- /resources/img/activity icons/beehive--arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/beehive--arrow.png -------------------------------------------------------------------------------- /resources/img/activity icons/beehive--plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/beehive--plus.png -------------------------------------------------------------------------------- /resources/img/activity icons/beer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/beer.png -------------------------------------------------------------------------------- /resources/img/activity icons/bell-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/bell-green.png -------------------------------------------------------------------------------- /resources/img/activity icons/bell-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/bell-red.png -------------------------------------------------------------------------------- /resources/img/activity icons/bell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/bell.png -------------------------------------------------------------------------------- /resources/img/activity icons/board-game-go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/board-game-go.png -------------------------------------------------------------------------------- /resources/img/activity icons/book-open-bookmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/book-open-bookmark.png -------------------------------------------------------------------------------- /resources/img/activity icons/book-open-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/book-open-list.png -------------------------------------------------------------------------------- /resources/img/activity icons/boot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/boot.png -------------------------------------------------------------------------------- /resources/img/activity icons/bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/bow.png -------------------------------------------------------------------------------- /resources/img/activity icons/box--arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/box--arrow.png -------------------------------------------------------------------------------- /resources/img/activity icons/box--minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/box--minus.png -------------------------------------------------------------------------------- /resources/img/activity icons/box--plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/box--plus.png -------------------------------------------------------------------------------- /resources/img/activity icons/brain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/brain.png -------------------------------------------------------------------------------- /resources/img/activity icons/bread--arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/bread--arrow.png -------------------------------------------------------------------------------- /resources/img/activity icons/broom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/broom.png -------------------------------------------------------------------------------- /resources/img/activity icons/bug--arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/bug--arrow.png -------------------------------------------------------------------------------- /resources/img/activity icons/bullet-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/bullet-blue.png -------------------------------------------------------------------------------- /resources/img/activity icons/carp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/carp.png -------------------------------------------------------------------------------- /resources/img/activity icons/cart-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/cart-box.png -------------------------------------------------------------------------------- /resources/img/activity icons/chain-unchain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/chain-unchain.png -------------------------------------------------------------------------------- /resources/img/activity icons/chain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/chain.png -------------------------------------------------------------------------------- /resources/img/activity icons/chair--plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/chair--plus.png -------------------------------------------------------------------------------- /resources/img/activity icons/chalkboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/chalkboard.png -------------------------------------------------------------------------------- /resources/img/activity icons/chest--in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/chest--in.png -------------------------------------------------------------------------------- /resources/img/activity icons/chest--plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/chest--plus.png -------------------------------------------------------------------------------- /resources/img/activity icons/chest--search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/chest--search.png -------------------------------------------------------------------------------- /resources/img/activity icons/church.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/church.png -------------------------------------------------------------------------------- /resources/img/activity icons/clock-moon-phase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/clock-moon-phase.png -------------------------------------------------------------------------------- /resources/img/activity icons/color--plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/color--plus.png -------------------------------------------------------------------------------- /resources/img/activity icons/control-play-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/control-play-blue.png -------------------------------------------------------------------------------- /resources/img/activity icons/cross-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/cross-small.png -------------------------------------------------------------------------------- /resources/img/activity icons/crossed-swords.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/crossed-swords.png -------------------------------------------------------------------------------- /resources/img/activity icons/crown--plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/crown--plus.png -------------------------------------------------------------------------------- /resources/img/activity icons/crown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/crown.png -------------------------------------------------------------------------------- /resources/img/activity icons/cup2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/cup2.png -------------------------------------------------------------------------------- /resources/img/activity icons/cutlery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/cutlery.png -------------------------------------------------------------------------------- /resources/img/activity icons/diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/diamond.png -------------------------------------------------------------------------------- /resources/img/activity icons/door--plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/door--plus.png -------------------------------------------------------------------------------- /resources/img/activity icons/drawer--in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/drawer--in.png -------------------------------------------------------------------------------- /resources/img/activity icons/drawer--plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/drawer--plus.png -------------------------------------------------------------------------------- /resources/img/activity icons/drawer-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/drawer-open.png -------------------------------------------------------------------------------- /resources/img/activity icons/ear-listen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/ear-listen.png -------------------------------------------------------------------------------- /resources/img/activity icons/edit-quotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/edit-quotation.png -------------------------------------------------------------------------------- /resources/img/activity icons/exclamation-shield-frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/exclamation-shield-frame.png -------------------------------------------------------------------------------- /resources/img/activity icons/exclamation-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/exclamation-white.png -------------------------------------------------------------------------------- /resources/img/activity icons/eye--arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/eye--arrow.png -------------------------------------------------------------------------------- /resources/img/activity icons/fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/fire.png -------------------------------------------------------------------------------- /resources/img/activity icons/first-aid-kit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/first-aid-kit.png -------------------------------------------------------------------------------- /resources/img/activity icons/fish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/fish.png -------------------------------------------------------------------------------- /resources/img/activity icons/flask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/flask.png -------------------------------------------------------------------------------- /resources/img/activity icons/furnace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/furnace.png -------------------------------------------------------------------------------- /resources/img/activity icons/gear--plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/gear--plus.png -------------------------------------------------------------------------------- /resources/img/activity icons/gear-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/gear-small.png -------------------------------------------------------------------------------- /resources/img/activity icons/glass--plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/glass--plus.png -------------------------------------------------------------------------------- /resources/img/activity icons/glove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/glove.png -------------------------------------------------------------------------------- /resources/img/activity icons/grid-dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/grid-dot.png -------------------------------------------------------------------------------- /resources/img/activity icons/grid-small-dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/grid-small-dot.png -------------------------------------------------------------------------------- /resources/img/activity icons/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/grid.png -------------------------------------------------------------------------------- /resources/img/activity icons/guitar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/guitar.png -------------------------------------------------------------------------------- /resources/img/activity icons/hammer--minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/hammer--minus.png -------------------------------------------------------------------------------- /resources/img/activity icons/hammer--plain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/hammer--plain.png -------------------------------------------------------------------------------- /resources/img/activity icons/hammer-screwdriver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/hammer-screwdriver.png -------------------------------------------------------------------------------- /resources/img/activity icons/hand-finger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/hand-finger.png -------------------------------------------------------------------------------- /resources/img/activity icons/hand-shake--arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/hand-shake--arrow.png -------------------------------------------------------------------------------- /resources/img/activity icons/hand-shake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/hand-shake.png -------------------------------------------------------------------------------- /resources/img/activity icons/hatchet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/hatchet.png -------------------------------------------------------------------------------- /resources/img/activity icons/headstone--plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/headstone--plus.png -------------------------------------------------------------------------------- /resources/img/activity icons/headstone-cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/headstone-cross.png -------------------------------------------------------------------------------- /resources/img/activity icons/headstone-rip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/headstone-rip.png -------------------------------------------------------------------------------- /resources/img/activity icons/headstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/headstone.png -------------------------------------------------------------------------------- /resources/img/activity icons/heart--arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/heart--arrow.png -------------------------------------------------------------------------------- /resources/img/activity icons/helm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/helm.png -------------------------------------------------------------------------------- /resources/img/activity icons/hourglass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/hourglass.png -------------------------------------------------------------------------------- /resources/img/activity icons/ice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/ice.png -------------------------------------------------------------------------------- /resources/img/activity icons/inbox--in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/inbox--in.png -------------------------------------------------------------------------------- /resources/img/activity icons/inbox--plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/inbox--plus.png -------------------------------------------------------------------------------- /resources/img/activity icons/jar--arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/jar--arrow.png -------------------------------------------------------------------------------- /resources/img/activity icons/knife-bloody.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/knife-bloody.png -------------------------------------------------------------------------------- /resources/img/activity icons/leaf--arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/leaf--arrow.png -------------------------------------------------------------------------------- /resources/img/activity icons/leaf--plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/leaf--plus.png -------------------------------------------------------------------------------- /resources/img/activity icons/leaf-plant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/leaf-plant.png -------------------------------------------------------------------------------- /resources/img/activity icons/leaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/leaf.png -------------------------------------------------------------------------------- /resources/img/activity icons/lock--exclamation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/lock--exclamation.png -------------------------------------------------------------------------------- /resources/img/activity icons/lump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/lump.png -------------------------------------------------------------------------------- /resources/img/activity icons/magnifier--arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/magnifier--arrow.png -------------------------------------------------------------------------------- /resources/img/activity icons/meat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/meat.png -------------------------------------------------------------------------------- /resources/img/activity icons/milk-cheese.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/milk-cheese.png -------------------------------------------------------------------------------- /resources/img/activity icons/milk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/milk.png -------------------------------------------------------------------------------- /resources/img/activity icons/money--arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/money--arrow.png -------------------------------------------------------------------------------- /resources/img/activity icons/money-bag--in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/money-bag--in.png -------------------------------------------------------------------------------- /resources/img/activity icons/money-bag-dollar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/money-bag-dollar.png -------------------------------------------------------------------------------- /resources/img/activity icons/money-bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/money-bag.png -------------------------------------------------------------------------------- /resources/img/activity icons/money-coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/money-coin.png -------------------------------------------------------------------------------- /resources/img/activity icons/moon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/moon.png -------------------------------------------------------------------------------- /resources/img/activity icons/mushroom--arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/mushroom--arrow.png -------------------------------------------------------------------------------- /resources/img/activity icons/music-beam-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/music-beam-16.png -------------------------------------------------------------------------------- /resources/img/activity icons/paint-brush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/paint-brush.png -------------------------------------------------------------------------------- /resources/img/activity icons/paint-can--arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/paint-can--arrow.png -------------------------------------------------------------------------------- /resources/img/activity icons/paper-bag--plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/paper-bag--plus.png -------------------------------------------------------------------------------- /resources/img/activity icons/party-hat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/party-hat.png -------------------------------------------------------------------------------- /resources/img/activity icons/pipette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/pipette.png -------------------------------------------------------------------------------- /resources/img/activity icons/pot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/pot.png -------------------------------------------------------------------------------- /resources/img/activity icons/prohibition-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/prohibition-button.png -------------------------------------------------------------------------------- /resources/img/activity icons/quill--plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/quill--plus.png -------------------------------------------------------------------------------- /resources/img/activity icons/quill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/quill.png -------------------------------------------------------------------------------- /resources/img/activity icons/rubber-balloons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/rubber-balloons.png -------------------------------------------------------------------------------- /resources/img/activity icons/ruby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/ruby.png -------------------------------------------------------------------------------- /resources/img/activity icons/safe--plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/safe--plus.png -------------------------------------------------------------------------------- /resources/img/activity icons/service-bell--arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/service-bell--arrow.png -------------------------------------------------------------------------------- /resources/img/activity icons/shield--arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/shield--arrow.png -------------------------------------------------------------------------------- /resources/img/activity icons/shield-brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/shield-brown.png -------------------------------------------------------------------------------- /resources/img/activity icons/shield-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/shield-green.png -------------------------------------------------------------------------------- /resources/img/activity icons/shield-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/shield-grey.png -------------------------------------------------------------------------------- /resources/img/activity icons/shield-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/shield-purple.png -------------------------------------------------------------------------------- /resources/img/activity icons/shield-teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/shield-teal.png -------------------------------------------------------------------------------- /resources/img/activity icons/shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/shield.png -------------------------------------------------------------------------------- /resources/img/activity icons/shopping-basket--arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/shopping-basket--arrow.png -------------------------------------------------------------------------------- /resources/img/activity icons/shovel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/shovel.png -------------------------------------------------------------------------------- /resources/img/activity icons/skull--plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/skull--plus.png -------------------------------------------------------------------------------- /resources/img/activity icons/skull-mad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/skull-mad.png -------------------------------------------------------------------------------- /resources/img/activity icons/skull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/skull.png -------------------------------------------------------------------------------- /resources/img/activity icons/soap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/soap.png -------------------------------------------------------------------------------- /resources/img/activity icons/spectacle-lorgnette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/spectacle-lorgnette.png -------------------------------------------------------------------------------- /resources/img/activity icons/spinning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/spinning.png -------------------------------------------------------------------------------- /resources/img/activity icons/stairs--minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/stairs--minus.png -------------------------------------------------------------------------------- /resources/img/activity icons/stairs--plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/stairs--plus.png -------------------------------------------------------------------------------- /resources/img/activity icons/stairs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/stairs.png -------------------------------------------------------------------------------- /resources/img/activity icons/status-forge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/status-forge.png -------------------------------------------------------------------------------- /resources/img/activity icons/store-market-stall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/store-market-stall.png -------------------------------------------------------------------------------- /resources/img/activity icons/store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/store.png -------------------------------------------------------------------------------- /resources/img/activity icons/switch-network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/switch-network.png -------------------------------------------------------------------------------- /resources/img/activity icons/switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/switch.png -------------------------------------------------------------------------------- /resources/img/activity icons/target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/target.png -------------------------------------------------------------------------------- /resources/img/activity icons/toolbox--arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/toolbox--arrow.png -------------------------------------------------------------------------------- /resources/img/activity icons/tree--minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/tree--minus.png -------------------------------------------------------------------------------- /resources/img/activity icons/user-thief-baldie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/user-thief-baldie.png -------------------------------------------------------------------------------- /resources/img/activity icons/wafer-adamantine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/wafer-adamantine.png -------------------------------------------------------------------------------- /resources/img/activity icons/wall-brick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/wall-brick.png -------------------------------------------------------------------------------- /resources/img/activity icons/wand-magic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/wand-magic.png -------------------------------------------------------------------------------- /resources/img/activity icons/water--arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/water--arrow.png -------------------------------------------------------------------------------- /resources/img/activity icons/water--plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/water--plus.png -------------------------------------------------------------------------------- /resources/img/activity icons/water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/water.png -------------------------------------------------------------------------------- /resources/img/activity icons/weapon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/weapon.png -------------------------------------------------------------------------------- /resources/img/activity icons/weather-moon-half.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/weather-moon-half.png -------------------------------------------------------------------------------- /resources/img/activity icons/wooden-box--arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/wooden-box--arrow.png -------------------------------------------------------------------------------- /resources/img/activity icons/x-ray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/x-ray.png -------------------------------------------------------------------------------- /resources/img/activity icons/yin-yang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/yin-yang.png -------------------------------------------------------------------------------- /resources/img/activity icons/zone--plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/activity icons/zone--plus.png -------------------------------------------------------------------------------- /resources/img/application-import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/application-import.png -------------------------------------------------------------------------------- /resources/img/arrow-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/arrow-circle.png -------------------------------------------------------------------------------- /resources/img/arrow-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/arrow-in.png -------------------------------------------------------------------------------- /resources/img/arrow-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/arrow-out.png -------------------------------------------------------------------------------- /resources/img/arrow-switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/arrow-switch.png -------------------------------------------------------------------------------- /resources/img/balloon-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/balloon-box.png -------------------------------------------------------------------------------- /resources/img/book--pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/book--pencil.png -------------------------------------------------------------------------------- /resources/img/book-question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/book-question.png -------------------------------------------------------------------------------- /resources/img/book_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/book_edit.png -------------------------------------------------------------------------------- /resources/img/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/camera.png -------------------------------------------------------------------------------- /resources/img/category-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/category-group.png -------------------------------------------------------------------------------- /resources/img/color_swatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/color_swatch.png -------------------------------------------------------------------------------- /resources/img/color_wheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/color_wheel.png -------------------------------------------------------------------------------- /resources/img/connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/connect.png -------------------------------------------------------------------------------- /resources/img/control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/control.png -------------------------------------------------------------------------------- /resources/img/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/cross.png -------------------------------------------------------------------------------- /resources/img/document--plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/document--plus.png -------------------------------------------------------------------------------- /resources/img/document-excel-csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/document-excel-csv.png -------------------------------------------------------------------------------- /resources/img/document-export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/document-export.png -------------------------------------------------------------------------------- /resources/img/document-import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/document-import.png -------------------------------------------------------------------------------- /resources/img/dwarf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/dwarf.jpg -------------------------------------------------------------------------------- /resources/img/dwarftherapist.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/dwarftherapist.xpm -------------------------------------------------------------------------------- /resources/img/emoticon_grin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/emoticon_grin.png -------------------------------------------------------------------------------- /resources/img/exclamation--frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/exclamation--frame.png -------------------------------------------------------------------------------- /resources/img/exclamation-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/exclamation-circle.png -------------------------------------------------------------------------------- /resources/img/exclamation-red-frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/exclamation-red-frame.png -------------------------------------------------------------------------------- /resources/img/exclamation-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/exclamation-red.png -------------------------------------------------------------------------------- /resources/img/female-asexual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/female-asexual.png -------------------------------------------------------------------------------- /resources/img/female-bi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/female-bi.png -------------------------------------------------------------------------------- /resources/img/female-female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/female-female.png -------------------------------------------------------------------------------- /resources/img/female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/female.png -------------------------------------------------------------------------------- /resources/img/funnel--plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/funnel--plus.png -------------------------------------------------------------------------------- /resources/img/funnel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/funnel.png -------------------------------------------------------------------------------- /resources/img/globe--arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/globe--arrow.png -------------------------------------------------------------------------------- /resources/img/hammer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/hammer.png -------------------------------------------------------------------------------- /resources/img/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/heart.png -------------------------------------------------------------------------------- /resources/img/image--pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/image--pencil.png -------------------------------------------------------------------------------- /resources/img/information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/information.png -------------------------------------------------------------------------------- /resources/img/magnifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/magnifier.png -------------------------------------------------------------------------------- /resources/img/male-asexual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/male-asexual.png -------------------------------------------------------------------------------- /resources/img/male-bi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/male-bi.png -------------------------------------------------------------------------------- /resources/img/male-male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/male-male.png -------------------------------------------------------------------------------- /resources/img/male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/male.png -------------------------------------------------------------------------------- /resources/img/memory-scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/memory-scan.png -------------------------------------------------------------------------------- /resources/img/minus-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/minus-circle.png -------------------------------------------------------------------------------- /resources/img/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/new.png -------------------------------------------------------------------------------- /resources/img/pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/pencil.png -------------------------------------------------------------------------------- /resources/img/plug--arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/plug--arrow.png -------------------------------------------------------------------------------- /resources/img/plug-connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/plug-connect.png -------------------------------------------------------------------------------- /resources/img/plus-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/plus-circle.png -------------------------------------------------------------------------------- /resources/img/plus-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/plus-white.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_1.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_10.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_100.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_101.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_102.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_103.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_103.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_104.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_104.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_105.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_105.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_106.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_106.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_11.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_112.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_112.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_12.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_13.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_14.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_15.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_16.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_17.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_18.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_19.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_2.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_20.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_21.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_22.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_23.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_24.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_25.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_26.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_27.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_28.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_29.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_3.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_30.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_31.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_32.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_33.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_34.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_35.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_36.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_37.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_38.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_39.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_4.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_40.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_41.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_42.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_43.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_44.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_45.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_46.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_47.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_48.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_49.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_5.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_50.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_51.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_52.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_53.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_54.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_55.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_56.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_57.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_58.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_59.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_6.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_60.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_61.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_61.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_62.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_62.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_63.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_63.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_64.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_65.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_65.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_66.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_66.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_67.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_67.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_68.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_68.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_69.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_69.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_7.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_70.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_71.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_71.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_72.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_73.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_73.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_74.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_74.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_75.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_76.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_77.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_77.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_78.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_78.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_79.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_79.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_8.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_80.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_81.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_81.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_82.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_82.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_83.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_83.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_84.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_84.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_85.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_85.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_86.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_86.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_87.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_88.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_89.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_89.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_9.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_90.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_91.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_91.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_92.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_92.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_93.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_93.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_94.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_94.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_95.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_95.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_96.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_97.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_97.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_98.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_98.png -------------------------------------------------------------------------------- /resources/img/profession icons/prof_99.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/profession icons/prof_99.png -------------------------------------------------------------------------------- /resources/img/question-frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/question-frame.png -------------------------------------------------------------------------------- /resources/img/question-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/question-white.png -------------------------------------------------------------------------------- /resources/img/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/refresh.png -------------------------------------------------------------------------------- /resources/img/script_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/script_minus.png -------------------------------------------------------------------------------- /resources/img/script_pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/script_pencil.png -------------------------------------------------------------------------------- /resources/img/script_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/script_plus.png -------------------------------------------------------------------------------- /resources/img/sort-alphabet-descending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/sort-alphabet-descending.png -------------------------------------------------------------------------------- /resources/img/sort-alphabet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/sort-alphabet.png -------------------------------------------------------------------------------- /resources/img/sort-number-descending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/sort-number-descending.png -------------------------------------------------------------------------------- /resources/img/sort-number.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/sort-number.png -------------------------------------------------------------------------------- /resources/img/table--arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/table--arrow.png -------------------------------------------------------------------------------- /resources/img/table--minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/table--minus.png -------------------------------------------------------------------------------- /resources/img/table--pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/table--pencil.png -------------------------------------------------------------------------------- /resources/img/table--plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/table--plus.png -------------------------------------------------------------------------------- /resources/img/table-export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/table-export.png -------------------------------------------------------------------------------- /resources/img/table-import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/table-import.png -------------------------------------------------------------------------------- /resources/img/table-insert-column.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/table-insert-column.png -------------------------------------------------------------------------------- /resources/img/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/table.png -------------------------------------------------------------------------------- /resources/img/tables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/tables.png -------------------------------------------------------------------------------- /resources/img/ui-button-navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/ui-button-navigation.png -------------------------------------------------------------------------------- /resources/img/ui-button-toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/ui-button-toggle.png -------------------------------------------------------------------------------- /resources/img/ui-layered-pane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/ui-layered-pane.png -------------------------------------------------------------------------------- /resources/img/ui-search-field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/ui-search-field.png -------------------------------------------------------------------------------- /resources/img/ui-tab--plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/ui-tab--plus.png -------------------------------------------------------------------------------- /resources/img/ui-text-field-clear-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/ui-text-field-clear-button.png -------------------------------------------------------------------------------- /resources/img/ui-text-field-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/ui-text-field-select.png -------------------------------------------------------------------------------- /resources/img/wrench-screwdriver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/resources/img/wrench-screwdriver.png -------------------------------------------------------------------------------- /scripts/build_package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/scripts/build_package -------------------------------------------------------------------------------- /scripts/build_packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/scripts/build_packages -------------------------------------------------------------------------------- /scripts/checkinstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/scripts/checkinstall.sh -------------------------------------------------------------------------------- /scripts/export-dt-ini.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/scripts/export-dt-ini.lua -------------------------------------------------------------------------------- /scripts/make-dt.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/scripts/make-dt.pl -------------------------------------------------------------------------------- /scripts/make-srctar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/scripts/make-srctar -------------------------------------------------------------------------------- /scripts/windeployqt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/scripts/windeployqt.sh -------------------------------------------------------------------------------- /share/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/share/README.rst -------------------------------------------------------------------------------- /share/memory_layouts/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/share/memory_layouts/README.rst -------------------------------------------------------------------------------- /share/memory_layouts/linux/v0.43.02.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/share/memory_layouts/linux/v0.43.02.ini -------------------------------------------------------------------------------- /share/memory_layouts/linux/v0.43.03.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/share/memory_layouts/linux/v0.43.03.ini -------------------------------------------------------------------------------- /share/memory_layouts/linux/v042.01.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/share/memory_layouts/linux/v042.01.ini -------------------------------------------------------------------------------- /share/memory_layouts/linux/v042.02.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/share/memory_layouts/linux/v042.02.ini -------------------------------------------------------------------------------- /share/memory_layouts/linux/v042.03.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/share/memory_layouts/linux/v042.03.ini -------------------------------------------------------------------------------- /share/memory_layouts/linux/v042.04.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/share/memory_layouts/linux/v042.04.ini -------------------------------------------------------------------------------- /share/memory_layouts/linux/v042.05.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/share/memory_layouts/linux/v042.05.ini -------------------------------------------------------------------------------- /share/memory_layouts/linux/v042.06.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/share/memory_layouts/linux/v042.06.ini -------------------------------------------------------------------------------- /share/memory_layouts/osx/v0.42.02_osx.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/share/memory_layouts/osx/v0.42.02_osx.ini -------------------------------------------------------------------------------- /share/memory_layouts/osx/v0.42.03_osx.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/share/memory_layouts/osx/v0.42.03_osx.ini -------------------------------------------------------------------------------- /share/memory_layouts/osx/v0.42.04_osx.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/share/memory_layouts/osx/v0.42.04_osx.ini -------------------------------------------------------------------------------- /share/memory_layouts/osx/v0.42.05_osx.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/share/memory_layouts/osx/v0.42.05_osx.ini -------------------------------------------------------------------------------- /share/memory_layouts/osx/v0.42.06_osx.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/share/memory_layouts/osx/v0.42.06_osx.ini -------------------------------------------------------------------------------- /share/memory_layouts/osx/v0.43.02_osx.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/share/memory_layouts/osx/v0.43.02_osx.ini -------------------------------------------------------------------------------- /share/memory_layouts/osx/v0.43.03_osx.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/share/memory_layouts/osx/v0.43.03_osx.ini -------------------------------------------------------------------------------- /share/memory_layouts/windows/v0.42.01_graphics.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/share/memory_layouts/windows/v0.42.01_graphics.ini -------------------------------------------------------------------------------- /share/memory_layouts/windows/v0.42.02_graphics.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/share/memory_layouts/windows/v0.42.02_graphics.ini -------------------------------------------------------------------------------- /share/memory_layouts/windows/v0.42.03_graphics.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/share/memory_layouts/windows/v0.42.03_graphics.ini -------------------------------------------------------------------------------- /share/memory_layouts/windows/v0.42.04_graphics.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/share/memory_layouts/windows/v0.42.04_graphics.ini -------------------------------------------------------------------------------- /share/memory_layouts/windows/v0.42.05_graphics.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/share/memory_layouts/windows/v0.42.05_graphics.ini -------------------------------------------------------------------------------- /share/memory_layouts/windows/v0.42.06_graphics.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/share/memory_layouts/windows/v0.42.06_graphics.ini -------------------------------------------------------------------------------- /share/memory_layouts/windows/v0.43.02_graphics.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/share/memory_layouts/windows/v0.43.02_graphics.ini -------------------------------------------------------------------------------- /share/memory_layouts/windows/v0.43.03_graphics.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/share/memory_layouts/windows/v0.43.03_graphics.ini -------------------------------------------------------------------------------- /share/memory_layouts/windows/v0.43.05_graphics.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/share/memory_layouts/windows/v0.43.05_graphics.ini -------------------------------------------------------------------------------- /src/aboutdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/aboutdialog.cpp -------------------------------------------------------------------------------- /src/activity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/activity.cpp -------------------------------------------------------------------------------- /src/activityevent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/activityevent.cpp -------------------------------------------------------------------------------- /src/attribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/attribute.cpp -------------------------------------------------------------------------------- /src/belief.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/belief.cpp -------------------------------------------------------------------------------- /src/caste.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/caste.cpp -------------------------------------------------------------------------------- /src/customcolor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/customcolor.cpp -------------------------------------------------------------------------------- /src/customprofession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/customprofession.cpp -------------------------------------------------------------------------------- /src/defaultfonts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/defaultfonts.cpp -------------------------------------------------------------------------------- /src/dfinstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/dfinstance.cpp -------------------------------------------------------------------------------- /src/dfinstancelinux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/dfinstancelinux.cpp -------------------------------------------------------------------------------- /src/dfinstancenix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/dfinstancenix.cpp -------------------------------------------------------------------------------- /src/dfinstanceosx.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/dfinstanceosx.mm -------------------------------------------------------------------------------- /src/dfinstancewindows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/dfinstancewindows.cpp -------------------------------------------------------------------------------- /src/docks/basetreedock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/docks/basetreedock.cpp -------------------------------------------------------------------------------- /src/docks/dwarfdetailsdock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/docks/dwarfdetailsdock.cpp -------------------------------------------------------------------------------- /src/docks/equipmentoverviewdock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/docks/equipmentoverviewdock.cpp -------------------------------------------------------------------------------- /src/docks/gridviewdock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/docks/gridviewdock.cpp -------------------------------------------------------------------------------- /src/docks/healthlegenddock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/docks/healthlegenddock.cpp -------------------------------------------------------------------------------- /src/docks/informationdock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/docks/informationdock.cpp -------------------------------------------------------------------------------- /src/docks/preferencesdock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/docks/preferencesdock.cpp -------------------------------------------------------------------------------- /src/docks/skilllegenddock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/docks/skilllegenddock.cpp -------------------------------------------------------------------------------- /src/docks/thoughtsdock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/docks/thoughtsdock.cpp -------------------------------------------------------------------------------- /src/dtstandarditem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/dtstandarditem.cpp -------------------------------------------------------------------------------- /src/dwarf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/dwarf.cpp -------------------------------------------------------------------------------- /src/dwarfdetailswidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/dwarfdetailswidget.cpp -------------------------------------------------------------------------------- /src/dwarfstats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/dwarfstats.cpp -------------------------------------------------------------------------------- /src/dwarftherapist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/dwarftherapist.cpp -------------------------------------------------------------------------------- /src/emotion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/emotion.cpp -------------------------------------------------------------------------------- /src/equipwarn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/equipwarn.cpp -------------------------------------------------------------------------------- /src/flagarray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/flagarray.cpp -------------------------------------------------------------------------------- /src/fortressentity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/fortressentity.cpp -------------------------------------------------------------------------------- /src/gamedatareader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/gamedatareader.cpp -------------------------------------------------------------------------------- /src/grid_view/attributecolumn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/grid_view/attributecolumn.cpp -------------------------------------------------------------------------------- /src/grid_view/beliefcolumn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/grid_view/beliefcolumn.cpp -------------------------------------------------------------------------------- /src/grid_view/cellcolors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/grid_view/cellcolors.cpp -------------------------------------------------------------------------------- /src/grid_view/currentjobcolumn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/grid_view/currentjobcolumn.cpp -------------------------------------------------------------------------------- /src/grid_view/customprofessioncolumn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/grid_view/customprofessioncolumn.cpp -------------------------------------------------------------------------------- /src/grid_view/equipmentcolumn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/grid_view/equipmentcolumn.cpp -------------------------------------------------------------------------------- /src/grid_view/flagcolumn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/grid_view/flagcolumn.cpp -------------------------------------------------------------------------------- /src/grid_view/gridview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/grid_view/gridview.cpp -------------------------------------------------------------------------------- /src/grid_view/happinesscolumn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/grid_view/happinesscolumn.cpp -------------------------------------------------------------------------------- /src/grid_view/healthcolumn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/grid_view/healthcolumn.cpp -------------------------------------------------------------------------------- /src/grid_view/highestmoodcolumn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/grid_view/highestmoodcolumn.cpp -------------------------------------------------------------------------------- /src/grid_view/itemtypecolumn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/grid_view/itemtypecolumn.cpp -------------------------------------------------------------------------------- /src/grid_view/laborcolumn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/grid_view/laborcolumn.cpp -------------------------------------------------------------------------------- /src/grid_view/professioncolumn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/grid_view/professioncolumn.cpp -------------------------------------------------------------------------------- /src/grid_view/rolecolumn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/grid_view/rolecolumn.cpp -------------------------------------------------------------------------------- /src/grid_view/skillcolumn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/grid_view/skillcolumn.cpp -------------------------------------------------------------------------------- /src/grid_view/spacercolumn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/grid_view/spacercolumn.cpp -------------------------------------------------------------------------------- /src/grid_view/superlaborcolumn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/grid_view/superlaborcolumn.cpp -------------------------------------------------------------------------------- /src/grid_view/trainedcolumn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/grid_view/trainedcolumn.cpp -------------------------------------------------------------------------------- /src/grid_view/traitcolumn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/grid_view/traitcolumn.cpp -------------------------------------------------------------------------------- /src/grid_view/unitkillscolumn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/grid_view/unitkillscolumn.cpp -------------------------------------------------------------------------------- /src/grid_view/viewcolumn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/grid_view/viewcolumn.cpp -------------------------------------------------------------------------------- /src/grid_view/viewcolumncolors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/grid_view/viewcolumncolors.cpp -------------------------------------------------------------------------------- /src/grid_view/viewcolumnset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/grid_view/viewcolumnset.cpp -------------------------------------------------------------------------------- /src/grid_view/viewcolumnsetcolors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/grid_view/viewcolumnsetcolors.cpp -------------------------------------------------------------------------------- /src/grid_view/vieweditordialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/grid_view/vieweditordialog.cpp -------------------------------------------------------------------------------- /src/grid_view/weaponcolumn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/grid_view/weaponcolumn.cpp -------------------------------------------------------------------------------- /src/gridviewdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/gridviewdialog.cpp -------------------------------------------------------------------------------- /src/histfigure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/histfigure.cpp -------------------------------------------------------------------------------- /src/iconchooser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/iconchooser.cpp -------------------------------------------------------------------------------- /src/importexportdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/importexportdialog.cpp -------------------------------------------------------------------------------- /src/item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/item.cpp -------------------------------------------------------------------------------- /src/itemammo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/itemammo.cpp -------------------------------------------------------------------------------- /src/itemarmorsubtype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/itemarmorsubtype.cpp -------------------------------------------------------------------------------- /src/iteminstrument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/iteminstrument.cpp -------------------------------------------------------------------------------- /src/itemtool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/itemtool.cpp -------------------------------------------------------------------------------- /src/itemuniform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/itemuniform.cpp -------------------------------------------------------------------------------- /src/itemweaponsubtype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/itemweaponsubtype.cpp -------------------------------------------------------------------------------- /src/laboroptimizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/laboroptimizer.cpp -------------------------------------------------------------------------------- /src/laboroptimizerplan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/laboroptimizerplan.cpp -------------------------------------------------------------------------------- /src/languages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/languages.cpp -------------------------------------------------------------------------------- /src/layoutcreator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/layoutcreator.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/mainwindow.cpp -------------------------------------------------------------------------------- /src/material.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/material.cpp -------------------------------------------------------------------------------- /src/memorylayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/memorylayout.cpp -------------------------------------------------------------------------------- /src/models/dwarfmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/models/dwarfmodel.cpp -------------------------------------------------------------------------------- /src/models/dwarfmodelproxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/models/dwarfmodelproxy.cpp -------------------------------------------------------------------------------- /src/multilabor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/multilabor.cpp -------------------------------------------------------------------------------- /src/notificationwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/notificationwidget.cpp -------------------------------------------------------------------------------- /src/notifierwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/notifierwidget.cpp -------------------------------------------------------------------------------- /src/optimizereditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/optimizereditor.cpp -------------------------------------------------------------------------------- /src/optionsmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/optionsmenu.cpp -------------------------------------------------------------------------------- /src/plant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/plant.cpp -------------------------------------------------------------------------------- /src/preference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/preference.cpp -------------------------------------------------------------------------------- /src/races.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/races.cpp -------------------------------------------------------------------------------- /src/reaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/reaction.cpp -------------------------------------------------------------------------------- /src/role.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/role.cpp -------------------------------------------------------------------------------- /src/rolecalcbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/rolecalcbase.cpp -------------------------------------------------------------------------------- /src/roledialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/roledialog.cpp -------------------------------------------------------------------------------- /src/rolestats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/rolestats.cpp -------------------------------------------------------------------------------- /src/rotatedheader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/rotatedheader.cpp -------------------------------------------------------------------------------- /src/scriptdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/scriptdialog.cpp -------------------------------------------------------------------------------- /src/selectparentlayoutdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/selectparentlayoutdialog.cpp -------------------------------------------------------------------------------- /src/skill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/skill.cpp -------------------------------------------------------------------------------- /src/squad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/squad.cpp -------------------------------------------------------------------------------- /src/statetableview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/statetableview.cpp -------------------------------------------------------------------------------- /src/superlabor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/superlabor.cpp -------------------------------------------------------------------------------- /src/syndrome.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/syndrome.cpp -------------------------------------------------------------------------------- /src/thought.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/thought.cpp -------------------------------------------------------------------------------- /src/trait.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/trait.cpp -------------------------------------------------------------------------------- /src/truncatingfilelogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/truncatingfilelogger.cpp -------------------------------------------------------------------------------- /src/uberdelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/uberdelegate.cpp -------------------------------------------------------------------------------- /src/uniform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/uniform.cpp -------------------------------------------------------------------------------- /src/unitbelief.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/unitbelief.cpp -------------------------------------------------------------------------------- /src/unitemotion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/unitemotion.cpp -------------------------------------------------------------------------------- /src/unithealth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/unithealth.cpp -------------------------------------------------------------------------------- /src/unitwound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/unitwound.cpp -------------------------------------------------------------------------------- /src/updater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/updater.cpp -------------------------------------------------------------------------------- /src/viewmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/viewmanager.cpp -------------------------------------------------------------------------------- /src/word.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/src/word.cpp -------------------------------------------------------------------------------- /thirdparty/qtcolorpicker-2.6/LGPL_EXCEPTION.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/thirdparty/qtcolorpicker-2.6/LGPL_EXCEPTION.txt -------------------------------------------------------------------------------- /thirdparty/qtcolorpicker-2.6/LICENSE.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/thirdparty/qtcolorpicker-2.6/LICENSE.LGPL -------------------------------------------------------------------------------- /thirdparty/qtcolorpicker-2.6/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/thirdparty/qtcolorpicker-2.6/README.TXT -------------------------------------------------------------------------------- /thirdparty/qtcolorpicker-2.6/qtcolorpicker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/thirdparty/qtcolorpicker-2.6/qtcolorpicker.cpp -------------------------------------------------------------------------------- /thirdparty/qtcolorpicker-2.6/qtcolorpicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/thirdparty/qtcolorpicker-2.6/qtcolorpicker.h -------------------------------------------------------------------------------- /ui/about.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/ui/about.ui -------------------------------------------------------------------------------- /ui/customprofession.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/ui/customprofession.ui -------------------------------------------------------------------------------- /ui/dwarfdetailsdock.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/ui/dwarfdetailsdock.ui -------------------------------------------------------------------------------- /ui/dwarfdetailswidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/ui/dwarfdetailswidget.ui -------------------------------------------------------------------------------- /ui/gridviewdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/ui/gridviewdialog.ui -------------------------------------------------------------------------------- /ui/gridviewdock.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/ui/gridviewdock.ui -------------------------------------------------------------------------------- /ui/importexportdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/ui/importexportdialog.ui -------------------------------------------------------------------------------- /ui/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/ui/mainwindow.ui -------------------------------------------------------------------------------- /ui/notification.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/ui/notification.ui -------------------------------------------------------------------------------- /ui/notifier.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/ui/notifier.ui -------------------------------------------------------------------------------- /ui/optimizereditor.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/ui/optimizereditor.ui -------------------------------------------------------------------------------- /ui/optionsmenu.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/ui/optionsmenu.ui -------------------------------------------------------------------------------- /ui/pendingchanges.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/ui/pendingchanges.ui -------------------------------------------------------------------------------- /ui/roledialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/ui/roledialog.ui -------------------------------------------------------------------------------- /ui/scannerdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/ui/scannerdialog.ui -------------------------------------------------------------------------------- /ui/scriptdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/ui/scriptdialog.ui -------------------------------------------------------------------------------- /ui/selectparentlayoutdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/ui/selectparentlayoutdialog.ui -------------------------------------------------------------------------------- /ui/superlabor.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/ui/superlabor.ui -------------------------------------------------------------------------------- /ui/vieweditor.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintermind/Dwarf-Therapist/HEAD/ui/vieweditor.ui --------------------------------------------------------------------------------