Thanks Rob. I appreciate your help.
MMBExplorer released!
Re: MMBExplorer released!
Hello everyone!
I've just made a new release that fixes a couple of bugs reported by Lurkio.
You can find it here: https://github.com/robcfg/retrotools/re ... tag/v1.2.2
I don't have any Windows machine at hand right now, so I cannot create a Windows executable file until mid-January. Sorry for the inconvenience!
Cheers,
Rob
I've just made a new release that fixes a couple of bugs reported by Lurkio.
You can find it here: https://github.com/robcfg/retrotools/re ... tag/v1.2.2
I don't have any Windows machine at hand right now, so I cannot create a Windows executable file until mid-January. Sorry for the inconvenience!
Cheers,
Rob
Re: MMBExplorer released!
I think you might have misunderstood one of my bug reports! I have already updated the Issue on Github.

Re: MMBExplorer released!
Actually yes and no 
Yes, I misunderstood your report, but the same error also happens when trying to insert several disk images from the file browser.
Soooo, I'll fix the issue you reported today.
Thanks for reporting it!

Yes, I misunderstood your report, but the same error also happens when trying to insert several disk images from the file browser.
Soooo, I'll fix the issue you reported today.
Thanks for reporting it!
Re: MMBExplorer released!
I think I finally nailed the fix for the issues Lurkio reported, so here's a new release: https://github.com/robcfg/retrotools/re ... tag/v1.2.3
Best regards,
Rob
Best regards,
Rob
Re: MMBExplorer released!
Another small release!
This time I fixed the deletion of selected files from a disk image.
The new release is available here: https://github.com/robcfg/retrotools/re ... tag/v1.2.4
Thanks to lurkio for reporting it!
This time I fixed the deletion of selected files from a disk image.
The new release is available here: https://github.com/robcfg/retrotools/re ... tag/v1.2.4
Thanks to lurkio for reporting it!
-
- Posts: 28
- Joined: Mon Mar 04, 2019 9:44 am
- Contact:
Re: MMBExplorer released!
Hi,
I am trying to build this on Ubuntu 20.04 following the instructions on the git page. I have installed FLTK 1.3 and 1.3 Dev (1.34) fine from default Ubuntu repo.
When i run make in the build folders i am getting lots of build errors (some of which below!) - any ideas what I am doing wrong?
[ 0%] Built target getscmversion
Scanning dependencies of target MMBExplorer
[ 14%] Building CXX object CMakeFiles/MMBExplorer.dir/src/MMBExplorer.cpp.o
[ 28%] Building CXX object CMakeFiles/MMBExplorer.dir/src/MMBFile.cpp.o
[ 42%] Building CXX object CMakeFiles/MMBExplorer.dir/src/MMBE_Commands.cpp.o
[ 57%] Building CXX object CMakeFiles/MMBExplorer.dir/src/MMBE_Gui.cpp.o
[ 71%] Building CXX object CMakeFiles/MMBExplorer.dir/src/MMBE_Callbacks.cpp.o
In file included from /home/twri/Downloads/6.BBC/MMB/retrotools/mmbexplorer/src/MMBE_Callbacks.cpp:4:
/home/twri/Downloads/6.BBC/MMB/retrotools/mmbexplorer/src/MMBE_Callbacks.h:35:29: error: ‘bool ChooseFilename’ redeclared as different kind of entity
35 | bool ChooseFilename( std::vector<std::string>& fileNames, const std::string& filter, const std::string& preset, bool bSaveAsDialog, bool bDirectory = false );
| ^~~~~~
In file included from /home/twri/Downloads/6.BBC/MMB/retrotools/mmbexplorer/src/MMBE_Callbacks.cpp:4:
/home/twri/Downloads/6.BBC/MMB/retrotools/mmbexplorer/src/MMBE_Callbacks.h:34:8: note: previous declaration ‘bool ChooseFilename(std::string&, const string&, const string&, bool, bool)’
34 | bool ChooseFilename( std::string& fileName, const std::string& filter, const std::string& preset, bool bSaveAsDialog, bool bDirectory = false );
| ^~~~~~~~~~~~~~
/home/twri/Downloads/6.BBC/MMB/retrotools/mmbexplorer/src/MMBE_Callbacks.cpp:24:6: note: candidate expects 5 arguments, 4 provided
<-- snip -->
make[2]: *** [CMakeFiles/MMBExplorer.dir/build.make:115: CMakeFiles/MMBExplorer.dir/src/MMBE_Callbacks.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:105: CMakeFiles/MMBExplorer.dir/all] Error 2
make: *** [Makefile:84: all] Error 2
cheers
shifters
I am trying to build this on Ubuntu 20.04 following the instructions on the git page. I have installed FLTK 1.3 and 1.3 Dev (1.34) fine from default Ubuntu repo.
When i run make in the build folders i am getting lots of build errors (some of which below!) - any ideas what I am doing wrong?
[ 0%] Built target getscmversion
Scanning dependencies of target MMBExplorer
[ 14%] Building CXX object CMakeFiles/MMBExplorer.dir/src/MMBExplorer.cpp.o
[ 28%] Building CXX object CMakeFiles/MMBExplorer.dir/src/MMBFile.cpp.o
[ 42%] Building CXX object CMakeFiles/MMBExplorer.dir/src/MMBE_Commands.cpp.o
[ 57%] Building CXX object CMakeFiles/MMBExplorer.dir/src/MMBE_Gui.cpp.o
[ 71%] Building CXX object CMakeFiles/MMBExplorer.dir/src/MMBE_Callbacks.cpp.o
In file included from /home/twri/Downloads/6.BBC/MMB/retrotools/mmbexplorer/src/MMBE_Callbacks.cpp:4:
/home/twri/Downloads/6.BBC/MMB/retrotools/mmbexplorer/src/MMBE_Callbacks.h:35:29: error: ‘bool ChooseFilename’ redeclared as different kind of entity
35 | bool ChooseFilename( std::vector<std::string>& fileNames, const std::string& filter, const std::string& preset, bool bSaveAsDialog, bool bDirectory = false );
| ^~~~~~
In file included from /home/twri/Downloads/6.BBC/MMB/retrotools/mmbexplorer/src/MMBE_Callbacks.cpp:4:
/home/twri/Downloads/6.BBC/MMB/retrotools/mmbexplorer/src/MMBE_Callbacks.h:34:8: note: previous declaration ‘bool ChooseFilename(std::string&, const string&, const string&, bool, bool)’
34 | bool ChooseFilename( std::string& fileName, const std::string& filter, const std::string& preset, bool bSaveAsDialog, bool bDirectory = false );
| ^~~~~~~~~~~~~~
/home/twri/Downloads/6.BBC/MMB/retrotools/mmbexplorer/src/MMBE_Callbacks.cpp:24:6: note: candidate expects 5 arguments, 4 provided
<-- snip -->
make[2]: *** [CMakeFiles/MMBExplorer.dir/build.make:115: CMakeFiles/MMBExplorer.dir/src/MMBE_Callbacks.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:105: CMakeFiles/MMBExplorer.dir/all] Error 2
make: *** [Makefile:84: all] Error 2
cheers
shifters
Re: MMBExplorer released!
Hi,
I just fixed a couple of missing includes and it's now working for me on Mint 20.
Please update your repository and try to compile it now.
I just fixed a couple of missing includes and it's now working for me on Mint 20.
Please update your repository and try to compile it now.
-
- Posts: 28
- Joined: Mon Mar 04, 2019 9:44 am
- Contact:
Re: MMBExplorer released!
Thanks!
It now builds and runs great on ubuntu 20.04
Many thanks for building this tool (especially cross platform!)
cheers
shifters
It now builds and runs great on ubuntu 20.04
Many thanks for building this tool (especially cross platform!)
cheers
shifters
Re: MMBExplorer released!
You're welcome!
Compilers can be tricky, that's also a good point for cross platform code. If you manage to get it working on different systems, it will most probably work everywhere
Cheers,
Rob
Compilers can be tricky, that's also a good point for cross platform code. If you manage to get it working on different systems, it will most probably work everywhere

Cheers,
Rob
Re: MMBExplorer released!
Hi Rob,
I had the same trouble as Shifters74 on a new (to me) laptop. I was sure that it was something I was doing wrong and didn't therefore didn't want to ask for help. With your changes it works fine for me now.
For your info, I'm using Linux Mint 20.1
Cheers.
I had the same trouble as Shifters74 on a new (to me) laptop. I was sure that it was something I was doing wrong and didn't therefore didn't want to ask for help. With your changes it works fine for me now.
For your info, I'm using Linux Mint 20.1
Cheers.
BBC Model B
"From little Acorns...."
"From little Acorns...."
Re: MMBExplorer released!
Hi Becky,
The fixes to the bugs were done while I was on holiday, so I couldn't test them properly but on MacOS, and it seems Linux compilers do treat include files in slightly different manners, hence the compilation errors.
Please, don't hesitate to ask if you have any problem with my software, I'll be glad to help!
Cheers,
Rob
The fixes to the bugs were done while I was on holiday, so I couldn't test them properly but on MacOS, and it seems Linux compilers do treat include files in slightly different manners, hence the compilation errors.
Please, don't hesitate to ask if you have any problem with my software, I'll be glad to help!
Cheers,
Rob
Re: MMBExplorer released!
Thanks Rob. I do like to RTFM / have a good go before asking for help.

Cheers.
BBC Model B
"From little Acorns...."
"From little Acorns...."