Closed schistkicker closed 3 years ago
It looks like there is a window covering the main outputs. Notice the blue 4 way arrows. You could try to reset the profile which would undo any windows and GUI stuff.
resetProfile resetProfile() Reloads your entire Mudlet profile - as if you've just opened it. All UI elements will be cleared, so this useful when you're coding your UI. Example resetProfile() The function used to require input from the game to work, but as of Mudlet 3.20 that is no longer the case.
Note Note: Don't put resetProfile() in the a script-item in the script editor as the script will be reloaded by resetProfile() as well better use
lua resetProfile() in your commandline or make an Alias containing resetProfile().
Thank you for the option. I entered the code to reset the profile and restarted but screen looks the same, all it seemed to do was reset the map number from 10 down to 5. I moved the blue arrows you mentioned (I think the correct ones) and it looks like the main window section is just super narrow column width, could that be the issue?
On Thu, Feb 18, 2021 at 5:23 PM Leigheas notifications@github.com wrote:
It looks like there is a window covering the main outputs. Notice the blue 4 way arrows. You could try to reset the profile which would undo any windows and GUI stuff.
resetProfile resetProfile() Reloads your entire Mudlet profile - as if you've just opened it. All UI elements will be cleared, so this useful when you're coding your UI. Example resetProfile() The function used to require input from the game to work, but as of Mudlet 3.20 that is no longer the case.
Note Note: Don't put resetProfile() in the a script-item in the script editor as the script will be reloaded by resetProfile() as well better use
lua resetProfile() in your commandline or make an Alias containing resetProfile().
— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/xekon/AardwolfMudlet/issues/7#issuecomment-781673830, or unsubscribe https://github.com/notifications/unsubscribe-auth/AIFH5BF5RP6P7BQA3OMSKSTS7WHN3ANCNFSM4X3GRHSQ .
Image showing blue 4-way arrows on left didn't show here it looks like, this is what I was talking about. It seems resize the status bars at the bottom too.
WOA! very strange indeed. I am also a Linux user, how did you install Mudlet 4.10.1? did you download the appimage from the mudlet site or build it your self?
If I can reproduce this I can see if there is anything obvious that is the issue, if I cannot figure it out then the wonderful developers on the Mudlet Discord can probably help.
I built it myself. Please let me know if you can recreate it and what you find out, otherwise I'll work through the Discord.
On Fri, May 14, 2021 at 1:21 PM xekon @.***> wrote:
WOA! very strange indeed. I am also a Linux user, how did you install Mudlet 4.10.1? did you download the appimage from the mudlet site or build it your self?
If I can reproduce this I can see if there is anything obvious that is the issue, if I cannot figure it out then the wonderful developers on the Mudlet Discord can probably help.
— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/xekon/AardwolfMudlet/issues/7#issuecomment-841389723, or unsubscribe https://github.com/notifications/unsubscribe-auth/AIFH5BEKF3ESGNXNYJEFNE3TNVL2RANCNFSM4X3GRHSQ .
I was unable to reproduce the issue on Ubuntu 20.04 with Plasma/wayland.
Here is my complete install routine, I just built and installed mudlet today. I am not sure if it will help, because I am using Ubuntu...
# install dependencies:
sudo apt install build-essential cmake git liblua5.1-dev zlib1g-dev libhunspell-dev libpcre3-dev \
libzip-dev libboost-dev libyajl-dev libpulse-dev lua-rex-pcre lua-filesystem lua-zip \
lua-sql-sqlite3 qt5-default qtmultimedia5-dev qttools5-dev luarocks ccache libpugixml-dev \
libqt5texttospeech5-dev qtspeech5-flite-plugin qtspeech5-speechd-plugin libqt5opengl5-dev \
lua5.1 libhunspell-dev libglu1-mesa-dev mesa-common-dev libglib2.0-dev libboost-all-dev \
libgstreamer1.0-dev qt5keychain-dev libsecret-1-dev
# install more dependencies:
sudo luarocks install lcf
sudo luarocks install luautf8
sudo luarocks install lua-yajl
# Download mudlet source
mkdir -p ~/source && cd ~/source
git clone --recursive https://github.com/Mudlet/Mudlet.git
mkdir ~/source/Mudlet/build && cd ~/source/Mudlet/build
# build mudlet
qmake ../src/mudlet.pro
make -j `nproc`
sudo make install
sudo cp ../mudlet.png /usr/share/pixmaps
sudo cp ../mudlet.desktop /usr/share/applications
# Download AardwolfMudlet:
mkdir -p ~/.config/mudlet/profiles && cd ~/.config/mudlet/profiles
git clone https://github.com/xekon/AardwolfMudlet Aardwolf
Install and configure AardwolfMudlet as shown in the Installation section at the top: https://github.com/xekon/AardwolfMudlet
Sorry I could not reproduce and be more help, I am hoping that maybe your just missing an optional dependency that causes this weirdness.
This method worked or seems to be working now, thank you for the detailed explanation. I did a full purge and removal of any remnants of the previous build and install. I'm not sure what the difference was from this how-to versus the previous build attempts but something obviously was not the same. I'm hopeful a restart or update to other software doesn't break it...
Again thank you for taking the time to help with this!
On Fri, May 14, 2021 at 11:55 PM xekon @.***> wrote:
I was unable to reproduce the issue on Ubuntu 20.04 with Plasma/wayland.
Here is my complete install routine, I just built and installed mudlet today. I am not sure if it will help, because I am using Ubuntu...
install dependencies:
sudo apt install build-essential cmake git liblua5.1-dev zlib1g-dev libhunspell-dev libpcre3-dev \ libzip-dev libboost-dev libyajl-dev libpulse-dev lua-rex-pcre lua-filesystem lua-zip \ lua-sql-sqlite3 qt5-default qtmultimedia5-dev qttools5-dev luarocks ccache libpugixml-dev \ libqt5texttospeech5-dev qtspeech5-flite-plugin qtspeech5-speechd-plugin libqt5opengl5-dev \ lua5.1 libhunspell-dev libglu1-mesa-dev mesa-common-dev libglib2.0-dev libboost-all-dev \ libgstreamer1.0-dev qt5keychain-dev libsecret-1-dev
install more dependencies:
sudo luarocks install lcf sudo luarocks install luautf8 sudo luarocks install lua-yajl
Download mudlet source
mkdir -p ~/source && cd ~/source git clone --recursive https://github.com/Mudlet/Mudlet.git mkdir ~/source/Mudlet/build && cd ~/source/Mudlet/build
build mudlet
qmake ../src/mudlet.pro make -j
nproc
sudo make install sudo cp ../mudlet.png /usr/share/pixmaps sudo cp ../mudlet.desktop /usr/share/applicationsDownload AardwolfMudlet:
mkdir -p ~/.config/mudlet/profiles && cd ~/.config/mudlet/profiles git clone https://github.com/xekon/AardwolfMudlet Aardwolf
Install and configure AardwolfMudlet as shown in the Installation section at the top: https://github.com/xekon/AardwolfMudlet
Sorry I could not reproduce and be more help, I am hoping that maybe your just missing an optional dependency that causes this weirdness.
— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/xekon/AardwolfMudlet/issues/7#issuecomment-841594896, or unsubscribe https://github.com/notifications/unsubscribe-auth/AIFH5BDLZG2BYYYU2IIAZ23TNXWBXANCNFSM4X3GRHSQ .
no problem, happy it worked!
Hello, I have this working on Windows but following same instructions/procedure in Linux Mint 20 using Mudlet 4.10.1 causes the main feed window section to be missing/not display (screenshot attached). Deleting profile folder in ~/.config/mudlet/ eliminates the issue but reinstall of this module recreates the problem. It also replicates across other profiles. Any thoughts on how to fix it?