Bay 12 Games Forum

Please login or register.

Login with username, password and session length
Advanced search  
Pages: 1 ... 199 200 [201] 202 203 ... 222

Author Topic: Dwarf Therapist (Maintained Branch) v.37.0 | DF 42.06  (Read 971778 times)

PeridexisErrant

  • Bay Watcher
  • Dai stihó, Hrasht.
    • View Profile
Re: Dwarf Therapist (Maintained Branch) v.37.0 | DF 42.06
« Reply #3000 on: March 13, 2017, 06:16:16 pm »

@PleaseBugMeNot
PM me when there's a new version you want in my pack, and I'll update then - I don't want to ship something experimental or broken by mistake.
Logged
I maintain the DF Starter Pack - over a million downloads and still counting!
 Donations here.

Heretic

  • Bay Watcher
    • View Profile
Re: Dwarf Therapist (Maintained Branch) v.37.0 | DF 42.06
« Reply #3001 on: March 14, 2017, 02:50:32 am »

PeridexisErrant - will you include last AV into pack?
srry for offtopic
Logged

Urist Tilaturist

  • Bay Watcher
  • The most dwarven name possible.
    • View Profile
Re: Dwarf Therapist (Maintained Branch) v.37.0 | DF 42.06
« Reply #3002 on: March 14, 2017, 05:48:53 pm »

"maintained branch"

"version 42.06"

Choose one.

Joking apart, is there a version of DT available yet which is compatible with the version of the game which released last July?
« Last Edit: March 14, 2017, 05:56:18 pm by Urist Tilaturist »
Logged
On the item is an image of a dwarf and an elephant. The elephant is striking down the dwarf.

For old times' sake.

PeridexisErrant

  • Bay Watcher
  • Dai stihó, Hrasht.
    • View Profile
Re: Dwarf Therapist (Maintained Branch) v.37.0 | DF 42.06
« Reply #3003 on: March 14, 2017, 08:11:48 pm »

PeridexisErrant - will you include last AV into pack?
I'm not sure what you mean.

"maintained branch" / "version 42.0": Choose one.

Joking apart, is there a version of DT available yet which is compatible with the version of the game which released last July?
Yes - this version is compatible with 32bit 43.05 if you just download the memory layout from github.  And there's an experimental 64-bit version just a few posts further up!
Logged
I maintain the DF Starter Pack - over a million downloads and still counting!
 Donations here.

lethosor

  • Bay Watcher
    • View Profile
Re: Dwarf Therapist (Maintained Branch) v.37.0 | DF 42.06
« Reply #3004 on: March 14, 2017, 08:26:43 pm »

"maintained branch"

"version 42.06"
To clarify, when DT 37.0 was released, the newest version of DF was 0.42.06, and I think DT 37 only includes layouts for DF 0.42.06 and older by default, but it still works with newer DF versions (given appropriate layouts). In other words, there wasn't a need to build a new DT version, so the thread title didn't get updated.
Logged
DFHack - Dwarf Manipulator (Lua) - DF Wiki talk

There was a typo in the siegers' campfire code. When the fires went out, so did the game.

Snafu

  • Bay Watcher
    • View Profile
Re: Dwarf Therapist (Maintained Branch) v.37.0 | DF 42.06
« Reply #3005 on: March 14, 2017, 08:30:37 pm »

@PleaseBugMN, an issue: (tame, penned) butcherable animals set to be butchered from your x64 DT version will set to be caged, not butchered

Certainly this bug is present WRT cattle cow/bull; possibly also extant with fowl cock/hen etc for all domesticat(ed/able) livestock; I haven't tested..
Logged

Urist Tilaturist

  • Bay Watcher
  • The most dwarven name possible.
    • View Profile
Re: Dwarf Therapist (Maintained Branch) v.37.0 | DF 42.06
« Reply #3006 on: March 15, 2017, 07:44:34 am »

Dwarf Therapist isn't starting on 64 bit Linux. I went through this process:

git clone https://github.com/Hello71/Dwarf-Therapist.git
mkdir Dwarf-Therapist-build
cd Dwarf-Therapist-build
cmake ../Dwarf-Therapist
ln -s ../Dwarf-Therapist/share .
make -j$(nproc)
./DwarfTherapist

and got an this error at the "cmake ../Dwarf-Therapist" stage:

CMake Error at CMakeLists.txt:8 (find_package):
  By not providing "FindQt5.cmake" in CMAKE_MODULE_PATH this project has
  asked CMake to find a package configuration file provided by "Qt5", but
  CMake did not find one.

  Could not find a package configuration file provided by "Qt5" with any of
  the following names:

    Qt5Config.cmake
    qt5-config.cmake

  Add the installation prefix of "Qt5" to CMAKE_PREFIX_PATH or set "Qt5_DIR"
  to a directory containing one of the above files.  If "Qt5" provides a
  separate development package or SDK, be sure it has been installed.


-- Configuring incomplete, errors occurred!
See also "/home/linux/Dwarf-Therapist-build/CMakeFiles/CMakeOutput.log".
Logged
On the item is an image of a dwarf and an elephant. The elephant is striking down the dwarf.

For old times' sake.

se5a

  • Bay Watcher
    • View Profile
Re: Dwarf Therapist (Maintained Branch) v.37.0 | DF 42.06
« Reply #3007 on: March 15, 2017, 02:16:57 pm »

try this

new instructions:

Code: [Select]
git clone https://github.com/Hello71/Dwarf-Therapist.git
mkdir Dwarf-Therapist-build
cd Dwarf-Therapist-build
cmake ../Dwarf-Therapist
ln -s ../Dwarf-Therapist/share .
make -j$(nproc)
./DwarfTherapist

if you get an error like the following:
Code: [Select]
CMake Error at /usr/lib/x86_64-linux-gnu/cmake/Qt5/Qt5Config.cmake:26 (find_package):
  Could not find a package configuration file provided by "Qt5Qml" with any
  of the following names:

    Qt5QmlConfig.cmake
    qt5qml-config.cmake

  Add the installation prefix of "Qt5Qml" to CMAKE_PREFIX_PATH or set
  "Qt5Qml_DIR" to a directory containing one of the above files.  If "Qt5Qml"
  provides a separate development package or SDK, be sure it has been
  installed.

Then try:
Code: [Select]
sudo apt-get install qt5-qmake qtbase5-dev qtbase5-dev-tools qtdeclarative5-dev # Qt 5if the error mentions QT4 try:
Code: [Select]
sudo apt-get install qt4-qmake libqt4-dev # Qt 4
then try the cmake ../Dwarf-Therapist again.

This is in the build instructions for linux in spinters fork.
Logged

g2knee

  • Bay Watcher
    • View Profile
Re: Dwarf Therapist (Maintained Branch) v.37.0 | DF 42.06
« Reply #3008 on: March 15, 2017, 02:54:58 pm »

Sorry if I'm a noob -- but why doesn't the 'latest version' contain the most recent memory layout?
Logged

Urist Tilaturist

  • Bay Watcher
  • The most dwarven name possible.
    • View Profile
Re: Dwarf Therapist (Maintained Branch) v.37.0 | DF 42.06
« Reply #3009 on: March 15, 2017, 04:04:34 pm »

Alright, Dwarf Therapist works now. Thank you.
Logged
On the item is an image of a dwarf and an elephant. The elephant is striking down the dwarf.

For old times' sake.

PleaseBugMeNot

  • Bay Watcher
    • View Profile
Re: Dwarf Therapist (Maintained Branch) v.37.0 | DF 42.06
« Reply #3010 on: March 15, 2017, 06:01:43 pm »

@PleaseBugMN, an issue: (tame, penned) butcherable animals set to be butchered from your x64 DT version will set to be caged, not butchered

Certainly this bug is present WRT cattle cow/bull; possibly also extant with fowl cock/hen etc for all domesticat(ed/able) livestock; I haven't tested..

Can you tell me if that is happening with this version too: https://dl.dropboxusercontent.com/u/94651132/DwarfTherapist4_35_2.zip

Tnx! It is just the exe with some fixes and changes.
Logged

Snafu

  • Bay Watcher
    • View Profile
Re: Dwarf Therapist (Maintained Branch) v.37.0 | DF 42.06
« Reply #3011 on: March 15, 2017, 07:57:48 pm »

=
Can you tell me if that is happening with this version too: https://dl.dropboxusercontent.com/u/94651132/DwarfTherapist4_35_2.zip

Tnx! It is just the exe with some fixes and changes.
Umm.. access needed to test pls ;)
Logged

PleaseBugMeNot

  • Bay Watcher
    • View Profile
Re: Dwarf Therapist (Maintained Branch) v.37.0 | DF 42.06
« Reply #3012 on: March 16, 2017, 07:38:45 am »

=
Can you tell me if that is happening with this version too: https://dl.dropboxusercontent.com/u/94651132/DwarfTherapist4_35_2.zip

Tnx! It is just the exe with some fixes and changes.
Umm.. access needed to test pls ;)

Ok, new link: https://www.dropbox.com/s/y0k4odt3356mc2y/DwarfTherapist4_35_2.zip?dl=0

Close the popup for signup and click download below.
Logged

Snafu

  • Bay Watcher
    • View Profile
Re: Dwarf Therapist (Maintained Branch) v.37.0 | DF 42.06
« Reply #3013 on: March 16, 2017, 10:58:56 am »

OK, that new exe seems to have fixed the issue TVM

Not an urgency, but would it be possible to add a 'pastured' category to the grid, especially since we already have 'caged'?

Each cell would have two background colours indicating whether the animal needs grazing or not, then some sort of checkmark overlay to indicate whether it's actually pastured or not

This should make hunting through your massive stock of immigrant/caged beasties quite a bit easier.. ;)
Logged

Amostubal

  • Bay Watcher
    • View Profile
Re: Dwarf Therapist (Maintained Branch) v.37.0 | DF 42.06
« Reply #3014 on: March 16, 2017, 01:19:28 pm »

Maybe I'm just confused, is there a link here to a 43.05 64x version of DT?
Logged
Legendary Dwarf Fortress
Legendary Discord Group
"...peering into the darkness behind the curtains, evokes visions of pixies being chased by dragons while eating cupcakes made of coral iced with liquid fire while their hearts burn out with unknown plant substances..." - a quote from the diaries of Amostubal
Pages: 1 ... 199 200 [201] 202 203 ... 222