AtmoWin - improvement discussion (2 Viewers)

B

BassFan

Guest
@azzuro can you post, your last version of AtmowinA.exe ( /MD build : without library )

Do not understand?
You can not create a non static Application with Runtime!
which i have create this morning is the same Version only with Runtime Support. /MT

greets
 

azzuro

Test Group
  • Team MediaPortal
  • May 10, 2007
    9,984
    5,663
    France - IDF
    Home Country
    France France
    ah, is the same ...
    ok, your version with /MT working fine.
    but i must try the /MD.

    PS : i have already installed VC++ 2010, and the minimum version working for me is VC++2012
     

    azzuro

    Test Group
  • Team MediaPortal
  • May 10, 2007
    9,984
    5,663
    France - IDF
    Home Country
    France France
    Retested your /MD version working fine now.
    but we must have Profile namesaved, before create channel assignement ?
     
    B

    BassFan

    Guest
    Retested your /MD version working fine now.
    but we must have Profile namesaved, before create channel assignement ?

    Code:
    case IDC_BU_ADD:
        {
            HWND listBox = getDlgItem(IDC_LST_MAPPINGS);
            CLanguage *Lng = new CLanguage;
            if(ListBox_GetCount(listBox)>=10)
            {
                MessageBox(this->m_hDialog,Lng->sMessagesText[9], Lng->sMessagesText[1],MB_ICONINFORMATION | MB_OK);
            }
            else
            {
                CAtmoChannelAssignment *ca = new CAtmoChannelAssignment();
                int count = ListBox_GetCount(listBox);
                char buffer[64], buffer2[64];
     
                ctrl = getDlgItem(IDC_EDT_NAME);
     
                for(int i=0; i<count; i++)
                {
                    ListBox_GetText(listBox, i, buffer2);
                    Edit_GetText(ctrl, buffer, sizeof(buffer));
     
                    if (string(buffer) == string(buffer2))
                    {
                        MessageBox( this->m_hDialog, Lng->sMessagesText[10], Lng->sMessagesText[1], MB_ICONINFORMATION);
                        return ATMO_FALSE;
                        break;
                    }
                }
     
                SaveAssignment(ca);
     
                int index = ListBox_AddString( listBox, ca->getName() );
                ListBox_SetItemData(listBox,index,(LPARAM)ca);
                ListBox_SetCurSel(listBox,index);
            }
            break;
        }

    After you has add a Profile then assigment are saved :)
    see SaveAssignment(ca);

    greets
     
    Last edited by a moderator:
    B

    BassFan

    Guest
    should be fix the Effect mode Switch after playing a Video with MP and Change any in AtmoWin
    the last Effect should then not Change after click on OK! button to..

    Language Files from Archive above is required !!
    Language Files add after delete old Archive to.

    greets
     
    Last edited by a moderator:
    B

    BassFan

    Guest
    should be fix the Effect mode Switch after playing a Video with MP and Change any in AtmoWin
    the last Effect should then not Change after click on OK! button to..

    Language Files from Archive above is required !!

    greets


    if that working?
    so i can delete the old Archive to..

    is ok have delete old Archive so use this now..

    greets
     
    Last edited by a moderator:

    Sebastiii

    Development Group
  • Team MediaPortal
  • November 12, 2007
    16,583
    10,403
    France
    Home Country
    France France
    Hi, i can't test all atmowin it didn't start here on my win8.1 lol.
    To make it work with no crash, i have take source from 1.0.0.4 Tagged branch and manually apply code from Nevcairiel :
    With that Fork branch, i'm able to start atmowin and get no crash.

    Attached is the patch change i have made and it seems for me, the Screen selection patch from Nevcairiel fix atmowin start on win8.1.

    Emil did you update GIT with your latest change ? (Like this i can try to add only the screen selection code change to confirm that it's needed for win8.1)
    Thanks :)
     

    Attachments

    • 0001-Fork-Tag-1.0.0.4-Nevcariel-addon.patch
      129.5 KB
    • 0002-Fork-Nevcariel-Max-Zone-options-fix-from-Atmoduino.patch
      1 KB

    Users who are viewing this thread

    Top Bottom