Notices


Reply
Thread Tools
Posts: 586 | Thanked: 471 times | Joined on Jan 2010 @ Finland
#2751
Need help!!! In Wazapp i can't see any photos and same thing in Imagerup!! What is wrong??
Wazapp:


Imgrup:
 
CepiPerez's Avatar
Posts: 1,023 | Thanked: 4,421 times | Joined on Feb 2010 @ Argentina
#2752
@TMavica:
Please try replacing those files:
Attached Files
File Type: zip test.zip (15.2 KB, 126 views)
__________________
Filebox / FileCase for Maemo / Harmattan / Sailfish
FlowPlayer for Maemo / Harmattan / Sailfish
Whatsup for Harmattan / Sailfish
CallBlocker for Harmattan

Support my work:
Paypal / Bitcoin
 

The Following User Says Thank You to CepiPerez For This Useful Post:
Posts: 126 | Thanked: 39 times | Joined on Mar 2010 @ Lebanon
#2753
Originally Posted by CepiPerez View Post
@TMavica:
Please try replacing those files:
tested them on his behalf, not working for me
 
Posts: 149 | Thanked: 57 times | Joined on Dec 2009
#2754
Hi

In the lastest build the send button appearing in the chat bubble looks weird (at least in the white theme), the 'send' text is white on a light grey button which makes it hard to read.

thanks!
 
Posts: 137 | Thanked: 51 times | Joined on Aug 2012 @ Netherlands
#2755
Originally Posted by javiermon View Post
Hi

In the lastest build the send button appearing in the chat bubble looks weird (at least in the white theme), the 'send' text is white on a light grey button which makes it hard to read.

thanks!
I confirm i was gonna report this also.
 
Posts: 29 | Thanked: 11 times | Joined on May 2012 @ The Netherlands
#2756
Originally Posted by knobtviker View Post
Not that I'm aware of... I have PayPal. But no Donate button anywhere...
Then make one :P You also made this happen..
 
Posts: 54 | Thanked: 8 times | Joined on Aug 2012
#2757
I will donate cepi as soon as most of these last little bugs are gone :P

You are a genious, always impressed by programmers like these, just like in the movies
 
knobtviker's Avatar
Posts: 665 | Thanked: 2,388 times | Joined on Feb 2012 @ Zagreb, Croatia
#2758
If photos don't appear in 2 apps you got a tracker issue on your device. Search the forum for solution.

All media buttons do not open the same gallery. I checked mine and if I press Audio I get a list of songs.

I'm working on making the bubble button a bit more visible but not ugly.

Last edited by knobtviker; 2012-08-28 at 21:56.
 

The Following 2 Users Say Thank You to knobtviker For This Useful Post:
Posts: 118 | Thanked: 16 times | Joined on Jan 2012 @ Nidderau,Hessen , Germany
#2759
Originally Posted by knobtviker View Post
If photos don't appear in 2 apps you got a tracker issue on your device. Search the forum for solution.

All media buttons do not open the same gallery. I checked mine and if I press Audio I get a list of songs.

I'm working on making the bubble button a bit more visible but not ugly.
i've got the same issue with the media and now it won't connect anymore oO any guesses ?
 
Posts: 63 | Thanked: 46 times | Joined on Feb 2012
#2760
Last release of Cepi has problems with media sharing buttons, all of them launch SendPicture, to fix this, edit Conversation.qml

From:
Code:
			Button {
	    		id: image_button
	    		iconSource: theme.inverted ? "../common/images/image-white.png" : "../common/images/image.png"
	    		width: mediaContentSlip.width == 328 ? 44 : 0
				visible: width == 44 ? true : false
	    		height: width
	    		anchors.right: video_button.left
	    		anchors.rightMargin: 10
	    		anchors.verticalCenter: parent.verticalCenter
	    		onClicked: {
					mediaContentSlipOff.start();
					pageStack.push(sendPicture)
				}		
			}	
			Button {
				id: video_button
				iconSource: theme.inverted ? "../common/images/video-white.png" : "../common/images/video.png"
	    		width: mediaContentSlip.width == 328 ? 44 : 0
				visible: width == 44 ? true : false
	    		height: width
	    		anchors.right: audio_button.left
	    		anchors.rightMargin: 10
	    		anchors.verticalCenter: parent.verticalCenter
	    		onClicked: {
					mediaContentSlipOff.start();
					pageStack.push(sendPicture)
				}
			}

			Button {
				id: audio_button
				iconSource: theme.inverted ? "../common/images/audio-white.png" : "../common/images/audio.png"
	    		width: mediaContentSlip.width == 328 ? 44 : 0
				visible: width == 44 ? true : false
	    		height: width
	    		anchors.right: location_button.left
	    		anchors.rightMargin: 10
	    		anchors.verticalCenter: parent.verticalCenter
				onClicked: {
					mediaContentSlipOff.start();
					pageStack.push(sendPicture)
				}
			}
To:
Code:
			Button {
	    		id: image_button
	    		iconSource: theme.inverted ? "../common/images/image-white.png" : "../common/images/image.png"
	    		width: mediaContentSlip.width == 328 ? 44 : 0
				visible: width == 44 ? true : false
	    		height: width
	    		anchors.right: video_button.left
	    		anchors.rightMargin: 10
	    		anchors.verticalCenter: parent.verticalCenter
	    		onClicked: {
					mediaContentSlipOff.start();
					pageStack.push(sendPicture)
				}		
			}	
			Button {
				id: video_button
				iconSource: theme.inverted ? "../common/images/video-white.png" : "../common/images/video.png"
	    		width: mediaContentSlip.width == 328 ? 44 : 0
				visible: width == 44 ? true : false
	    		height: width
	    		anchors.right: audio_button.left
	    		anchors.rightMargin: 10
	    		anchors.verticalCenter: parent.verticalCenter
	    		onClicked: {
					mediaContentSlipOff.start();
					pageStack.push(sendVideo)
				}
			}

			Button {
				id: audio_button
				iconSource: theme.inverted ? "../common/images/audio-white.png" : "../common/images/audio.png"
	    		width: mediaContentSlip.width == 328 ? 44 : 0
				visible: width == 44 ? true : false
	    		height: width
	    		anchors.right: location_button.left
	    		anchors.rightMargin: 10
	    		anchors.verticalCenter: parent.verticalCenter
				onClicked: {
					mediaContentSlipOff.start();
					pageStack.push(sendAudio)
				}
			}
 

The Following 6 Users Say Thank You to nicodonte For This Useful Post:
Reply

Tags
godoftool, harmattan, is-a-miracle, nokia n9, spacker_thread, tarekgalal, toddler_daycare, toolcoderus, wazapp, whatsapp


 
Forum Jump


All times are GMT. The time now is 14:26.