Coder Social home page Coder Social logo

iconnconfig's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

Forkers

jpcima sangrepura

iconnconfig's Issues

Branch created

@trebmuh I have created a branch v02-beta. You should stick to that branch. Currently I implement some new functionality in head which is not ready for release.

Crashing Damage

I noticed in the release notes problems with reading settings from (device) flash or restoring (device) to factory default the application might crash:

known problems

in general error handling is currently nearly not implemented. I still don't have a concept
(1) after reading the settings from flash or restoring to factory default, the application might crash - I'm still not sure what the problem is.

Is there any risk of corrupting the device or otherwise leaving it in an unstable state?

FWIW the notes say:

v.01.
Linux
Tested only with MIO10

Maybe they need to be updated? I believe it's tested OK with iConnectMIDI4+ etc.

iConnConfig and LibraZiK-2

Hi @dehnhardt ,
usually, I'm sending an email to the upstream developer for that but I can't find one for you. Hence this "issue".

Just to let you know that, as of today, iConnConfig 0.1~gitbd46c3c has it the LibraZiK-2's users repo.

Thanks for this software!

PS: feel free to close this "issue" when you have read it.

GUI questions

Hi @dehnhardt
Here are a few screenshots I took from the software:
iconnconfig-1
iconnconfig-2
iconnconfig-3

I'm wondering 2 things:

  1. on the 2nd screenshot, we can see that some parts are not translated (and they doesn't look to be a part of the .ts file)
  2. there is no picture/image/icon and I'm wondering if this is expected or if something is wrong.

please, note that I don't have any icon devices at hand, and I'm mainly trying to get this software packaged to include it in my linux-audio distribution called LibraZiK

Device Detection

@trebmuh I can not open the last Issue anymore, so I create a new one.
one abbreviation wasn't enough, so I abbreviated "Nom du périph." (hopefully that's true) and then made the window a little wider. I suppose, if the French names fit, most other languages would fit as well ;-)
Here is another screenshot.
devicedetection2

Build dependencies

After following the build instructions I get an error during compilation with qt4.8:
In file included from src/main.cpp:1:0: src/miomain.h:8:30: fatal error: QCommandLineParser: Datei oder Verzeichnis nicht gefunden #include <QCommandLineParser>
From searching online I get the impression, that QCommandLineParser was introduced with qt5.2.

Compiling device.o fails

Ubuntu 16.04, Qmake 5.5 using qmake -qt=5,

(qmake -qt=5 -v confirms using qmake version 3.0 and qt version 5.5.1)

getting a set of two errors:

src/device.cpp: In member function ‘void Device::addCommandToStructure(Command, DeviceStructureContainer*)’:
src/device.cpp:270:30: error: no matching function for call to ‘std::map<unsigned int, std::shared_ptr<DeviceStructureContainer> >::insert(std::pair<Command, DeviceStructureContainer*>)’
      cmd, structureContainer));
                              ^
In file included from /usr/include/c++/5/map:61:0,
                 from src/device.h:8,
                 from src/device.cpp:1:

and again

/usr/include/c++/5/bits/stl_map.h:616:32: error: no type named ‘type’ in ‘struct std::enable_if<false, void>’
       template<typename _Pair, typename = typename
                                ^

With lots of warnings like this:

s/stl_map.h:616:32: error: no type named ‘type’ in ‘struct std::enable_if<false, void>’
       template<typename _Pair, typename = typename
                                ^
/usr/include/c++/5/bits/stl_map.h:633:7: note: candidate: void std::map<_Key, _Tp, _Compare, _Alloc>::insert(std::initializer_list<std::pair<const _Key, _Tp> >) [with _Key = unsigned int; _Tp = std::shared_ptr<DeviceStructureContainer>; _Compare = std::less<unsigned int>; _Alloc = std::allocator<std::pair<const unsigned int, std::shared_ptr<DeviceStructureContainer> > >]
       insert(std::initializer_list<value_type> __list)
       ^
/usr/include/c++/5/bits/stl_map.h:633:7: note:   no known conversion for argument 1 from ‘std::pair<Command, DeviceStructureContainer*>’ to ‘std::initializer_list<std::pair<const unsigned int, std::shared_ptr<DeviceStructureContainer> > >’
/usr/include/c++/5/bits/stl_map.h:662:7: note: candidate: std::map<_Key, _Tp, _Compare, _Alloc>::iterator std::map<_Key, _Tp, _Compare, _Alloc>::insert(std::map<_Key, _Tp, _Compare, _Alloc>::const_iterator, const value_type&) [with _Key = unsigned int; _Tp = std::shared_ptr<DeviceStructureContainer>; _Compare = std::less<unsigned int>; _Alloc = std::allocator<std::pair<const unsigned int, std::shared_ptr<DeviceStructureContainer> > >; std::map<_Key, _Tp, _Compare, _Alloc>::iterator = std::_Rb_tree_iterator<std::pair<const unsigned int, std::shared_ptr<DeviceStructureContainer> > >; std::map<_Key, _Tp, _Compare, _Alloc>::const_iterator = std::_Rb_tree_const_iterator<std::pair<const unsigned int, std::shared_ptr<DeviceStructureContainer> > >; std::map<_Key, _Tp, _Compare, _Alloc>::value_type = std::pair<const unsigned int, std::shared_ptr<DeviceStructureContainer> >]
       insert(const_iterator __position, const value_type& __x)
       ^
/usr/include/c++/5/bits/stl_map.h:662:7: note:   candidate expects 2 arguments, 1 provided
/usr/include/c++/5/bits/stl_map.h:673:9: note: candidate: template<class _Pair, class> std::map<_Key, _Tp, _Compare, _Alloc>::iterator std::map<_Key, _Tp, _Compare, _Alloc>::insert(std::map<_Key, _Tp, _Compare, _Alloc>::const_iterator, _Pair&&) [with _Pair = _Pair; <template-parameter-2-2> = <template-parameter-1-2>; _Key = unsigned int; _Tp = std::shared_ptr<DeviceStructureContainer>; _Compare = std::less<unsigned int>; _Alloc = std::allocator<std::pair<const unsigned int, std::shared_ptr<DeviceStructureContainer> > >]
         insert(const_iterator __position, _Pair&& __x)
         ^
/usr/include/c++/5/bits/stl_map.h:673:9: note:   template argument deduction/substitution failed:
src/device.cpp:270:30: note:   cannot convert ‘std::pair<Command, DeviceStructureContainer*>(cmd, structureContainer)’ (type ‘std::pair<Command, DeviceStructureContainer*>’) to type ‘std::map<unsigned int, std::shared_ptr<DeviceStructureContainer> >::const_iterator {aka std::_Rb_tree_const_iterator<std::pair<const unsigned int, std::shared_ptr<DeviceStructureContainer> > >}’
      cmd, structureContainer));

EDIT: compiling the release from February does lead to successful compile btw

Support for MIO4

I was wondering if you could add support for MIO4? It's pretty much the same as the MIO10 but with less ports.

Please let me know if there is anything I can do to help.

Unfortunately, my C++ is pretty poor, but if you point me in the right direction, I'll have a go. (I have compiled it from source and poked around, but didn't get very far).

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.