friends-app-0.92.0+14.04.20140306.1/0000755000015201777760000000000012306077157016555 5ustar pbusernogroup00000000000000friends-app-0.92.0+14.04.20140306.1/tests/0000755000015201777760000000000012306077157017717 5ustar pbusernogroup00000000000000friends-app-0.92.0+14.04.20140306.1/tests/autopilot/0000755000015201777760000000000012306077157021737 5ustar pbusernogroup00000000000000friends-app-0.92.0+14.04.20140306.1/tests/autopilot/friends_app/0000755000015201777760000000000012306077157024231 5ustar pbusernogroup00000000000000friends-app-0.92.0+14.04.20140306.1/tests/autopilot/friends_app/__init__.py0000644000015201777760000000054712306076767026356 0ustar pbusernogroup00000000000000# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # Copyright 2012 Canonical # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License version 3, as published # by the Free Software Foundation. """Autopilot tests and emulators for gallery - top level package.""" friends-app-0.92.0+14.04.20140306.1/tests/autopilot/friends_app/tests/0000755000015201777760000000000012306077157025373 5ustar pbusernogroup00000000000000friends-app-0.92.0+14.04.20140306.1/tests/autopilot/friends_app/tests/__init__.py0000644000015201777760000000633712306076767027523 0ustar pbusernogroup00000000000000# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # Copyright 2013 Canonical # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License version 3, as published # by the Free Software Foundation. """friends_app autopilot tests.""" import os.path from autopilot.testcase import AutopilotTestCase from autopilot.input import Mouse, Touch, Pointer from autopilot.display import Display from autopilot.platform import model from testtools.matchers import Equals from autopilot.matchers import Eventually from friends_app.emulators.timeline_view import TimelineView from friends_app.emulators.post_view import PostView from friends_app.emulators.friends_app_utils import FriendsAppUtils class FriendsAppTestCase(AutopilotTestCase): """A common test case class that provides several useful methods for friends-app tests.""" if model() == 'Desktop': scenarios = [ ('with mouse', dict(input_device_class=Mouse)), ] else: scenarios = [ ('with touch', dict(input_device_class=Touch)), ] local_location = "../../src/friends-app" def setUp(self): self.pointing_device = Pointer(self.input_device_class.create()) super(FriendsAppTestCase, self).setUp() self.unlock_screen() if os.path.exists(self.local_location): self.launch_test_local() else: self.launch_test_installed() main_view = self.friends_app_utils.get_main_view() self.assertThat(main_view.visible, Eventually(Equals(True))) def unlock_screen(self): input_device = Touch.create() pointing_device = Pointer(input_device) x, y, w, h = Display.create().get_screen_geometry(0) tx = x + w ty = y + (h / 2) pointing_device.drag(tx, ty, tx / 2, ty) def launch_test_local(self): self.app = self.launch_test_application( self.local_location, app_type='qt') def launch_test_installed(self): if model() == 'Desktop': self.app = self.launch_test_application( "friends-app") else: self.app = self.launch_test_application( "friends-app", "--desktop_file_hint=/usr/share/applications/" "friends-app.desktop", app_type='qt') @property def friends_app_utils(self): return FriendsAppUtils(self.app) @property def timeline_view(self): return TimelineView(self.app) @property def post_view(self): return PostView(self.app) def reveal_toolbar(self): toolbar = self.friends_app_utils.get_toolbar() self.assertThat(toolbar.animating, Eventually(Equals(False))) if toolbar.opened: # Toolbar already open return qml_view = self.friends_app_utils.get_qml_view() x, y, w, h = toolbar.globalRect x_line = qml_view.x + qml_view.width * 0.5 start_y = qml_view.y + qml_view.height - 1 stop_y = start_y - 2 * h self.pointing_device.move_to_object(toolbar) self.pointing_device.drag(x_line, start_y, x_line, stop_y) self.assertThat(toolbar.state, Eventually(Equals('spread'))) friends-app-0.92.0+14.04.20140306.1/tests/autopilot/friends_app/tests/test_post_view.py0000644000015201777760000000211412306076767031027 0ustar pbusernogroup00000000000000# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # Copyright 2013 Canonical # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License version 3, as published # by the Free Software Foundation. """Tests for the FriendsApp App""" from __future__ import absolute_import from testtools.matchers import Equals, NotEquals from autopilot.matchers import Eventually from friends_app.tests import FriendsAppTestCase class TestPostView(FriendsAppTestCase): """Tests the main friends-app features""" """ This is needed to wait for the application to start. In the testfarm, the application may take some time to show up.""" def setUp(self): super(TestPostView, self).setUp() self.assertThat(self.post_view.get_post_view().visible, Eventually(Equals(True))) def tearDown(self): super(TestPostView, self).tearDown() """ def test_postView_visible(self): self.assertThat(self.post_view.get_post_view().visible, Eventually(Equals(True))) """ friends-app-0.92.0+14.04.20140306.1/tests/autopilot/friends_app/tests/test_timeline_view.py0000644000015201777760000000210512306076767031650 0ustar pbusernogroup00000000000000# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # Copyright 2013 Canonical # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License version 3, as published # by the Free Software Foundation. """Tests for the FriendsApp App""" from __future__ import absolute_import from testtools.matchers import Equals from autopilot.matchers import Eventually from friends_app.tests import FriendsAppTestCase class TestTimelineView(FriendsAppTestCase): """Tests the main friends-app features""" """ This is needed to wait for the application to start. In the testfarm, the application may take some time to show up.""" def setUp(self): super(TestTimelineView, self).setUp() self.assertThat(self.timeline_view.get_main_view().visible, Eventually(Equals(True))) def tearDown(self): super(TestTimelineView, self).tearDown() def test_mainView_visible(self): self.assertThat(self.timeline_view.get_main_view().visible, Eventually(Equals(True))) friends-app-0.92.0+14.04.20140306.1/tests/autopilot/friends_app/emulators/0000755000015201777760000000000012306077157026244 5ustar pbusernogroup00000000000000friends-app-0.92.0+14.04.20140306.1/tests/autopilot/friends_app/emulators/__init__.py0000644000015201777760000000044112306076767030362 0ustar pbusernogroup00000000000000# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # Copyright 2013 Canonical # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License version 3, as published # by the Free Software Foundation. friends-app-0.92.0+14.04.20140306.1/tests/autopilot/friends_app/emulators/friends_app_utils.py0000644000015201777760000000232412306076767032337 0ustar pbusernogroup00000000000000# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # Copyright 2013 Canonical # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License version 3, as published # by the Free Software Foundation. class FriendsAppUtils(object): """An emulator class that makes it easy to interact with general components of the friends-app app. """ def __init__(self, app): self.app = app def get_main_view(self): """Get the main QML view""" return self.app.wait_select_single("MainView", objectName="main") def get_post_view(self): """Get the post QML view""" return self.app.wait_select_single("Post", objectName="post") def get_stream_model(self): """Get the StreamModel""" return self.app.wait_select_single( "StreamModel", objectName="streamModel") def get_toolbar(self): """Returns the toolbar in the main events view.""" main_view = self.get_main_view() return main_view.wait_select_single("Toolbar") def get_qml_view(self): """Get the main QML view""" return self.app.wait_select_single("QQuickView") friends-app-0.92.0+14.04.20140306.1/tests/autopilot/friends_app/emulators/timeline_view.py0000644000015201777760000000104312306076767031462 0ustar pbusernogroup00000000000000# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # Copyright 2013 Canonical # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License version 3, as published # by the Free Software Foundation. from friends_app.emulators.friends_app_utils import FriendsAppUtils class TimelineView(FriendsAppUtils): """An emulator class that makes it easy to interact with the timeline view of friends-app.""" def __init__(self, app): self.app = app friends-app-0.92.0+14.04.20140306.1/tests/autopilot/friends_app/emulators/post_view.py0000644000015201777760000000103312306076767030640 0ustar pbusernogroup00000000000000# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # Copyright 2013 Canonical # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License version 3, as published # by the Free Software Foundation. from friends_app.emulators.friends_app_utils import FriendsAppUtils class PostView(FriendsAppUtils): """An emulator class that makes it easy to interact with the post view of friends-app.""" def __init__(self, app): self.app = app friends-app-0.92.0+14.04.20140306.1/tests/autopilot/friends_app/data/0000755000015201777760000000000012306077157025142 5ustar pbusernogroup00000000000000friends-app-0.92.0+14.04.20140306.1/tests/autopilot/friends_app/data/sample.jpg0000644000015201777760000022727312306076767027150 0ustar pbusernogroup00000000000000JFIFhExifII*12iBShotwell 0.13.0   http://ns.adobe.com/xap/1.0/ C   (1#%(:3=<9387@H\N@DWE78PmQW_bghg>Mqypdx\egcC//cB8Bcccccccccccccccccccccccccccccccccccccccccccccccccc" }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr $4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz ?w'f&IP]2=괷VJ$;82%0f RIf!yԦx$h1EI$aHU' pGZͻwj{Kp쎡H梼žyz_O0 05nͼnIJR]O@x3ȃ᱑Vjp4mc*G&c#"r̊zکjv*g"hRk:"d 84k"SWn r &Kc$ 椸|F$b=N)#SJ~b!r)DK!m85XHlmҫ)@#M,6=qқm$ǩ^\|V@TN;Sm' S1F]*V-W5=h1(Wqp Sڡ@k0psޕс4n sQ3f;P)&$h v)VӣNvքp$j;S2mFT* (P{Tp1U$2>^D) sXO$P!(9+NazS<rEXL(e9Pya!@I@%.AҨ35{"ћң*3TA)bM&*fySzx>&GJ\d`N^2J{4&1ҧ) zS:3qZn13@848!4NE~Nhf斀Q@)q(Pc^qA@ <ڝ)11 JJ94 ;QԀ;ғ%8rh.hvK@sKm38&i:\Z(Kޚ:Ҁx4yP:Ntc=}i;Q~s  8{qO+n(⎴8ր(jiҀ%`SW4X.1ރ*9m@u`˜e#&B7zzr𚩩i" q*U^h9[QڪF3i4TOY+3*8{KQ45ɖF@OJ8sHҥ^"C%sX ӋѼYTΌeڴ\9v=O.$)~acp}EWm>D'a4wש}d+Drl"rR7I#Nod<5"<e)H^fVGd+)2mAJ۶ΡmE#(GS{Vx/;N:RXIJk'N)v fCt$cF=1|;Z]Ԓ ͸U-n"MKK {Mk񠢌! ۭ(Y2:7ALՙ]ayR:CLMF3$y'9"-e&;oop&Ow=Xb |{HS:R Q`>|+=b22{zTsڬEb w44"]fOQOP*#*; FttBv֦O"s=jI)=}h54-5F9@2;ј84G_Jabͮ$,$>QWaywU`ty@$tnSK6W|^ U", XI9,N*fc&ZH$/&\`qQJVmWWȦL#Y>ݕTmߥt/ hv4< ;\ pAy#Mf%Xc.SLdrxS5 e=<T%Η+%SqjX'Q0@ FM@@ĆSU$SC/[<fy ,SNšLd>ap{UrZ4T1Y.VlӥgM(A;f|Mb6y[x7ZC xLOzS!BޚZ`#{`/9 HNM8F3NIg< Bq(8H8M@`iO\ (րi ɠhsGSA◥'JFXZV`E@Tܶأf@_=@vQhR2mlivK9,gyނrﷰ rp>aU ~= *΀-sU^|@jM &yFdz2n87U%bC'jWO|} /:yM;!^9"2h'#8E-JEEkTcXZ5ܝcnf6UԮJH6̨֬c5^jGj6 b+ҤM)hJ:Qh/AJ=Sތ AӁ)ۨPqKjԻuHx EiO5>2H6搂*}7I& gZ6;(sRҎ&x)@4& J FhEh)i(4?m.<&ivcS悴v&mȥAf(?~a@c/c$Q46IjL7(#:@7KK*G&ȭ 3sUBq[go4gh:lҮ]feP?(B{sS{VMk]s}\i1Հ̭}v"˻o8.RLgU qEK3q֨6[K}:So&"rZ|,pOJ@)#JZ`!mP*?*jU{gim/N1(֘^.s#zыvq+@z֔z(UJ@:ձ8|8$}}Qi^8_^P烌c R܏WsUn=zH2w]$9P@ ߊEF8Qo*ڀy n۰yb;SЀZy#c9=椆 !|NC q Jp =~uYk=iKo-s7aÆE q&_i%cSМM<aP9gO}6fM51ӭ zv}OHԫ6q3\1ҔoRJC<`\^[c9>0²xޘ`OELnnG·Ry^d ȩb {#+'1#zT(d⥐R{vUQi1hicw'5Ag$V (>jǭg }ZZ%7#*NGUMJr+S9<ت!\4^M;?wҞUHZ>xV:›q0 IԬq(9I4l#qJV>@&)E8ƀ!FqOT柀3K)Å<v){~4R|g;FT`҃&}h-)p*|`Sv"&ԥx4ҝ>dOȣoGJoSK# 9D;o&9&d{8 Rm 3np:Q=(z]?;Ύh_j6SNmF4p):cJ{h;Rg^h)(#!@;QE'MGz E%R晚p<! 5Ҍ⑟PNL'TA3(49sW+kd܁Ol٤P_*\4ct5wfv.A wGzVXŶc7fF)LDz޴ffTiX׫Tܤ$q<8¶ K8☃02Fqqҡ\dY[?#rKޞQHR 7qZUiU JG,e&Q2 SCw K)T}Jd$Rb[ʋVw/}<_.C{Sy2w/#<N^jbL"{c5 QM2]6DcQnH8 IAECK",àn֡"u ʬ0T5QTm>Y%pm)fH !H1O.Wc29'I ,Ux"a"6)̪p.gkJ Jʧ+!'?"\A0<0dLN_y ި΋[jv78 {~U,ZPmZgwp5 9$ϐڥh#omƐGz} *yT^P錭 zn cc;V{TPtR`M ld$1o$ 럺KcSM}(g5`nv `j2>c<YcpȽHhyќ\C`z oBP< g5 +O.R x-މ\f,`Փ }럻m` ï,["HvHy& YKw_5V^ ,~jmV+{[ډY096GJZUO;2y f)0WK} ݀I>ԎL5Ytט$mj5%kC8zg5+ \fdF\֨ʣVnUUMBnjUC#Sѐz k@izg4t Iҥk1>շcp}UA'VwtsbXڀ ܚ1 {SkO CNFG 0#bozg==MF${PBoJJ$.siݗҋe1֠ߢ^0v?ʠ/N1#ջ;j'~y?*dDB޴i0۽q@ f9=8n;b1{U#r *NF'5gM"jtqN<".=J7$dCVծm {I4 O,O@(fViOR;SS<$736ߛ?/H IU;ϵ0qw;8˚vcM$ߝVfaĎq҇Z:in3.& $M7(##1©(s5y#Q2)KP،fC;xc * z1d sPZw_ʘ8>Ԡ|( AրFq;Py{1ڀc"xd@(ssFNMpiz@>@>wsi޴zOwCRB@4o#|(G#5!tz Ld(4ͣ?zSz(J{)@ 2)H'4 8=hQҌczҜ~twRsҌ`(?ΐ 94ALu4{zSڐ8iLfA4iZB)҃GnMIj1@bEM4(ARLӊON)ií )7`fj&z@HQ9J}/s HI݆ݐGڊI,¾wJFqK $tBCս)fzzJ~If%'x Jxj[ zg#ߚҁLOZsq֣'Pf=Ҹ"T}+\Gognvm 5\p7Q`ɬ.NOSO 4Zc晃Hi!n)S1K@qNޢ RA#4HbP(zRkaN̘#/$RY)O2ˏFRT򵱧:Ċ=4*!]wZq sYWu.jOϷr}EDA^ifqH(LBgX@TK8()~ԀK# 3UAOMEgKk,,8]oֺQpufJ.3ך՞zzVE7;P439A4g i߸v4 <T>3Zزӭ=j;vA %`TyM 7;b$f Q#Aҡw 4NeKg֫K(N;8_r{z@M$͞ϯ@fTǟvHRY#ٴϏޮw9Jan:Sױu+cp_QH:E'L5!HW i.2MsEMK (էԡ@# (ۑӀ50G-~0=F(d\>>c4Jz0'@ >ZpJ:ր4Z1+ j' i)Jy+ܗQ5~Ao‘%]D3w;~PsT[J@V]H VCH,N@$Ua\ "{>B鴑Z+c?uI"AS\=O_DsVV0aU}8{ZcH >/Ǡi˴Πi &i0}AUQſ¢i~'O!=Gi+@=jcw)bxxT4vVrqYsKodd{@~=)3΀zcҚ[Ƒq=i TdP4Ǐ**}ҁ> 98qOs@Sj(鏭 gANsFr)Cڏ PFަK랔` ;NR @g>nmn8擨^z ƌO\zbizuF:{ iOJG?JQ 1Ҍ~ҎO֐})qK<掟ҎG/OK:h(z?hǚCH4ut攷ZSҐKS P5"&UOztUzP29DI=DҜ*҃O?2vQQ)$\ VNԞ팞]i7.3͍1IEd\ !OJpv(=*kCRk0Y` ͑֟kjfT$Ki;!MsA/SZd [s@,LCjgDIVj䠭U}qL)o5F-ܗ'4 )}uǥ&i}Q3" P M.)N) TeBԛj0}Ifi٠"@P(X24nqI)@#`zyd Yhߊ h_GlP8}HV,x奏k+yЗ;}Ym,'l/ jR]7nP+!(Fd/Q搞ŪTQTQNi k4d|o$#"٣UVٷyO\U{$lcȵ  Djc5rx}@]nҀ$Ңf<֕#f8 vc^V)!U B@ \AQE0V[qAN27nڡ{vNL"r8Pn Vf."5=r3Mkuw1s7Npxf?:}OY4XzҸM98fkiXĚ21Jڀ!a[,y ɚF_ޣiU EaK{g,1geOuzcA5VNm&ʚV6@y.M-̒E; CK*0{MCm#Йwp(-alw2qP?54lU*)sTrY+^!glF.nk9G>4 ͌T=%>6x"e)9;5i]*>:(yگj#:1&Xq,}Nk?^=IBNp>+S/4JA@֞& *pjvPnΗ4&[E\Ni )@{iҁ}h◷@ :p@84PAH:@.zzs}i}'oƘRHAր1AAzQJy#ڀiq@#4&99LxKѨqނzigQHOZZAځZ?ʀ֗&=A@'9b?4vM(AJOA79M)sߚpHG=}hϨJr? OoAL?搂(sA쐪:jdjSِlN!$rIjrI⇐2GJqqڠ*hVq;Us/Ϝw>Ǒ@?un9?1itipB,zB\K\)w2D`zNI;F4&}BZ] ﺚcR9f@{R6,}E1&Oug {wL˼>ݪ*>jy) yx-Uyoc^8YR]1I')'ދI %r~cTe?v fnY3Tm9 fd'Z$ 0;}*hu@ٓ˜եxHX0 ;\H\M'4sOƼN`ED#`ǠrMI5e_U9n5zz^EtQpAV^hS o\sPoc黇ni|#tYIFOjd{n~FxLC4A8n3dpjzB>v/<$ S4sjo*+8a๟1,yG~4lszlqy*#79wLݾ.Z;#HGؒlp9>U9i 4sNQڔ#d:8>rqQJ2Ehd5ޚGTGaюڜ" '^tIɠќdi=hsc=)zҀwCH?8 )J;b@8ޝc?Z^Pw@ISr3@9 RԠgsQh#;ސ 8g◱J;CR/ SIJ`/q@(?ʐ Z:ќd(sޓ֎zxhR; ҐzRdyڌRMȥPG֓g0c4zH?J Hoj8ݨ bfϽBώ$UN, TR]>#^R{Rm-Qm]&,Vl8c%J#@i2rzVzѧt{IcPNڸ%de)9;-S R3sQ3U+75!l"B9K;ʽISZ4_>l2E N3YHƝ$q1wcڑmLt/Jj6ԙToEjL})Ȥ#Z ɣ4@!tn͸?(f943A=i3@MF́ҤnJFϵ #sHVo:Uڃid kbY>fFzɽ%oy*\30zP5y9;ZYI ǥDʹ}*Vj=:$o`=HKKKxb2ZB)lASe=Mb[r"~:>0+c;~*uOA3oOjLs5!;ch2)xjb9?J?BG_zԥx?J1ƀ"֔/RE.9@ *~ޔӧPx0q{cG)Αr~tҌPhO7<3@ܐE.yO>zSqYqڐ=)3逞PΎƀ*y~!84(=)@ ֒4K}8A`(j;~(ҀO_j^Rgg?L9֓/)sޛE;< iԄQ;9]d5ZW@ǵDd֚<HS䎙` h JEg=MC=ڠvg\L w20j,1k=xFP ]#sdPQ>X?5y.vMTg#.tT?wv3֩pI9$~ L;9\ 't*#%˟*&Ҹb~UW# ڣ\rJp)HwwcZ<JY"2\C52vW.1v,\2E;rǽgsիټ~@*9S/AQҞ;Ȕӊ_z=:\P◌*=n8SK*]CG})Ϩ9hh=4Si;ѻ4z}(Qԟzni7(S3BOZvJL:J\ L)A.hAIԁ@S7LvhqLJ=(J 5yM\1E?Znh8Դҝ@!4R(ԙ9 SќRf.y<q'{G 秭/QHaJiA{4]Ԍj6jZG}LW2z>[Kgk-Ԙڬi9WlWݣtv Y&ѧe-@V"*Ң})8ړ*Ӡ!>jaj!KMcBFhj R\ʱ2MiE8eLz¢SMaMWV)+-Áw5fi8TLwɥEdT$`&GRfG\S:f1v;R4ަLB&oz(IMH'Z2-t iNgH=rh'zw70JP!q SM>;&()>)%-%(}(4PhCL撊Z3I^Ԁ)GJh<QnqFhM@:c# drQUcY%CH&*bnJ=q5}V˘sJKUbUE|E'n u5#ƿ)sM2w${ @H~ӽEМ#!rrxʀ'Ҟm\Ӕ"<]o.?Aڝ, e Uin3F{4CͺCvHCL!>Xz"cҩMq< -^ UNIPKdIG' UYxT//=:&$Q41Kp:ՀO? ,ʘH9HW=EFÁ +yw qJLd>)S MKyePo0,pIrKr$D$qNHdrRsҴ-a] ֤@Ȋ::T/٤Sm=\ʤ=j⭴czQ,rO(@(oa# ?c@I)2zԘҔUСVsԍg֨H4N)@;h-SѶ=)\R}(h)8(o9}{X@&=iqN8&fdNyZ-;sxIܧB>eA֥)66QO5Q5eʳ3M!f9'|CsVFRwcbg5 LxWcebI9?J@(Mv+ {ұvDRSUqӳn`韥wS3ϵ$@R,҂x4 nAP>zR@dd7tTyPhP9VޕbRx4S s?-Ͻ#5Fƀ_֖y4[7j/RkFI,P Yz&4Q-z7@'=OSFXtNj̇逞\g!4ӳHt94ԇ3LqE~4t9  8I2(.iF)gҀIGz;Rb&){QbIJh(4RZB(RO3`!Ҁh)A4\ҊJZ/ji 4 R);P3NH(B;VvFyegT&U=s@HD.=O0Ʌ>ϥ@sVCɴ&H@ <*Dw$Q@c~R946$QÜt}rH6;.'+ V{:(>Ҧ6lٴƓI6j$5\%*CQ;lCɴtoƪK&Np? cUid'4~98 !ӁS*XTQa HRp4LDҔP4n P}?DR)? ׵4MF4 kuϾj[xy5oʝmNqD*i߳txR.6qvjM([֜(T=iNZ?  ?A<(aS4c{s@~JxJn:{ v)/NҖP@3x֜qO_Ɣ~R?'n)~)szh{4xwϽ(y~tp9IK(Eq@ K(vqڊ:€ u)@?.i.}=)i{}MN88tg֎iGL1Bh[0]7ZFlu]I*OSHޤk0~MKv)&ݐ[Zs(HI[xƘ\S}*]XLje[yg sxmK4jvwafǓH[֘NEM#3@1Xٌ/RGZtB5<R@Ttrr& +B6' QA8ꊜyCϥ"9(4%Xm5FY 09820iUP1q#5^YO@@F18) 4g8*qt1B=jNJjP?˜ җF}M1-Hy8E.Wok Yj:›iq @zZKrҠU\Jś<>c>954D*c[#GڈqOSLC8#i9>he}~1g>Ҁ##֟i)y:!|KgҏZSR4zCހ !9.zfyPyiJP1ўu(sȥ ZhH:R@ю1@ hj:Q4isƐxړh4iӿƀs֎?:^P!@z\s@ Rԙ)YWp;!'5V, dwUpkl*54Anہ c2Iv!E<MBNzf5h"rj@p81M-Zlq~? a~i񚌵1'< `f{R8Q֔V+l4 v CimTlXXzVWszloeM]>G2g<JhbMhe&ع B F1.i %=h4(S4њZ1@ 3F1IvqINu)iP4B('4Hiԃ0)1Hdc:tQ֌.hhI;P '֗Lt4) ;ƚLb𢘆(!):֞i1Lґ'z(@>h3RVQ"Ug+rj[=!>m@6qqSAnh({Әm:ea+ڣU,I,7*` X0w=)rwZT8T2(f*J1ҹcY)IUefҩK1 I'ޣD.rߕ,qreW).(8;:BiѣHPcBFTd}L}tSXCW RH,iҹwADb{s[Ga@^/6*bHDž98oJVcnPrǧkOTPhUO5ӚT€yd*-!ɭ 7^z~ ~khc2pv^*9Sit /bx]_sYGIi?:p=in`)2(aGҁ ^h!'<'҆KP1—#4LRAPSB3_Z@.hLh'5SC#cC#D1=Ī2M5Z| jxÎ@di2yO텠#XOFFv䱦j!-GR|AWN' =q@cJk?F2\b}jkZRW4iX(\r@ddNi:)Ȫz ۭ)zQCZH)C`L 7PE8?֌ ҐN (!=qts@yI\t-Ǿ)7q@'cM٦@56(cQ;ց@͞3JInOVs%V5:9$TbM͗Z$Ȍ1fHl>*-YMErr1M1M,kS Z[4(g`2M-2@@c4:s֝m45WWo3Z4#9S6B\mX7tiMy%-M;ޚ8"J;m/Jm/sG44tIf$ 3NtisL=(s;RRPpz (:QI(sFqIK(z4ڊZCJ\sJEf\QJAȣG& 4Rh%N.i('ғ&%pzfA!;4S)3N4()F8DT q(sNTb n˜x4er7pcLS48RcvHހؑҢsޞ̪0XUyQrXhʑYIO'~BIK2i61f XzE '&cڐW4^j@p)wJi4.iC$5Iq TU/hPబ.sXBap;ZB:j\NI,siA[WNwV[ 3N.p+C!yGi(zLhH(?2ןƴt29!G(zƛNHh=AސRzV83):~)~X-{NZ:su%GJɷb)dՋE#2X&MtqަA)/@ zu;ӸΚGsIȥAJ ֔z~r> ^M JsQӚB)nR8*=UyQy'kJ ߹ ubNqsiuT. TncҴ.hݣLoǘ׽As+M+HI_;v:R!J1F* SHRhϥ+ P1ߞhzs=(xǵ)>θZOZRsI'lw'\h>ozNIӯ)@1@HqڗRؠ4(E.(0֏֐@JM&pE @ GAE&M)F(~(@ ޗwIGn=)MfniӚPMF֔۟Z#?QXJ2޴MI^RHAɉce:\֥kzmA }ٺ$TqLb߽"5T25j`#ajL'=9 vd+WչZCQw ku9vrVnE(OSZ(,:IwwF nI$+W-cIҐrOւq۽lvZNSi ti;@(J)i3E(4bPsKJ3E'Z3@ I>P!~wbIZ3ڀ f8(4u4 Rb KE%8HivHy@ 9'.x(Z:Q)i)3.hhϥfG%(4S馀#=i3yP#y܏ޕ"p1`SwQO׊\ʨ78=KQ\% id[WV 8@ U)4n&) SIMҸ&:X-]gL!?zOr1 *Y]`ymT,rNhip*܀ v(UƗZpFGp{nd,X$>ԀU$Laڴ>\dgPZ3Ȥ?)s=3׵F1ޥx95 :@B:<2\'|[:Um6{m21*tgEnJGHϵZp ~UQr̀+jH%,{s}({" I ^JC'_\Uǒǧ4sg5D NJdq`xiTQ9Y\ҜybkɼXP`-T?3J7sMQSN6EU4)p>^+S8Q4zg֜ & OF@çQu(ZLڏ|I@84Pt:Q? Lrq@)_Ɯz4JAӏJwh iʌSH(J_Z01Q0h?փwրJ\t>H)A`/a4sRhIJ:IqϽ&sZA@ }) A)iM&xH-Mc55+ VYyP;TNJ&%O3ẅ3HYNқ,+|i3T+raqJǭ!l S cLfF[@ƒ)g]\:8dEKz۲4eiQAX ˟ƫw5]TVJ<ڳw/f-OsS)ARx-\Ɔ 8$ E)T>S[[ |FO+M!]kJ_% 0Zf~Ͼ 5ViL<ߝ#{VGi:qI)k^)3Bq@M cޔd~Tc13NP0jcw"H@h,RO\㚑pAPɥiJ01ǥ:IJg҃ހqJZ1G^JN(9L>(bMgE-k_{).q@{J4c~!y 䚇5dOy_Cy(:Zuj?Z7=sN^?8FU'R-):V@M3IBzG_j: >֛z;0pqEq*@4L&'HҔJ^1K3< p^G֔uH#F@h{ PNϥ&Ґ@ {O4Qp>Jtqc@+HcV.?ݫ:^ ܚQ%4N (ťFh\~iAPޓ4ҰPm.2v>Ցuṓ& =+.jyFgqnq,dbCxaOV}ևkqc{RW8ׇ'&VT֓@IMCHM+ kFjc7j&j m >ԶIu(1ZE>JޞYJVnm_Yl-Jrqګduɣ6I*SN1';F@'L&Td+c`#74ߍD[MKi+'d% u0@pRjyܑ|(Xn0#i97mSV[M)?QH3ֶ9۹{QR ڒh( i sK1HBfA1KfSiEFhf8 ޖCҁ4Mϭ74PHxZJ(4Q@ځ@RhAu"N!٣4E!j@87qQ!l2LsQI_zin:riR~́ni֫vt@MIi!sjC<I'ҴKxܰBQTRodWt6Ճ$h ̻$!1)V魕"Q;(I7"4'Yq?$hBĊMi$d䥹PMP⛺Z"Ni3M'͚f-HZNs֐hPckJ}z J 2'h{Գ̮pGLSbp})5Y ):ґ\{U@.08(P8sN4Ti;—QcӚO3@ )?iӱ4g#:Cǥ&4iG$ܪNYүiwaVXIR8'XR)&2#ӑHHzCvnsj nxJ@]6S^qTpCs֥$qw壅^c c &SX&3=sH:qIZjO“8FG#! SIM2)rz5Fc@ɲ; 7ZFc(Ғ '*.LnOƚ`4Ap+- iǙ밷:(HuO'hPT3$AȥnR3MYozg֕ZUp9=*[W'{~A{uGʀƈMuaXߕ#_/Vdӳ=L-ҷ9B1M(Lc>±<=qJ ۭu٥&SFNa O(W keaF]ܒFI.-_S:phԆv,;T,r&?*ѶsYM ۗ9h+?+:d3M&oƀqQ҆96vR:(XTɥQon[Vܑ`#:p[Zk4fJN}h_V;74~F€Ɗi^n LC1IHbbILCH^8Ȥ@ ъZCE!) .1A-1 ()@6ZC4});њ\~4Q@)(hI!4CFxdLIq4)?֛MM'ҭ&pɿa {-ʌ*&< ն!OOf1zn_D= Hc9>fM)Ǚ y^|i3l"w1oe@"|u"Ɏ.$T2JM{%N*ěi 3S7ZQHOvEp|8#ֵC:cZTL鏽IYaAM(=8ks ~J"OUj@Id2i4EMMd@HXuVΥ0XvkM L3NcQ3+{L-i-HK3mD}nI|z|Ҧ}>=*cȫAKS} ^g)ZPi{朩O\co/@7NJqkjBqSk/#/hԧclg$}*ȚEaIV֒EϘzU֔W4ʟT-ݫsAQ `#Jc"xխ?܉o@-a 3Q%̬i rvw/*6\)ee 8倨DQi.INPVLua?k,'{6igho-GLiS5r=NtP 65W&ِA0A:֑_"7$rvd9Hiq{HZbI*sՀ$]DKXӳSͧ aPyoN*؇A(L旽2l?.i4SPiOJA4R4P) Ӈ@cJS(CwZLc<;݊%sU4]1q<tʠtUn< @)´3RE`q>-#ahcEGU!*R R޹з 6JJIbIi+Xrw (((@-E4Ұ:)FA)٣4;w:$2d5uș?Ñ\YO;wmWgyC!,f9[K)fMIw aa~!āc^'BCzEFj1FRZ;f0lB8);!4tC@<Ҋmx4f(z/ZB)z(1Z(:SMpKĎ!^P}XHD^h"V85 P*=@Vs)Kӵ"uLؒr2i -'K!lwTr}Gj1W#l埯+B~z2 *2JT&€c)g2+O4Jɞ\ c5v%MP z{,N9̇(Ѓ\JE%1Q@QERQ@ ERi(J(hKJ(٥24;F9R}:)F ʮFjl;އ;O ܄Q][+r> "(3+Bra9 vh4F(i!њ)Rq@/jJ(4i!ƛLM4{I1۩ i R[[ItcбX'fG\JihiR kBJX|av'Yxyv\u=;T^rBaŲ "Lt$r AL4dƟehXğ\PE&i֊)975jB<44hԅ陦$ML&PS ɤV!eܫǩⓒ[iIK{(26)KEen쑲ey;bGyVK##*CR4qš=?T*d1)t =}D5KIc&)IE#'6N)7SsILI4PѺފv7fh4g$wSyg4 nt0xE8==$ҀEXNU;ť(:V9[ Rgn֮H)·JMHM `d$G|9'7W^H(4R]a?y_j$s2wfYk\b~府 О*Hr2idmb.*߲;/CZzvYVqڰ>YNCoj *7 (PIK@Q@ E%- ( ( (JZ(-PKJ)BzL敇r RPC(?ZʻС%Cҷi0 +s\Cx#t8u*}О~V}֚q0jlU(I[Z2dCfOe4=P(-zR@;4ɤcILњ/jⓥ.E& &) iRPs@44 wJLfIRå4M4sHN!9)FyHE&Ɠ0X 1[b/\ Grr+'S[#eEЦ֮D@7'!w~ te/|(UwX8TfBw\U=1ȯwcxX(܎iyYBn!Gj:Rn⚦K!#39֖2cSI\f9Sh)4&iE%(((Fؤ4DP LqRIOƀҌ{SF)bҀ8)ҊsO^hiq@qKI_&Fhӭ5;w=x1v8ãK!;I!.NvjnIq*LJYr#+83 Pkc1'ڝ}>qUI=\Zxlvj E.sQ#TOZsR&쑊k 9›5ҕ*և'(f4ۖ?2~R{>ʼ4;\Zڝj@c{DMh J(QEQERR,vɠ_n2} P=iT[r#w >ZY<UtKV (RdPIj3@>@ť<IE-Q@@.h斋8(5F}1\ Jù^inoecF}Pa'C))\h &3zɸp>ԬU̾hjJԫa H GjBi(4\f4iIaFi7@&)v2hv;Թ(T`H|Q<PrkJh#|GJdfMѨ=6Y5J?"a|V֑#@9{gQq'sd旧󦓊nZ(dɤ&M0G搷4}(i)ɠBz) \`r|-V-XVݯU.irȤyQi2N=sj.IZf ;@+>yKF#2;+{x^onD a$HqBwv9ĚO&i֊)7IHMUnh EE&qFh.hPQGj(4Q@ (њo^h8KLC;F(1Mǭ?oAQNґNzB 4bRҌPO_zozzL8?Ji<1X 3'zSI'*H`f!8M&A%?>~uW Y{Q #kjIYߡjJ(=?J׭ bMHHi+>;.JK1ҵijz泜U٤)lc hI5idPQZ[HP!5.H$u9b[NPKs:DܚHTPNv@iNM΅NGZf{u{}޵#n.)jrS@5bNV,S\`mHs(l2E84q@AOMќ=i $p8 (#׊^;Jk LL#ӓ<idL~}WNqGJpf-H 'ڐd40 L`aS@9NAP$ 9%~cs׊hC~QM#8)NN3ۃHA#jSx&XO~G=MFwgs@Rm9d.FJ:Ӂ㚸ɭ=vD&&3Vk6Rv|g8u^QXbG4hOTjZ0)MIEB ( ( ;QE I ֤ }W;hTQ(ENb9Iڸ46('8'Qܩ1hϥlf.h=1NUg8QCy1ju5hPӼ?Z8>|'i n:hGafL *QQm.R2)7zՆaNEB1VbjRqFƘQE(QERRiC\a:"9 m>uC0uJùIhP%9\vޠVEΉ,Y1jZ**N)3[٩;eͦHwn#)FpEFl38򦖩& ?6 supk74cJRϊigcS\"(& ĖbOZ~^Eڜ<&[4}2qDӦ``qPH9kʳz{Q}(=)1nZijBii  sHM4BhKSXg' Ni3;֌Zk|%|qP.I!<֥FB=TKG-_)8=F~I2E$IBMcnhM7ԽE%f^C@>R4ƛZS4z 4yJqz`{q@U;I.W=*@xN1ՕI47ȫspeWҫ3ԫT""ܝGjwji#Y): Ң-) ktB#\"<E$-l̄G~ՍZޕ''XҬ\Ϝ7^$v]w1k͓rwgʀ stnHx'ӡ | jAԭƑهz\ZPOjB0y4x\$g(jӴ!z iWL*5-unYu|3\$Mmu=}z Z~@ V|J/ɪsޅȏEBT*e+hM5v>I^OU=F{TpYzUH1J)u%Y33Qcֶ kEP~T:`[FwC1~v7Qқ-c8>U=%xJ|3uGWamoJtv#9g{Roa+2{GgSR*P9^q>eZFF+H2lr+hKMq߸ZQEJ(i((hZ(ŒfZkhg}jZ(AC[CXzl&x]#(n=Xw<Vn*IRwZE'nVE։q&2$_B3SRg(NsHMjd3zgL󊗡KR8&Ŧzm-\N]l^4yX13޵,H@Vi~@)'+7'sPQVkW}Dx_Ԁch=H\sQFϧݧ%@PH#oLKAW׿N= m@ !A>.O98Tp3@\wX׃6o1çfX&2QVi6lDnbuy#k(!Ktx9wi:wP RIZzĉ|Nk(k{ö}+*(oA7#y8ٱyUx8TuР^lc+rvFu֯a,ԚaCt\U-M](qJO|3j)(ܝSsә%jhU1A/եtq9MrB1M 4&y^%:i$HH)7\R)x =R}m&ASe-+8ⳡhwU91oDOTҲsau(2u x4;4RQHLJREPEPKIE(darA=gTDZuY]F4u]PxQmݔݐQڊF3zfwLO*Š2krG:!eH(sepAȢ(GAFź~@dmNY"`u"as0tسճZ QEQE T<|åME&4R V2&x=*;9q3E>Gc\EWAzd15438t(QEQERQ@ EQ)QE-RQIE#0k*@G%mҶaqWztdK+=r~FdU  SKJG #MLGzV<u*iZ!&FRi(sIi3E N(4PEQր ( ;I@ Ҍ()PR撊(Ph@ ZZn(QH)(hEh&PBiKdBԙnFx;u7u4ZL~JL0i6I7xFx5bII˧Z|Ԋv4TfexHmnIhROv'6\!$d6ue_SR)82)]CzT[y圷ص:p;sT>O|t٣8c+# ˙ݑC' H fD hn#VcRHk,H3+i" /sYhm)5C;nkNgdzxz|B ?H};Hc{_F#0vF}a)6Sv'S"6KEK`PsHLDC ^GRGg~Tghn>* _$nhyB9l/8ޥY>~HO#6JlDGwc4<^ ֐ y 3`ZmX}ug7iNq~Y x01SwG'RU <3p+\( [n7)b8C$fhQµEOJ@xhW!BAw{iҀ44h8Z3IW'4@яsO[@' tngiЈmwO\fck˫>iaʒFvrcP{6H֟s3M#3}*}}+>Xwa{{KήX=iX#ZLI85U "+{" 1ڹjTQy'A=bT0sY֚Rqd# 3\TG9|ǽfw~ٹcwֻS64K*@x5D WEj#5N] F)⠎@r*\3$K@:nis@ KI-(RQI@ EP EPERo~uJj@{XzTV%t5Ef6 ~՚kt*{j註;$ T%HU(d7լctΪnhIFiks((\,j@9cI &ݐ˛S3VJYUW#=ii1vi%YIEV0SeVJuG9GޚDO&J(BGZ(((h`hQFh(((Pg^b/ZucDQSҰ\-ξqdP!Un.Ph;`TҺ-GCh7/b:=,m¤3E)R)(t4):QE4PEH4i{RQ@&ii(i){RPJZ(IG9(4Suv˞H_'tz 2?N+ B56w?T}JHy)|5OUh*K}ӄm(R{΄zR@|&1GHc W>ԫ!81v=)IT#`\(>йEp=s{B3{Eb7Nl}NhTۧQC.O@j70y5 ǽ+8+1H^djwsYU;!%v-"mI@y5ԖnM.p~yw*Ȁ*6t <\ ϯM#ܞ)˸YBϒH*!2HUbv(3CQ+涄aI8QJ2Ld5r3S2Nk!sn,8qǭzT{|IjAZ\)>>sH('۩B?k5s*YA*e%p'V,#;r*H8 ֤Mꁐ:v)J՘6{gaQV39DtEX}z bV&>j20q:ޔk&QVcWUq5w 4S`?4RJ(E8SE--v EQ@(RRRh{7>Eܾ#mPzOYHc0޴#a8ٚ ET1IPHW&/[IH0“]W}jw8q03U)}_|_z(7񎀚HjHbR3!; /Xտ"N#b>;] Vl+AL /sZ#@)UU`R֑gQ(0O5;E$mI&OA$cCé(ld:JZJZ(Q(Z)()i((((h((NRRC.51<# *uZ)3n!{iLr L:r7{"Ԗ?hUd+7f8* 6}:R1 K'Xi 9u矛`esaJ~)V?sA7rOv pE+ڐ2 Cߕ+1+4gޢFRX/#;ns֥n=_ƽU^*_Lh29kښQRe i!Q$SaJ_eR9zė ݊ F0=M(:IMݝJ:!G=q 硧&;uU0A4Ꮄ2N)rOGܐN9SڐzWbF zg[Cg$JQ΀` rWMy( $$ 8掃 @MÎ== Ueʿ#d^5I٘ZJ eKdR UK!vNC]T ;H¥g4M4F)Y[Dޞޝ&#A&*gU܌hRQ#=is A427*'5*noB{u/j0?~*֜F~Ъ&i*M %QbjWѹ2ZO)CG\dpyZ5NQEHŠ( HD#=b\Ybў&6$}jXCrGc!<hCāV ]iE!QEjs#&$9f2AT؛Jd> &qɨeol\%QHJZJZ(((QK@ KIK@PIE-RQERRIE-QIH rA*N-Ffz%ѰNN+/+V2ahRQPSu4R(K@ E-^PQ(4c4})iQE0 (@%-)ԔE4KERQ@wn7u!nHZHZ$4sJFIp=)}EhZi]Lje4#NR2⦂khM^XpiVH}r -S~*Ka,Ew} [%gǰ9f,OsJZE2sI5)8'sQ;d%ۻc$[:0/^(r,B\y`OF}ks@P[ҘCQ֜yE vt%H~r*A P$Ƽ˚W=qQIDXi7'늄3?ݩۛqǭH!`8Q8>v')Wd$b:mLD~\*M<"˜L"FIj"i\ 4NɩAcjJTn&^> N">ޠI %['@j.X"!eEW)w7pz摝IĈP3Hx&zX[8)Ҟ=yy1 ,iN8iGM'\n8HiA1={2wL7"oUn>fJL=v^\H?M̍ *ڤr{T0E2ST ̇QXj 9}Ej .xƑWPD,y4p3{4szZC}*`1IKLAEPEPKIKH(((()i)h(PQE(v8VG$ op+D]39jd͚o^N)Zhf K@ )i;)J(4#@#҉3d gҔ J^w4PE-%^RqILRm%)I@!qmGpąօōc䜳hDH3ܚԿt*6Md#ެZ]H#Yofa#Pn$rM̖xm1XIfhSlJKm4 K4@PHROv;SJO #aJ~ sL~W4&xU 媅WJ# rPDw1#&紶%P3'N*0r4-|"A?հQy~pߕ:F<[w%*0RrLTk,EB`D`cEALB%1ȮFs1A2jhW<9o89ސz;vwy=ff,FѹʼnM'˜ki;ӳדRbM&0kI8ywm^dmzt\;*3O4^>sJ1+Gz4bA$U;v1 R* 2yބ9=@wSޟM4q(\~TH}ց֐XV9bv_%rIti dR8یw R߻H2&q=й'_z|RH=Sq5`XYdu^1ɭbIZfOkEhSW9Ρua֬r?:iȑ'jÎ#E&Q@-%-%-%QEQE((()i)EQE ( ( Z)(h8Rkߙ9]0ڼR3#>V59ɚ"S >Ԣ ZmpFhsFi(RQ@)3Iu%Pz^@^RRh!9Ph$ɣ9UŤdBE%0֔۵&zI^ؤ&ъ@*h^Y$RxZǂ8QtU&s֞Jo=ݕ6Lpq )41hSXtĂvM#qȭ]~i:eK;ʑs~:F;~zR$PּIe?R+N^ҟҘś&V Ṡ>ʗ}  $'rw4p@Lr*Gqei؛e)r۹`j $|V&<HUN^i N(g>i%ւfϱsR*p3+ %xG|wdVpCn5 zs^t+Y$)!OT@ێƞzZgp HIɦpr9t9$i8,B*2H&lzIPy^:@,h8OR 35׈XTg}kZJDM=~ 1"޽Sdx=zԶRڐPj3 C{M&ʌ]Zj0\iPA5,6 y.&uUfWG}G3 t T`T=I\bRv@kJ&΍99nM[C =nJ8$MJBh4)։VҠx88evt(2 @BA8< !m{UR+c5~;˶EWS2jDv%ueH505SvҘ_юE5ͯ/Zf.-;5N~IK4h٥Kp4@4u-4RIK((QށIE- J)h(QE ((Z( ( ()h ( ( ( ZJZ(((Q@ IEM;lBނ>% j.,kw_.W;!ɩQrh_AF9(jU֤pEZZAK@Q@/J(aIKޓ443IE-.qM4Pii(0Hh(4;P11)hA3IM?yƍґ8l`$ `)" 9w >^=h)NAJXpH$PУM̭ҝ ܿBy]RS7 : 5JI53W'5ZKɜXy=̝x#dQÎ4Ƽ.Liv'.M4{U/DZf'Z x"qdork9Ғ$`piӿXjCϥ4=83ҕƅߚP&PsN@?Tn#4$vtav֔L1Q8?S ?QN~Ԍz*)=OKS^MҀɥHG8=;G$6Rx> PS3*;~ ~AֹZrrx1[඄xsNۉ'uᡯ39J3ANg+疦1:a@v&=x2zWcB 鑓\ؙZ'VkrBIiJˀXU2]W9>z#89L$H'R#.4 *js 1R3ךB'#Z LC.0 a܃LgoFHղQ`lsȧpl 姌ܠ12lktqL0MJoEBj7#PPxv-D\̆IU=N+RS cpakzx5H;fTe14~v L9k=cb6d]XᲇѸ*֗:MֲV͢jPjee$9WOQQ@fis@)sH-6u)i)iQIK@Š(((AEP1h((E ( ( ZJZ(((((UMVq⭊YyMխ.A5UJFx<>B/o;P ,>*z# A*H#u9Zp>^>C@I<{]/#n}r)QQrC N =SXVsHYOһ(8Qvi5blV;8mF?69<+ Ӄ9@9NzJ(<+YМ}+bgCzԹ[4j:@8H<βBzfƼgnaxFyqFߗ*ZM}(,G"۹8888'ԬUI dO ۰Tҝ?:h!POIcg.HPAy""ݟR`p:P~၎:A"[7>a?0:iR"qD$q\|`vM͑9$o.R*~HEY|gM'BIHx jaiƐp1ϵJsr95$F$Up+3B[y1C!@Ey+ Ni 2Rq\",[W'ʰ3H9+ B?;n@ S#q܊8@j?D8$h\;)ڡxhr %\\ټ]rϜ-.rbe"ٍZqkwiH9cKv$8YVEj>,e+F _:̺rSM)Ý؁$#Xv^+j&LGAɎMlYkq5.=jW$wLͣbM46>ekk^Xd#,E?Blk4۝1>9UTEm紐ދ)5- N8=Iuҭ4g4jx4viAsM٢4RR Z((aEP ZJZ(aEPEPE-% Z(()h)h (PEPEPJ))@G cW :z5۱ojFy5r$$zUs~DMfh:5ɫ*(:@H)ݨE(NcJ)i (@ Ґh( %HM 9f43@-4qKu֗4^REh}]Qn*G3}MEރYq] Y>RdOj3Wc6آ49ݓLCi3M-M,3@fv)@ Po8 PGZ]ހ Q@9i ⏭GN)0IjEa`IQȤ0 9j-2_2.bHܨ8jhiLXnӤ|Z"G?:@in qBrr}*5 RX88֚HkqҔ ×"\MŁ'&n,8}9ё y h$`k|A`F8~s^م8P\Ҏ޸whgZ p88~JPS@ \MEڮI_Zg:jKSZu\Wdaʚ~>sv[rڵoas\(X:?t*`v WTMEnN) Ԕ.5S4.9VMNQqRo3)(f 6F6pGTo(,7zڍn]$Mj<)Tb#һOc͒iٌzӱIiLp9&Ů.i< !$Oc a~5Zuҥ3& @ZcNݸ#(]DGlҺ8#oCI3ځ\ӎ)*s)8<֘X$'*0qkd^{R(vۑF㠠10WXdv 9ȥsLiQzkR-}J=+nc<׊GZG6<ҼݾZgUy`pzTy*zP"ާV͂gxw`9kdt2La=֛~eFB)TpR9)95Θޑ'LEDb+F C%3Bj#n ^մ22kIʞj\&#Ь]A-kiv7F|d+S[MVDӰXo->yyJXnc=*-p6*Ge|7p8IX@sUH?^REtvѸRLASSi٨8visMSE&ih)RREPIE(@-JZ((( ( (RH*r cqH_ķdW2ܵ\͙RMKf^af>95{ jI\w3bjz)R("h4fR@ 4bRI@ COI@ %;)1NqAր NI@ 3Fh)Z@-.iPsMS|4 Hd)y~f}EIi3ɤw-4-5&Mc=*\{"n)s>rfo޸UsWe9ub 5sC>IZVqe-!j ib3!q9.5n[ˍv;r{FRKF@ǭI$R$]H>ZB¢JVCU<QҬ;ҎJ\blLHzt4LddjLwpTjDwJHLROriSoҹEsDC8=p=ZBp=*FH@JFeG@Xq< ~sU08)"aqf᳞)䎼S$BBJԭ_-il*'tLҒ9B[F1IZڎ&CX:sRW<%ah+C!GsK)&gޘRni $?JPzƢh,s,-\VhJ;}k7J/tjMu60Z=b6AOgx7V&.N 5I{_W#wb,1X?/)$7(x6p9zS_\UQ]K$ǒj6l=>}Fnm9⥷F7=M.5}ӹcp$z= rkV:8$5VF,! 9-Y%zc ʝW QM̉ܭb[ Ze$_Qj/L1w Ke0V= 8(FT*~(s"NQP -"F~irQ NZ Ve0SAÞ_iI"A<x !~qMWQyXw>C[0"& eSRkُL[ч4OTI >SIkcR)c< )B瞵 =3B~cўakGRtT(1i*,\.j;Z{:Z@ @N}!)ǭnrIZ^8<[ԋ\q׽1$PzV.A9, Ox3=Whp4*z֝񑆮d1Z&#RbYkgdUQ^q/zеSb;),_ϏBѸ yZŕbe &(zx9iZH%ivlLojԓ&iWH4H (K.iE%h(Z(Q@ ER-QށIKERQZ))h(Q@ W'[ܱ@zWI0ى=5K,sit(ME!Qj-YCWBC+7Sι8*{ 1#qbOVѰ^ H*--RJZ(JZ(S(9Q@ 4R@ ARPtIBiq(33AP!: 385 CtZ-pjUtݕgǩ⋋ * HUA$0X{N`I-[aIuҰO* S{H%dj0 ,N[ʏeNd'>iQHͽ`1N)1g8>ԱDՇ Y_po Y,F;V`=k:/ݱ!ZWKLݚ3[niqIzcsJzNq@:N{鐆;6}1\Bkӥjc5NJZ\pr3Ǡb:m9<}M l>zcp?z?t IosS1B I{^ďE#~4\pۚ '8 Rc'(ۜ GG4Kb$zR)=~4I$d8kJ91oR9LIOJTsMBXbxoϦpk.N2NUp/M4*ݵޤm"}#֯;\ױCPH1p)as4%{TgDK0դ`g(=Z] Ÿ-|ex#Z5ЯO(LGz QIISz L1Rg SBzn@ N3H[ܜ ]ސ LGa9?9 qhUk^HtR1֝9Katt˓Z#8\"S^l䛺=(f UUJp iiۀ*.?N1$c& JhaN)!P?9@أi+ n"\7xFX3b㚨:֠$$?tXxҶ9ƷaH?Rc-S@-"N#֐?@Ҍe(=&@b.:qUqcH9 ׋ڡ(EiK9z0T)珯9dg-EpGCZǏ&HR*c]0 V_Z_[S+ΣޮCzxcOF#{ c'⣎2z?:IJ,enE_ [W=К,?Jxjl ScQ-ߖ.t5JIcD5;uWY"4MZZ KniAњZ))iRQ@ŢJu( ER((h(ZQ4v9H `S\dk,k:1Ս)2O*ՋVP% gj$TH 8SE(Zm-;R1(- ((ъ1:PIERRP1EJ(SIAHE-LP ъ~)1L |IӚ3Mb҃Ssޓ<❄8:)=hB֝Ly.{Pޓsړ?ZSsSzOSAnlsC5tau:U 1;)i]ٷRO5oTey\fqn\=%.hSKtqM&@7.E4\}st:ucDhfi pk:p:9?LT3Ozfv/ʼzה{kQwN=IڛB>(SҀdrXqJҐG==) ElP28K$ Rd%O) yOZZ!!JM恎si03j\9@i +is搸U$b J*t8ҡu3&AcϪK ڮ73Mƞ8H*mAs3O5CkaWVqH-OF`;XgҸ=)!Ly"XmJcֱtRUeFks;sǵrTuBjj4d9tec+EIYVW8iWљT9F?:L}kx'm TA]Yds{4&G+K#/,+\jqWTGdt!e nP EUw9UcJ~BbKn8F]ؤ2ǴZ˨/"& ]n=K t ~vY7{(+Xe*:U`cE8Of{F`Md\@A !҇ Rch44q1{cfx'(;F ï"8`7i$8oc@XGNOjvz1OʍŅ1؜I)fZ`$8$LӂqLB<{Npp "sQ,j7嫞ؖ9&dqz(5j Sr~?ZqMls4{ n~AsA8=sޙ# ^: ?c`xef6jV&1mj9˸Q"ZhM 0aADH><ہMrB.c(OΩI2lj8a`G֥YzEi٨ff4ifCQEQFh(RRQEQEQEQJ(/]=jf bq\6wCF,^CԥwG4zan4i<dOj2zF~Q-]FVw:hʸlԡBj:v4K"#waPh3-Ga\ܴ]tR1YE]ppJyO(w)lyi<*#U_i HOJBxLC\:S 稥c֮i pRQWenȆjkV٢ Lj9"D'Tn'5^c}1I([cRm݂փN=hmپD {(җS@8Qަ8ҀғJ$})qҀ4ހ֝bH;Q<~4րrh"WaH{P;w}4ҹ=:FCqL+=,Q'^(N:t2` i3=֤e}Q},Xr*DjcvS"zVݶ&˕YSG9Um簟c74ƹݶ^Dc?= sqڶuܧp"QM] ƘJ=AsOv\~}<棒VCDTxU\V7H¦Ykw@5=8- |WGՔ[ NE 4Z&ihh–J-R⁅R@)E_-$ 3 %gjޭ|3hIu *VI!zq<6ROQM #bL\!sKL(Kfi{PњS@&nhfniA4(٣44Rf4PhHIKI@( !@Z^i(4Ri)€jHiù1qڏʎi;)Ͻ7Sgoldfa5) N#9ɤ5)gI(yA'jR/ٖzRp*7}5\!ڗn6je r3_]DfYW0aֽ۰8,m_:T]+m^*˩3R +c!'OZF; Pu45 `tUHӀE4m ]7Q +G zVSpgZ06i%7&JzOV=+ΩI*) (`&m~G4'Y39:>H,<6NJvW;E V2)dsLB#҆?(۟ƗaJPrsڎH8]zS[W5xgrzi2rzW9}ذ=k 1͉MĩۚAҊO1~)\`R&y4rhz)95j Y$`RrIjTb!y\KmQ6vnE\}+έWEҥȵ]ԍ 8=6?:\Gғb9ߚP}sM=1(S`mP(3"ޜ Sá46 ϭ(n:SHdg"gw=܌6(S$Ÿ;z9s4.ޝ( s9"ORx80>zށSʘJMۀOznݬ]P=hZr*z.jުk*YZFCZ W1'4ތf]X;iUOM<4i稤`}hz&A I7q9Դy*{,ehcs\w ({-=?(PJT$]*)^pAcQўDg8FSb L)(Rփ(;~4R)sgIƃߊp;Ss p(N) ҝ) 4:2N 4Oך)r>XsjӚP%xu}jrΚyW*Fi2Ad:nqS,T1M&HR p^2A"mueM]YRR;\G^94<؀*9\yFW; #V ӷ˺A4~bgt7C)eu)TS(.F ¿xKѶ˨m@h5ȭ;}FC\k r4$AqX@ᫌ&a[V'֘mJ*s EH)iӅ!.(8qKP)إp.Bk \1U84ȭЖa\vyUBUbrƳAi[I&udtSy$VQڝ8=F ?*RW2a){(j8ɥ =) Q#$MG,)${]Ap>u(N{2r=*pUԲ. L'R+i\*4əҕ}T4Uyi,IPT4ⱝIOsx1+'98 ~47Ou؀TSK #g +ZCr( PnqM,B Iu╈t恂zv $\0"?#nƘ5ԀPO=)$$8֛'͏Qޘu}i[ңl= n;GayH[+qSG@1SBdQN+2`{85p%5v{w{V-${ ,!,&<](pU7Ēi584k+w?'J@rOҊC֓C R:A4cFi{ d5*)3hIʌwE5IURޤ{/n9cZd.+/A*~E gk}FxܯavģJԯi2?&R [iYa7Titm5j롛-K4fوt`O@2iTғwjL\A5)cbE1~:R96/drEpO4^HASV;cҞNJ&؊@n1@=UN|G)L=iG0ހNO^qw89ٸ))~ǩЧv})PH MB2M!~t,==h8)x\Blޛ@ qFO4Y$,U ^4ȈsWrĹhU$OaϩM)?68屓]0w9Kb$cN$a]q[r帠>48'Vdjw>) ֘ )۳P3ޞ44d98$(=p ,SI c")RmlhǩP2-9n+*R~#);X5]e%i]SیrAy8weHj%@.J @B1Ak_eg II=\jJ2ǡ]#tl:nqMX>zѼ昉j]!4g421@44f4ڐ~hP;Ӎ4PHi1ɤ+mUn2\wL**J@J>1^Hd%zqL*EX+M#9z$pzR˜q3#eX i[˹A*{JH,og(Vlrk>h$B*JT hAʫ`%OCN̠sM,Gz^s c֫\iNjZarKZGᔏTܢQ!4VU9Uc@hWs|Z]XX80##f]w qOAjZԼx럖BiH94=D\S؅VIPSfQRH>Zu PZ PvQJC<)Fi8v)1@ CR))Qڌb4 J("SisMp4~!ԹSii( 4Pm-fLPҝ(n8: py@ qK<=hB}i F?!Fx}-ҚZ$F*,ɠ KggiN94{2h;}i #&zZP8 2sSsHe[2">0VOR󩭮C"6LV2ZsS\؎h^epr*,ZuSTl}i¢z=ɩIU*3jA3֓?ʗ)y$ҊhHb班/aIIEqiRFFܤSs֓Tr.3G͞5pkL!k=}sҳtb$mǬN0n\vsZ;ji)-s֗F؀wcghOE}hĐzӾkoW/c7SOQ_Z:u-o[S߂;5Ґ}kVV9 Ȭ /#]pmbvfsi*.t_0G&U^`n\]}ekd7U@ dpĂOzz1ZЗ,Krj|O4pF2{KvFTgrU==(4&8.)nii ɦFxwsKqHcYf7ǭmiQOns֫OLhۖuv:ڜSү"|e0vB1VR k[3 ҔwC73zF7I{מ$Uԩ4ץkIs/Ijѭe@bT[X;l v_izAȭ򋋳*,1JDؗ3@4~i PFis;4u::#L@ZN)i"~)(23JT"+ҐҦ+LgdzƓnzi\;P;}*r:HWV J)ZaZ.';IP@<M& ;v~Ri=hSI>gG/qMSFy&JlyUIhq@`&!3>6XJv|ǵGqu-xr߻S=K"ȇ5^1ciϥ$^MhGV; 2Kո|R?u~V=͸sV]2lպU?_J:3~JJ~&iaSx7AV7G4YIN9|,9AFJ]mYL߹;銸VRDRf$ǍV$֩`[ Ke4<ZgJQ1.ic(4!@I֊`;QAsв2c:e)54w ZCY^ q1H:RhmjI-v}*mfbz5a2z)åPSgcisd.1 ֤."rUDME9## { JMG\LDf}is@44Ke(4gnis@ )1PJZ1@ !%6 ?Zi^柊 #)a^1M4 ^i~;-0ZB1ZMP%H++]VKGajťr9Ci5sΕU.<1erۙ5$UnWY\F ɉDv,8+t_۶y^bhJyڞWu<`kZAӮvT4\SbS)1H4biz{4;E0ԸR(Nis@ ڒP!M!R iB*JBPx▜E%6G4cCPi9C0\2AE4^Z(PniMFM&=) (=zRs@ |R| N3Ҩu8րqڝ84Oc֐tzx'KMqK>4IHS@Z:qJ>G$g֐=('|Pg֎8ssGGqΕrWN%5osaqٗcXJrqeI=VDk/5mfIҌ@4M`"HɌ*d'N7=cGӌ4YGf][\K՛&٣o(k'iUytl_R@XEk&!0>}L=MҐp;QӯS@K@Ҟ8OҐi1@ MqE0qҌ8OJ=M>)zH ;Ҁ8 iOq@ўsQ>c1=zL9cJN)R[.aԳjopJǠs~ujvLeޫEm# ֓AT])RV4#̩IiBJ&WtbUzsRʹD N˕MTـ֭&pyQ6$yJzEgi46_1Z~Kĸcj](tM5>`S./#i+/e3B(׵BY)oomMK. mD"Ϫ4eHRވ~ʒEkm>i*mKʪ}*΃j6YdܓC_f̐pwec|ҍZ,ǀM8'Q)NY6NĴ@r mhBݺU F1֝:Dէ^x3G&zA4wja@ c֠z*'^5]OΨ ]&n#eRn+Cj4F]H,4X[qڣ2MD{%9-Y(=z{$T8Lǵ(VVnfgee,xZeH0!t&KcqCӺft$S108#53ٴ5"hz. A?jӳB Řv=2yEZX$Eh`<҆⬋fTyzBJ^ؤ@ɣ֐ ڐvw:GޔuPu4}Z\qҀsF?Z;R iGj^p~ր9(T֎ҀJ;K>c=(“ތ1@qKE=);}h`R=GGl;ǵh7hS f,zMͥD3pLIsZ!aґ>s>Fޔ*āфet[ٖ)MͱR5c-BPՕKڔZ\h4Q!AK@ J)):RQ9k;)`ObE$QJҍyZԶ\Ut)KjMJr"i2Y55ksn 2;yr`Ul.̐yL"FHa+U$0p <hLK4b$.j0iҊ`4:Rf34Fi(4RP:Q@LRiQ@4hQ@(Pp4^H)ݨSF(~3HE0 )8tNKIځ@4%aIv)(SqHhҌԅE09N)M74@friends-app-0.92.0+14.04.20140306.1/tests/tests.pro0000644000015201777760000000041012306076767021604 0ustar pbusernogroup00000000000000isEmpty(PREFIX) { PREFIX = /usr/local } TEMPLATE = aux DEFINES += "INSTALL_PREFIX=\\\"$$PREFIX\\\"" # Install install_autopilot.path = $$PREFIX/lib/python2.7/dist-packages/ install_autopilot.files = ../tests/autopilot/friends_app INSTALLS = install_autopilot friends-app-0.92.0+14.04.20140306.1/NEWS0000644000015201777760000002034312306076767017264 0ustar pbusernogroup00000000000000NEW in 3.7.0 (UNRELEASED) ============ * Rewrite in QML using friends NEW in 3.6 (10/04/2012) ============ * Add disabling online search support, requires libunity 6.7 or later, thanks to Didier Roche (LP: #1054746) * Don't let the lens start gwibber-service unless data is needed (LP: #1046360) NEW in 3.5.91 (09/28/2012) ============ * Default action on the preview should be view, retweet could be dangerous (LP: #1058222) * work around bug in libunity's SocialPreview by explicitly setting title and subtitle (LP: #1058198) * decode the translated string for "at" (LP: #1055762) NEW in 3.5.90 (09/20/2012) ============ * Add support for Unity Previews, required libunity >= 6.5.1 * Translate gwibber.application (LP: #1052375) NEW in 3.5.4 (08/27/2012) ============ * Ported from libindicate to libmessaging-menu, thanks to Lars Uebernickel NEW in 3.5.3 (08/21/2012) ============ * Fixed all the GTK warnings, thanks to Jeff Licquia * Ported to Ubuntu Online Accounts and removed gwibber-accounts - New build dependencies include libsignon-glib and libaccounts-glib and runtime dependencies include gir1.2-accounts-1.0 and gir1.2-signon-1.0 plus the account plugins: * account-plugin-facebook * account-plugin-twitter * account-plugin-identica * account-plugin-flickr * account-plugin-foursquare NEW in 3.5.2 (06/14/2012) ============ * New twitter icons better matching twitter's guidelines, thanks Mark Tully (LP: #1012408) * foursquare: Changed to using urls based off Foursquare user ids rather than 'canonicalurl' due to 'canonicalurl' being removed from Foursquare's API (LP: #1012231) * foursquare: Added support for displaying 'likes' (new to Foursquare API) NEW in 3.5.1 (06/10/2012) ============ * facebook: Handle unicode characters everywhere we set the username (LP: #938667) * Fixed example-vala.vala send examples * Added inline python docs (Mark Tully) (LP: #576817) * removed the unused source for the mono bindings NEW in 3.5.0 (05/22/2012) ============ * removed unused service icons for jaiku and brightkite * removed unsupported service plugins: digg, friendfeed, pingfm, qaiku and buzz * Convert all mx.DateTime use to built-in datetime module. mx won't get ported to python3 (Barry Warsaw) (LP: #990145) * libgwibber-gtk: Fixed up the GwibberGtkEntry widget's alignment and icon search path NEW in 3.4.1 (04/25/2012) ============ * Use matching icons for unity lens categories * catch GLib.GError instead of GLib.Error (LP: #940182) * fallback to displaying full sender's name if the nickname is empty, even if show-fullname is false (LP: #985801) * foursquare: Don't crash on unicode characters in a users fullname, thanks to Raza Sayed (LP: #975437) * Defer calling unset on the seen HashMap until after we are done iterating it, it will resize making the iterator invalid. (LP: #959068) This is fixed in the 0.7 series of libgee * Specify /usr/bin/python in gwibber-accounts instead of relying on env (LP: #988385) NEW in 3.4.0 (04/03/2012) ============ * Check shorten-urls setting in the dispatcher before attempting to shorten, patch thanks to Martin T. (LP: #896639) * Removing unnecessary 'Image' link from entries with images obtained through imgpreview() (Mark Tully) (LP: #966285) * Replace all instances of a hashtag's occurance in a tweet at once rather than one at a time (Mark Tully) (LP: #966467) * Replace all instances of a nick's occurance in a tweet at once rather than one at a time (Mark Tully) (LP: #966467) * Catch errors from creating the pixbuf separately from sending the notification (LP: #940182) * Encode URLs to UTF8 before using them. (LP: #954374) NEW in 3.3.93 (03/21/2012) ============ * more fallbacks for dupe detection, try with link_name, image_name, and video_name (LP: #826323) * Protect against trying to create a pixbuf from an icon that doesn't exist (LP: #949395) NEW in 3.3.92 (03/15/2012) ============ * determine if we are DST or not, and set isdst in the time struct. This fixes the time delta being off by an hour for DST. * Make sure we don't keep references to Dee.ModelIter that has been removed (LP: #937607) * Use the SHA1 hash of the avatar URL instead of simply stripping the slashes, to avoid the resulting filename being too long to be created on ecryptfs volumes. (James Tait) (LP: #845374) * improved error handling to UrlLib2Downloader (David Klasinc) (LP: #946049) * facebook: try to handle data from facebook of type=question to prevent empty posts in the feed * since gtk+ 3.3.18 scroll events are getting blocked in the Gtk.Label for message, so we need to add the event mask for it. NEW in 3.3.91 (03/08/2012) ============ * Fix duplicate detection by falling back to comparing html, link_description, image_url and video_url (LP: #933694) * Fixed account migration path from 2.32 (desktopcouch) to 3.4 (sqlite) (LP: #740494) * gwibber-accounts crashed with TypeError in function(): Item 0: must be a subtype of gi.Boxed (LP: #936071) * Fixed position tracking so page down and page up move the appropriate number of tiles (LP: #629420) * more escaping of text that pango markup can't support * twitter: Use Twitter entities, improves getting hashtags, mentions, links, images, and videos. Thanks to Mark Tully (LP: #948092) NEW in 3.3.90 (02/23/2012) ============ * foursquare: display comments on checkins (Mark Tully) * Update LINGUAS to use all the provided translations (Robert Ancell) * make the messages stream default on startup * Updated favorite information to include if you liked a post * facebook: fixed dupes and empty posts (LP: #826323) NEW in 3.3.6 (02/16/2012) ============ * Translation fixes from Gabor Kelemen (LP: #926665) * Shutdown the service when using Quit from the menu if the unity lens isn't running. (LP: #923863) * Make searching in the lens faster using Dee's TreeIndex (Michal Hruby) * New StatusBar widget that will be used for displaying errors and other information in the future, right now it is only wired up to the LoadingStarted and LoadingComplete signals. NEW in 3.3.5 (02/15/2012) ============ No more dependency on the static python bindings for webkit-gtk2, gwibber-accounts now uses GIR and webkit-gtk3 Now requires gir1.2-gnomekeyring-1.0 and gir1.2-webkit-3.0 NEW in 3.3.4 (02/14/2012) ============ Completed dropped python multiprocessing and refactored the service threading. Including improving ability to catch individual operation failures. Bugs fixed: - Can't response or write to someone from their user information page (LP: #926081) - "Repeat"ing a status on StatusNet fails silently (Scott Sweeny) (LP: #923144) NEW in 3.3.3 (01/30/2012) ============ Greatly improved scrolling, but still not smooth scrolling. Inline comments and image previews are now enclosed in a Gtk.Expander and only load when expanded. This prevents the tiles resizing while scrolling and greatly improves performance while scrolling. Cleaned up all the Gtk 3.3 deprecations Now requires valac-0.16 Bugs fixed: - Fixed a memory leak in ActionBoxItem (LP: #909085) - Fixed race conditions in async image loading while scrolling (LP: #911619) - Hide window while gwibber exits (Michal Hruby) - Improved scrolling by enclosing comments and image previews in a Gtk.Expander, this fixes the tiles resizing while scrolling (LP: #875348) NEW in 3.3.2 (01/13/2012) ============ Now requires libunity >= 5.0.0 and libdee >= 1.0.0 * The gwibber-service now uses significantly less power by ensuring the multiprocessing pool is closed when operations are complete. * GtkSpell pkgconfig name has been renamed to gtkspell-3.0 Bugs fixed: - Cancel async image loading on tile reset, this actually breaks image loading but prevents crashing with gtk >= 3.3.6 (LP: #911619) - The x people liked this string should use plurals. (LP: #863039) - gwibber-service has a child that polls at 10Hz which is causing a lot of wakeup events Remove (LP: #906916) - Fixed disabling of gtkspell in build system (LP: #834780) - Renamed gtkspell-3.0 pkgconfig now that upstream has merged gtk3 support (LP: #860648) friends-app-0.92.0+14.04.20140306.1/README0000644000015201777760000000000012306076767017431 0ustar pbusernogroup00000000000000friends-app-0.92.0+14.04.20140306.1/AUTHORS0000644000015201777760000000005012306076767017626 0ustar pbusernogroup00000000000000Ken VanDine friends-app-0.92.0+14.04.20140306.1/friends-app.desktop0000644000015201777760000000052712306076767022372 0ustar pbusernogroup00000000000000[Desktop Entry] Name=Friends Type=Application Comment=What are your friends up to? Exec=friends-app %U Icon=friends Categories=Network; Keywords=friends;gwibber;facebook;twitter;identica;foursquare;linkedin;flickr;social;share; X-GNOME-Gettext-Domain=friends X-Ayatana-Appmenu-Show-Stubs=False X-Ubuntu-Touch=true X-Ubuntu-StageHint=SideStage friends-app-0.92.0+14.04.20140306.1/friends-app.pro0000644000015201777760000000075412306076767021523 0ustar pbusernogroup00000000000000TEMPLATE = subdirs DEFINES += "GETTEXT_PACKAGE=\\\""friends-app"\\\"" isEmpty(PREFIX) { PREFIX = /usr/local } DEFINES += "INSTALL_PREFIX=\\\"$$PREFIX\\\"" desktop.path = $$PREFIX/share/applications desktop.files += friends-app.desktop INSTALLS += desktop icon.path = $$PREFIX/share/icons icon.files += data/icons/hicolor INSTALLS += icon accounts.path = $$PREFIX/share/accounts/applications accounts.files += friends.application INSTALLS += accounts SUBDIRS += src qml po tests friends-app-0.92.0+14.04.20140306.1/po/0000755000015201777760000000000012306077157017173 5ustar pbusernogroup00000000000000friends-app-0.92.0+14.04.20140306.1/po/update-friends-app-pot0000755000015201777760000000122212306076767023414 0ustar pbusernogroup00000000000000#!/bin/sh set -e cd $(dirname $0) PO_DIR=$PWD PROGNAME=$(basename $0) # Create a list of files to scan GETTEXT_FILES=$(mktemp --tmpdir friends-app.lst.XXXXX) trap 'rm -f "$GETTEXT_FILES"' EXIT cd .. find \( -name '*.cpp' -o -name '*.qml' \) \ -a ! \( -path './debian/*' -o -path './build/*' -o -path './.bzr/*' \) | sort \ > $GETTEXT_FILES # Generate pot from our list xgettext \ --output $PO_DIR/auto-generated.pot \ --files-from $GETTEXT_FILES \ --qt --c++ \ --add-comments=TRANSLATORS \ --keyword=tr \ --package-name friends-app \ --copyright-holder "Canonical Ltd" echo "$PROGNAME: $PO_DIR/auto-generated.pot updated" friends-app-0.92.0+14.04.20140306.1/po/cs.po0000644000015201777760000000343212306077002020127 0ustar pbusernogroup00000000000000# Czech translation for friends-app # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the friends-app package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: friends-app\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-04-11 12:08-0400\n" "PO-Revision-Date: 2013-09-29 17:48+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2014-01-31 06:25+0000\n" "X-Generator: Launchpad (build 16916)\n" #: qml/friends-app.qml:54 msgid "Setup Accounts" msgstr "" #: qml/friends-app.qml:70 msgid "Share with your friends" msgstr "" #: qml/friends-app.qml:86 msgid "Timeline" msgstr "" #: qml/friends-app.qml:98 msgid "Top" msgstr "" #: qml/friends-app.qml:105 msgid "Refresh" msgstr "" #: qml/friends-app.qml:112 msgid "Post" msgstr "" #: qml/Post.qml:89 msgid "Compose" msgstr "" #: qml/Post.qml:160 qml/StatusUpdateTileDetails.qml:191 msgid "Send" msgstr "" #: qml/Post.qml:267 qml/StatusUpdateTileDetails.qml:217 msgid "An error occured" msgstr "" #: qml/RefreshBar.qml:28 qml/RefreshBar.qml:51 msgid "Pull down to refresh..." msgstr "" #: qml/RefreshBar.qml:33 msgid "Release to refresh..." msgstr "" #: qml/Setup.qml:33 msgid "No online accounts configured, you can add one in System Settings" msgstr "" #: qml/StatusUpdateTileDetails.qml:115 msgid "Reply" msgstr "" #: qml/StatusUpdateTile.qml:56 msgid "people liked this" msgstr "" #: qml/StatusUpdateTile.qml:56 msgid "person liked this" msgstr "" #: qml/TimeLine.qml:43 msgid " new update" msgstr "" #: qml/TimeLine.qml:43 msgid " new updates" msgstr "" friends-app-0.92.0+14.04.20140306.1/po/friends-app.pot0000644000015201777760000000322612306076767022140 0ustar pbusernogroup00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: friends-app\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-04-11 12:08-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" #: qml/friends-app.qml:54 msgid "Setup Accounts" msgstr "" #: qml/friends-app.qml:70 msgid "Share with your friends" msgstr "" #: qml/friends-app.qml:86 msgid "Timeline" msgstr "" #: qml/friends-app.qml:98 msgid "Top" msgstr "" #: qml/friends-app.qml:105 msgid "Refresh" msgstr "" #: qml/friends-app.qml:112 msgid "Post" msgstr "" #: qml/Post.qml:89 msgid "Compose" msgstr "" #: qml/Post.qml:160 qml/StatusUpdateTileDetails.qml:191 msgid "Send" msgstr "" #: qml/Post.qml:267 qml/StatusUpdateTileDetails.qml:217 msgid "An error occured" msgstr "" #: qml/RefreshBar.qml:28 qml/RefreshBar.qml:51 msgid "Pull down to refresh..." msgstr "" #: qml/RefreshBar.qml:33 msgid "Release to refresh..." msgstr "" #: qml/Setup.qml:33 msgid "No online accounts configured, you can add one in System Settings" msgstr "" #: qml/StatusUpdateTileDetails.qml:115 msgid "Reply" msgstr "" #: qml/StatusUpdateTile.qml:56 msgid "people liked this" msgstr "" #: qml/StatusUpdateTile.qml:56 msgid "person liked this" msgstr "" #: qml/TimeLine.qml:43 msgid " new update" msgstr "" #: qml/TimeLine.qml:43 msgid " new updates" msgstr "" friends-app-0.92.0+14.04.20140306.1/po/de.po0000644000015201777760000000343412306077002020114 0ustar pbusernogroup00000000000000# German translation for friends-app # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the friends-app package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: friends-app\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-04-11 12:08-0400\n" "PO-Revision-Date: 2014-02-08 19:27+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2014-02-09 06:53+0000\n" "X-Generator: Launchpad (build 16916)\n" #: qml/friends-app.qml:54 msgid "Setup Accounts" msgstr "" #: qml/friends-app.qml:70 msgid "Share with your friends" msgstr "" #: qml/friends-app.qml:86 msgid "Timeline" msgstr "" #: qml/friends-app.qml:98 msgid "Top" msgstr "" #: qml/friends-app.qml:105 msgid "Refresh" msgstr "" #: qml/friends-app.qml:112 msgid "Post" msgstr "" #: qml/Post.qml:89 msgid "Compose" msgstr "" #: qml/Post.qml:160 qml/StatusUpdateTileDetails.qml:191 msgid "Send" msgstr "" #: qml/Post.qml:267 qml/StatusUpdateTileDetails.qml:217 msgid "An error occured" msgstr "" #: qml/RefreshBar.qml:28 qml/RefreshBar.qml:51 msgid "Pull down to refresh..." msgstr "" #: qml/RefreshBar.qml:33 msgid "Release to refresh..." msgstr "" #: qml/Setup.qml:33 msgid "No online accounts configured, you can add one in System Settings" msgstr "" #: qml/StatusUpdateTileDetails.qml:115 msgid "Reply" msgstr "" #: qml/StatusUpdateTile.qml:56 msgid "people liked this" msgstr "" #: qml/StatusUpdateTile.qml:56 msgid "person liked this" msgstr "" #: qml/TimeLine.qml:43 msgid " new update" msgstr "" #: qml/TimeLine.qml:43 msgid " new updates" msgstr "" friends-app-0.92.0+14.04.20140306.1/po/pt_BR.po0000644000015201777760000000426412306077002020534 0ustar pbusernogroup00000000000000# Brazilian Portuguese translation for friends-app # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the friends-app package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: friends-app\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-04-11 12:08-0400\n" "PO-Revision-Date: 2013-08-30 06:55+0000\n" "Last-Translator: Tiago Hillebrandt \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2014-01-31 06:25+0000\n" "X-Generator: Launchpad (build 16916)\n" #: qml/friends-app.qml:54 msgid "Setup Accounts" msgstr "Configurar contas" #: qml/friends-app.qml:70 msgid "Share with your friends" msgstr "Compartilhar com seus amigos" #: qml/friends-app.qml:86 msgid "Timeline" msgstr "Linha do tempo" #: qml/friends-app.qml:98 msgid "Top" msgstr "Topo" #: qml/friends-app.qml:105 msgid "Refresh" msgstr "Atualizar" #: qml/friends-app.qml:112 msgid "Post" msgstr "Publicar" #: qml/Post.qml:89 msgid "Compose" msgstr "Escrever" #: qml/Post.qml:160 qml/StatusUpdateTileDetails.qml:191 msgid "Send" msgstr "Enviar" #: qml/Post.qml:267 qml/StatusUpdateTileDetails.qml:217 msgid "An error occured" msgstr "Houve um erro" #: qml/RefreshBar.qml:28 qml/RefreshBar.qml:51 msgid "Pull down to refresh..." msgstr "Arraste para baixo para atualizar..." #: qml/RefreshBar.qml:33 msgid "Release to refresh..." msgstr "Solte para atualizar..." #: qml/Setup.qml:33 msgid "No online accounts configured, you can add one in System Settings" msgstr "" "Nenhuma conta on-line está configurada, você pode adicionar uma nas " "Configurações do sistema" #: qml/StatusUpdateTileDetails.qml:115 msgid "Reply" msgstr "Responder" #: qml/StatusUpdateTile.qml:56 msgid "people liked this" msgstr "pessoas curtiram isso" #: qml/StatusUpdateTile.qml:56 msgid "person liked this" msgstr "pessoa curtiu isso" #: qml/TimeLine.qml:43 msgid " new update" msgstr " nova atualização" #: qml/TimeLine.qml:43 msgid " new updates" msgstr " novas atualizações" friends-app-0.92.0+14.04.20140306.1/po/ms.po0000644000015201777760000000413212306077002020137 0ustar pbusernogroup00000000000000# Malay translation for friends-app # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the friends-app package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: friends-app\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-04-11 12:08-0400\n" "PO-Revision-Date: 2013-12-14 06:03+0000\n" "Last-Translator: abuyop \n" "Language-Team: Malay \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2014-01-31 06:25+0000\n" "X-Generator: Launchpad (build 16916)\n" #: qml/friends-app.qml:54 msgid "Setup Accounts" msgstr "Persediaan Akaun" #: qml/friends-app.qml:70 msgid "Share with your friends" msgstr "Kongsi dengan rakan anda" #: qml/friends-app.qml:86 msgid "Timeline" msgstr "Garis Masa" #: qml/friends-app.qml:98 msgid "Top" msgstr "Atas" #: qml/friends-app.qml:105 msgid "Refresh" msgstr "Segar Semula" #: qml/friends-app.qml:112 msgid "Post" msgstr "Pos" #: qml/Post.qml:89 msgid "Compose" msgstr "Karang" #: qml/Post.qml:160 qml/StatusUpdateTileDetails.qml:191 msgid "Send" msgstr "Hantar" #: qml/Post.qml:267 qml/StatusUpdateTileDetails.qml:217 msgid "An error occured" msgstr "Ralat telah berlaku" #: qml/RefreshBar.qml:28 qml/RefreshBar.qml:51 msgid "Pull down to refresh..." msgstr "Leret ke bawah untuk segar semula" #: qml/RefreshBar.qml:33 msgid "Release to refresh..." msgstr "Lepaskan untuk segar semula..." #: qml/Setup.qml:33 msgid "No online accounts configured, you can add one in System Settings" msgstr "" "Tiada akaun atas talian dikonfigur, anda boleh tambah satu di dalam Tetapan " "Sistem" #: qml/StatusUpdateTileDetails.qml:115 msgid "Reply" msgstr "Balas" #: qml/StatusUpdateTile.qml:56 msgid "people liked this" msgstr "orang menyukai ini" #: qml/StatusUpdateTile.qml:56 msgid "person liked this" msgstr "individu menyukai ini" #: qml/TimeLine.qml:43 msgid " new update" msgstr " kemaskini baharu" #: qml/TimeLine.qml:43 msgid " new updates" msgstr " kemaskini baharu" friends-app-0.92.0+14.04.20140306.1/po/fa.po0000644000015201777760000000343612306077002020114 0ustar pbusernogroup00000000000000# Persian translation for friends-app # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the friends-app package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: friends-app\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-04-11 12:08-0400\n" "PO-Revision-Date: 2013-11-01 10:55+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2014-01-31 06:25+0000\n" "X-Generator: Launchpad (build 16916)\n" #: qml/friends-app.qml:54 msgid "Setup Accounts" msgstr "" #: qml/friends-app.qml:70 msgid "Share with your friends" msgstr "" #: qml/friends-app.qml:86 msgid "Timeline" msgstr "" #: qml/friends-app.qml:98 msgid "Top" msgstr "" #: qml/friends-app.qml:105 msgid "Refresh" msgstr "" #: qml/friends-app.qml:112 msgid "Post" msgstr "" #: qml/Post.qml:89 msgid "Compose" msgstr "" #: qml/Post.qml:160 qml/StatusUpdateTileDetails.qml:191 msgid "Send" msgstr "" #: qml/Post.qml:267 qml/StatusUpdateTileDetails.qml:217 msgid "An error occured" msgstr "" #: qml/RefreshBar.qml:28 qml/RefreshBar.qml:51 msgid "Pull down to refresh..." msgstr "" #: qml/RefreshBar.qml:33 msgid "Release to refresh..." msgstr "" #: qml/Setup.qml:33 msgid "No online accounts configured, you can add one in System Settings" msgstr "" #: qml/StatusUpdateTileDetails.qml:115 msgid "Reply" msgstr "" #: qml/StatusUpdateTile.qml:56 msgid "people liked this" msgstr "" #: qml/StatusUpdateTile.qml:56 msgid "person liked this" msgstr "" #: qml/TimeLine.qml:43 msgid " new update" msgstr "" #: qml/TimeLine.qml:43 msgid " new updates" msgstr "" friends-app-0.92.0+14.04.20140306.1/po/es.po0000644000015201777760000000416212306077002020132 0ustar pbusernogroup00000000000000# Spanish translation for friends-app # Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 # This file is distributed under the same license as the friends-app package. # FIRST AUTHOR , 2010. # msgid "" msgstr "" "Project-Id-Version: friends-app\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-04-11 12:08-0400\n" "PO-Revision-Date: 2013-08-31 08:00+0000\n" "Last-Translator: Adolfo Jayme \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2014-01-31 06:25+0000\n" "X-Generator: Launchpad (build 16916)\n" "Language: es\n" #: qml/friends-app.qml:54 msgid "Setup Accounts" msgstr "Configurar cuentas" #: qml/friends-app.qml:70 msgid "Share with your friends" msgstr "Compartir con amigos" #: qml/friends-app.qml:86 msgid "Timeline" msgstr "Cronología" #: qml/friends-app.qml:98 msgid "Top" msgstr "Arriba" #: qml/friends-app.qml:105 msgid "Refresh" msgstr "Actualizar" #: qml/friends-app.qml:112 msgid "Post" msgstr "Publicar" #: qml/Post.qml:89 msgid "Compose" msgstr "Redactar" #: qml/Post.qml:160 qml/StatusUpdateTileDetails.qml:191 msgid "Send" msgstr "Enviar" #: qml/Post.qml:267 qml/StatusUpdateTileDetails.qml:217 msgid "An error occured" msgstr "Ocurrió un error" #: qml/RefreshBar.qml:28 qml/RefreshBar.qml:51 msgid "Pull down to refresh..." msgstr "Deslice hacia abajo para actualizar…" #: qml/RefreshBar.qml:33 msgid "Release to refresh..." msgstr "Suelte para actualizar…" #: qml/Setup.qml:33 msgid "No online accounts configured, you can add one in System Settings" msgstr "" "No se han configurado cuentas. Añada una en Configuración del sistema" #: qml/StatusUpdateTileDetails.qml:115 msgid "Reply" msgstr "Responder" #: qml/StatusUpdateTile.qml:56 msgid "people liked this" msgstr "personas les gusta esto" #: qml/StatusUpdateTile.qml:56 msgid "person liked this" msgstr "persona le gusta esto" #: qml/TimeLine.qml:43 msgid " new update" msgstr " actualización nueva" #: qml/TimeLine.qml:43 msgid " new updates" msgstr " actualizaciones nuevas" friends-app-0.92.0+14.04.20140306.1/po/po.pro0000644000015201777760000000111312306076767020335 0ustar pbusernogroup00000000000000TEMPLATE = subdirs DEFINES += GETTEXT_PACKAGE="friends-app" system(./generate_mo.sh) MO_FILES = $$system(ls *.mo) install_mo_commands = for(mo_file, MO_FILES) { mo_name = $$replace(mo_file,.mo,) mo_targetpath = $(INSTALL_ROOT)/usr/share/locale/$${mo_name}/LC_MESSAGES mo_target = $${mo_targetpath}/friends-app.mo !isEmpty(install_mo_commands): install_mo_commands += && install_mo_commands += test -d $$mo_targetpath || mkdir -p $$mo_targetpath install_mo_commands += && cp $$mo_file $$mo_target } install.commands = $$install_mo_commands QMAKE_EXTRA_TARGETS += install friends-app-0.92.0+14.04.20140306.1/po/uk.po0000644000015201777760000000347212306077002020145 0ustar pbusernogroup00000000000000# Ukrainian translation for friends-app # Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 # This file is distributed under the same license as the friends-app package. # FIRST AUTHOR , 2010. # msgid "" msgstr "" "Project-Id-Version: friends-app\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-04-11 12:08-0400\n" "PO-Revision-Date: 2013-07-08 14:12+0000\n" "Last-Translator: Ken VanDine \n" "Language-Team: Ukrainian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2014-01-31 06:25+0000\n" "X-Generator: Launchpad (build 16916)\n" "Language: uk\n" #: qml/friends-app.qml:54 msgid "Setup Accounts" msgstr "" #: qml/friends-app.qml:70 msgid "Share with your friends" msgstr "" #: qml/friends-app.qml:86 msgid "Timeline" msgstr "" #: qml/friends-app.qml:98 msgid "Top" msgstr "" #: qml/friends-app.qml:105 msgid "Refresh" msgstr "" #: qml/friends-app.qml:112 msgid "Post" msgstr "" #: qml/Post.qml:89 msgid "Compose" msgstr "" #: qml/Post.qml:160 qml/StatusUpdateTileDetails.qml:191 msgid "Send" msgstr "Надіслати" #: qml/Post.qml:267 qml/StatusUpdateTileDetails.qml:217 msgid "An error occured" msgstr "" #: qml/RefreshBar.qml:28 qml/RefreshBar.qml:51 msgid "Pull down to refresh..." msgstr "" #: qml/RefreshBar.qml:33 msgid "Release to refresh..." msgstr "" #: qml/Setup.qml:33 msgid "No online accounts configured, you can add one in System Settings" msgstr "" #: qml/StatusUpdateTileDetails.qml:115 msgid "Reply" msgstr "" #: qml/StatusUpdateTile.qml:56 msgid "people liked this" msgstr "" #: qml/StatusUpdateTile.qml:56 msgid "person liked this" msgstr "" #: qml/TimeLine.qml:43 msgid " new update" msgstr "" #: qml/TimeLine.qml:43 msgid " new updates" msgstr "" friends-app-0.92.0+14.04.20140306.1/po/fr.po0000644000015201777760000000343412306077002020133 0ustar pbusernogroup00000000000000# French translation for friends-app # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the friends-app package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: friends-app\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-04-11 12:08-0400\n" "PO-Revision-Date: 2013-09-13 21:53+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2014-01-31 06:25+0000\n" "X-Generator: Launchpad (build 16916)\n" #: qml/friends-app.qml:54 msgid "Setup Accounts" msgstr "" #: qml/friends-app.qml:70 msgid "Share with your friends" msgstr "" #: qml/friends-app.qml:86 msgid "Timeline" msgstr "" #: qml/friends-app.qml:98 msgid "Top" msgstr "" #: qml/friends-app.qml:105 msgid "Refresh" msgstr "" #: qml/friends-app.qml:112 msgid "Post" msgstr "" #: qml/Post.qml:89 msgid "Compose" msgstr "" #: qml/Post.qml:160 qml/StatusUpdateTileDetails.qml:191 msgid "Send" msgstr "" #: qml/Post.qml:267 qml/StatusUpdateTileDetails.qml:217 msgid "An error occured" msgstr "" #: qml/RefreshBar.qml:28 qml/RefreshBar.qml:51 msgid "Pull down to refresh..." msgstr "" #: qml/RefreshBar.qml:33 msgid "Release to refresh..." msgstr "" #: qml/Setup.qml:33 msgid "No online accounts configured, you can add one in System Settings" msgstr "" #: qml/StatusUpdateTileDetails.qml:115 msgid "Reply" msgstr "" #: qml/StatusUpdateTile.qml:56 msgid "people liked this" msgstr "" #: qml/StatusUpdateTile.qml:56 msgid "person liked this" msgstr "" #: qml/TimeLine.qml:43 msgid " new update" msgstr "" #: qml/TimeLine.qml:43 msgid " new updates" msgstr "" friends-app-0.92.0+14.04.20140306.1/po/generate_mo.sh0000755000015201777760000000142612306076767022030 0ustar pbusernogroup00000000000000#!/bin/sh # # Copyright 2012 Canonical Ltd. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License as published by # the Free Software Foundation; version 3. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public License # along with this program. If not, see . # for f in `find $TARGET -type f -name "*.po"` do FILENAME=${f%.*} EXTENSION=${f#*.} msgfmt $f -o $FILENAME'.mo' done friends-app-0.92.0+14.04.20140306.1/po/ca.po0000644000015201777760000000343612306077002020111 0ustar pbusernogroup00000000000000# Catalan translation for friends-app # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the friends-app package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: friends-app\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-04-11 12:08-0400\n" "PO-Revision-Date: 2013-12-24 16:25+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Catalan \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2014-01-31 06:25+0000\n" "X-Generator: Launchpad (build 16916)\n" #: qml/friends-app.qml:54 msgid "Setup Accounts" msgstr "" #: qml/friends-app.qml:70 msgid "Share with your friends" msgstr "" #: qml/friends-app.qml:86 msgid "Timeline" msgstr "" #: qml/friends-app.qml:98 msgid "Top" msgstr "" #: qml/friends-app.qml:105 msgid "Refresh" msgstr "" #: qml/friends-app.qml:112 msgid "Post" msgstr "" #: qml/Post.qml:89 msgid "Compose" msgstr "" #: qml/Post.qml:160 qml/StatusUpdateTileDetails.qml:191 msgid "Send" msgstr "" #: qml/Post.qml:267 qml/StatusUpdateTileDetails.qml:217 msgid "An error occured" msgstr "" #: qml/RefreshBar.qml:28 qml/RefreshBar.qml:51 msgid "Pull down to refresh..." msgstr "" #: qml/RefreshBar.qml:33 msgid "Release to refresh..." msgstr "" #: qml/Setup.qml:33 msgid "No online accounts configured, you can add one in System Settings" msgstr "" #: qml/StatusUpdateTileDetails.qml:115 msgid "Reply" msgstr "" #: qml/StatusUpdateTile.qml:56 msgid "people liked this" msgstr "" #: qml/StatusUpdateTile.qml:56 msgid "person liked this" msgstr "" #: qml/TimeLine.qml:43 msgid " new update" msgstr "" #: qml/TimeLine.qml:43 msgid " new updates" msgstr "" friends-app-0.92.0+14.04.20140306.1/po/af.po0000644000015201777760000000345512306077002020115 0ustar pbusernogroup00000000000000# Afrikaans translation for friends-app # Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 # This file is distributed under the same license as the friends-app package. # FIRST AUTHOR , 2011. # msgid "" msgstr "" "Project-Id-Version: friends-app\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-04-11 12:08-0400\n" "PO-Revision-Date: 2013-07-08 14:12+0000\n" "Last-Translator: Ken VanDine \n" "Language-Team: Afrikaans \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2014-01-31 06:25+0000\n" "X-Generator: Launchpad (build 16916)\n" "Language: af\n" #: qml/friends-app.qml:54 msgid "Setup Accounts" msgstr "" #: qml/friends-app.qml:70 msgid "Share with your friends" msgstr "" #: qml/friends-app.qml:86 msgid "Timeline" msgstr "" #: qml/friends-app.qml:98 msgid "Top" msgstr "" #: qml/friends-app.qml:105 msgid "Refresh" msgstr "" #: qml/friends-app.qml:112 msgid "Post" msgstr "" #: qml/Post.qml:89 msgid "Compose" msgstr "" #: qml/Post.qml:160 qml/StatusUpdateTileDetails.qml:191 msgid "Send" msgstr "Stuur" #: qml/Post.qml:267 qml/StatusUpdateTileDetails.qml:217 msgid "An error occured" msgstr "" #: qml/RefreshBar.qml:28 qml/RefreshBar.qml:51 msgid "Pull down to refresh..." msgstr "" #: qml/RefreshBar.qml:33 msgid "Release to refresh..." msgstr "" #: qml/Setup.qml:33 msgid "No online accounts configured, you can add one in System Settings" msgstr "" #: qml/StatusUpdateTileDetails.qml:115 msgid "Reply" msgstr "" #: qml/StatusUpdateTile.qml:56 msgid "people liked this" msgstr "" #: qml/StatusUpdateTile.qml:56 msgid "person liked this" msgstr "" #: qml/TimeLine.qml:43 msgid " new update" msgstr "" #: qml/TimeLine.qml:43 msgid " new updates" msgstr "" friends-app-0.92.0+14.04.20140306.1/qml/0000755000015201777760000000000012306077157017346 5ustar pbusernogroup00000000000000friends-app-0.92.0+14.04.20140306.1/qml/ThreadView.qml0000644000015201777760000000311412306076767022130 0ustar pbusernogroup00000000000000import QtQuick 2.0 import Ubuntu.Components 0.1 import Friends 0.2 Item { id: threadView height: threadListView.height width: parent.width anchors { left: parent.left right: parent.right bottomMargin: units.gu(2) } StreamModel { id: streamModel stream: "reply_to/"+messageId } FriendsUtils { id: friendsUtils } Column { id: threadListView anchors { left: parent.left right: parent.right } width: parent.width height: childrenRect.height Repeater { id: repeater width: parent.width model: streamModel delegate: Item { id: threadItem anchors { right: parent.right left: parent.left leftMargin: units.gu(4) bottomMargin: units.gu(2) } height: childrenRect.height AvatarImage { id: avatarImage anchors { left: parent.left top: parent. top margins: units.gu(1) } } StatusUpdateContent { anchors { leftMargin: units.gu(1) left: avatarImage.right right: parent.right top: parent.top } } } } } } friends-app-0.92.0+14.04.20140306.1/qml/qml.pro0000644000015201777760000000032512306076767020667 0ustar pbusernogroup00000000000000isEmpty(PREFIX) { PREFIX = /usr/local } TEMPLATE = aux QMAKE_RESOURCE_FLAGS += -root . # Install install_resources.path = $$PREFIX/share/friends-app/ install_resources.files = . INSTALLS = install_resources friends-app-0.92.0+14.04.20140306.1/qml/Setup.qml0000644000015201777760000000322212306077002021145 0ustar pbusernogroup00000000000000/* * Copyright (C) 2013 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ import QtQuick 2.0 import Ubuntu.Components 0.1 Column { Label { id: header text: i18n.tr("No online accounts configured") anchors.horizontalCenter: parent.horizontalCenter fontSize: "large" font.bold: true } Label { text: i18n.tr("To configure accounts, go to System Settings and choose \"Online Accounts\".") wrapMode: Text.WrapAtWordBoundaryOrAnywhere horizontalAlignment: Text.AlignHCenter anchors.horizontalCenter: parent.horizontalCenter width: parent.width } // Item { // height: units.gu(4) // width: parent.width // } // Button { // id: addButton // anchors.horizontalCenter: parent.horizontalCenter // text: i18n.tr("Add account...") // width: header.width - units.gu(2)//Math.min(header.width, parent.width * 3/4) // onClicked: { // console.log ("Add Accounts activated"); // Qt.openUrlExternally("settings:///system/credentials"); // } // } } friends-app-0.92.0+14.04.20140306.1/qml/Feed.qml0000644000015201777760000001171212306076767020734 0ustar pbusernogroup00000000000000/* * Copyright 2013 Canonical Ltd. * * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * telephony-app is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ import QtQuick 2.0 import Ubuntu.Components 0.1 import Ubuntu.Components.ListItems 0.1 as ListItem import Friends 0.2 Page { anchors.fill: parent clip: true property alias flickable: listView property alias stream: streamModel.stream property alias service: streamModel.service property string search /* Jump to the bottom of the view and set the currentIndex */ function jumpToBottom () { listView.currentIndex = listView.count - 1; listView.positionViewAtIndex(listView.currentIndex, ListView.End); } /* Jump to the top of the view and set the currentIndex */ function jumpToTop () { listView.positionViewAtIndex(0, ListView.Contain); listView.currentIndex = 0; } Component.onCompleted: { listView.focus = true } Timer { id: updateTimestampsTimer running: true interval: Qt.application.active ? 30000 : 120000 repeat: true } Component { id: statusDelegate ListItem.Empty { height: tile.height StatusUpdateTile { id: tile Connections { target: updateTimestampsTimer onTriggered: { tile.recalculateTimeString(); } } } } } StreamModel { id: streamModel objectName: "streamModel" } RefreshBar { id: refreshBar opacity: visible ? 1.0 : 0.0 visible: listView.dragging && listView.onTop Behavior on opacity { NumberAnimation { duration: 200; } } } ListView { id: listView objectName: "listView" anchors { fill: parent } // Save scrolling state when app is closed :) StateSaver.properties: contentY property bool onTop : listView.contentY <= -main.header.height opacity: 1 spacing: units.gu(1) model: streamModel snapMode: ListView.NoSnap cacheBuffer: parent.height boundsBehavior: Flickable.DragOverBounds currentIndex: 0 clip: true delegate: statusDelegate preferredHighlightBegin: 0 preferredHighlightEnd: preferredHighlightBegin /* We need highlightRangeMode for keyboard navigation, * but it forces the page header to stay hidden * https://bugs.launchpad.net/ubuntu-ui-toolkit/+bug/1201936 * * highlightRangeMode: ListView.StrictlyEnforceRange */ /* Expand details on enter */ Keys.onReturnPressed: { listView.currentItem.showConversation() } /* Handle home and end nav */ Keys.onPressed: { if (event.key === Qt.Key_Home) { jumpToTop(); } else if (event.key === Qt.Key_End) { jumpToBottom(); } } } Scrollbar { flickableItem: listView align: Qt.AlignTrailing } tools: ToolbarItems { ToolbarButton { action: topAction } ToolbarButton { action: refreshAction } ToolbarButton { action: postAction } Item { anchors { top: parent.top bottom: parent.bottom margins: units.gu(1) } width: previewImagesLabel.width CheckBox { id: previewImagesSwitch height: units.gu(3.8) checked: true anchors.horizontalCenter: parent.horizontalCenter onCheckedChanged: { previewImagesSetting.value = checked } Connections { target: settingsStorage onSettingsLoaded: { previewImagesSwitch.checked = previewImagesSetting.value } } } Label { id: previewImagesLabel anchors { top: previewImagesSwitch.bottom bottom: parent.bottom } color: "gray" font.pixelSize: units.dp(11) text: i18n.tr("Preview Images") } } } } friends-app-0.92.0+14.04.20140306.1/qml/ReplyArea.qml0000644000015201777760000000360412306076767021756 0ustar pbusernogroup00000000000000import QtQuick 2.0 import Ubuntu.Components 0.1 // This element shows either the reply/reply all buttons // Or a field to compose the reply Item { id: replyArea height: entryField.visible ? units.gu(10) : units.gu(5) function reset() { entryField.visible = false } Button { id: replyButton visible: !entryField.visible width: units.gu(10) anchors { leftMargin: units.gu(5) left: parent.left top: parent.top bottom: parent.bottom } text: metaInfo.isMicroblogging ? i18n.tr("Reply"): i18n.tr("Comment") property var lastCursorPosition onClicked : { entryField.visible = true if(metaInfo.isMicroblogging) entryField.setText("@"+senderNick) } } Button { id: replyAllButton // Only show if we are using micrblogging. visible: !entryField.visible && metaInfo.isMicroblogging width: replyButton.width anchors { left: replyButton.right leftMargin: units.gu(1) top: parent.top bottom: parent.bottom } text: i18n.tr("Reply All") property var lastCursorPosition onClicked : { entryField.visible = true if(metaInfo.isMicroblogging) { var text = "@"+senderNick; var nicks = message.match(/[@][\w]+/g); if (nicks !== null) { for(var i = 0; i < nicks.length; ++i) { text += " " + nicks[i]; } } entryField.setText(text) } } } EntryField { id: entryField visible: false anchors.fill: parent hideable: true accountIds: [accountId] replyToId: messageId } } friends-app-0.92.0+14.04.20140306.1/qml/FeedTabs.qml0000644000015201777760000000056512306076767021552 0ustar pbusernogroup00000000000000import QtQuick 2.0 import Ubuntu.Components 0.1 Tabs { id: feedTabs clip: true function jumpToTop() { feedTabs.selectedTab.jumpToTop() } FeedTab { id: timeline title: i18n.tr("Timeline") stream: "" //all } FeedTab { id: mentions title: i18n.tr("Mentions") stream: "mentions" } } friends-app-0.92.0+14.04.20140306.1/qml/Post.qml0000644000015201777760000001166512306076767021025 0ustar pbusernogroup00000000000000/* * Copyright (C) 2013 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ import QtQuick 2.0 import Ubuntu.Components 0.1 import Ubuntu.Components.ListItems 0.1 as ListItem import Ubuntu.Components.Popups 0.1 import Ubuntu.OnlineAccounts 0.1 import Friends 0.2 Item { id: post anchors { fill: parent } EntryField { id: entry anchors { top: parent.top left: parent.left right: parent.right topMargin: units.gu(1) } height: units.gu(8) hideable: false accountIds: { var result = [] for (var i=0; i -1) { console.log (serviceName + " Supports send"); /* FIXME: we should get the iconName and serviceName from the accountService but I am not sure we can access that from JS */ accountsModel.append({ "displayName": displayName, "id": accountId, "provider": serviceName, "accountIcon": iconName, "sendEnabled": true }); } } } } ListModel { id: accountsModel } Item { id: accountsArea width: parent.width anchors { top: entry.bottom topMargin: units.gu(5) } Column { id: accountsView width: parent.width spacing: units.gu(1) Repeater { width: parent.width model: accountsModel delegate: accountDelegate } } Component { id: accountDelegate ListItem.Standard { text: displayName opacity: sw.checked ? 1.0 : 0.3 iconName: accountIcon width: parent.width height: childrenRect.height Component.onCompleted: { //this fixes height if no icon can be found if(icon) { height = icon.height } } control: CheckBox { id: sw checked: sendEnabled onCheckedChanged: { accountsModel.setProperty(index, "sendEnabled", sw.checked); } } showDivider: false } } } Component { id: errorPopover Popover { Column { anchors { left: parent.left top: parent.top right: parent.right } ListItem.Standard { text: i18n.tr("An error occured") } } onVisibleChanged: { if (visible == false) { failed = false; } } } } } friends-app-0.92.0+14.04.20140306.1/qml/StatusUpdateTile.qml0000644000015201777760000001165312306076767023341 0ustar pbusernogroup00000000000000/* * Copyright 2012 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ import QtQuick 2.0 import QtGraphicalEffects 1.0 import Ubuntu.Components 0.1 import Ubuntu.Components.ListItems 0.1 as ListItem import Ubuntu.Components.Popups 0.1 import Friends 0.2 Item { id: statusUpdateTile height: { var baseHeight = statusUpdateContent.height + statusUpdateAttachement.height if(metaInfo.hasContent) return baseHeight + units.gu(2) else return baseHeight + units.gu(1) } anchors { left: parent.left right: parent.right } MetaInfo { id: metaInfo } //Forward properties property bool liked : model.liked property bool fromMe: model.fromMe property string message: model.message property string service: model.service property string linkUrl: model.linkUrl property string linkName: model.linkName property string linkDescription: model.linkDescription property string avatar: model.avatar property string location: model.location property string sender: model.sender property string linkPicture: model.linkPicture property int latitude: model.latitude property int longitude: model.longitude property string messageId: model.messageId property string stream: model.stream property string senderNick: model.senderNick property string url: model.url property string accountId: model.accountId function showConversation() { main.addConversation(statusUpdateTile) } property string timeString: friendsUtils.createTimeString(timestamp) property int likeCount: { if(likes == 0) { if(liked) return 1 else return 0 } return likes } property string likesString: likeCount > 1 ? i18n.tr("people liked this") : i18n.tr("person liked this") property string icon: "images/"+service+".png" function recalculateTimeString() { statusUpdateTile.timeString = friendsUtils.createTimeString(timestamp); } FriendsUtils { id: friendsUtils } FriendsDispatcher { id: friends onRetweetComplete: { retweetSpinner.visible = false; if (success) { console.log ("Retweet completed successfully"); } else { console.log ("Retweet failed: " + errorMessage); } } } // Keep below content so links are still clickable MouseArea { anchors.fill: statusUpdateTile onClicked: { showConversation() } } AvatarImage { id: avatarImage anchors { left: parent.left leftMargin: units.gu(1) } } Image { id: privateIcon anchors { right: avatarImage.right bottom: avatarImage.bottom bottomMargin: units.dp(3) rightMargin: units.dp(3) } source: "images/private.png" asynchronous: true visible: stream === "private" } Image { id: replyIcon anchors { right: avatarImage.right bottom: avatarImage.bottom bottomMargin: units.dp(3) rightMargin: units.dp(3) } source: "images/replies.png" asynchronous: true visible: stream === "mentions" } Image { id: serviceIcon anchors { left: parent.left top: avatarImage.bottom topMargin: units.gu(1) leftMargin: units.gu(1) bottomMargin: units.gu(1) } source: icon width: units.gu(2) height: units.gu(2) asynchronous: true smooth: true } StatusUpdateContent { id: statusUpdateContent anchors { left: avatarImage.right right: parent.right top: parent.top margins: units.gu(1) } } StatusUpdateAttachment { id: statusUpdateAttachement crop: true anchors { top: statusUpdateContent.bottom left: statusUpdateTile.width > units.gu(90) ? statusUpdateContent.left : statusUpdateTile.left leftMargin: units.gu(1) } width: statusUpdateTile.width > units.gu(80) ? units.gu(78) : (statusUpdateTile.width - units.gu(2)) } } friends-app-0.92.0+14.04.20140306.1/qml/AvatarImage.qml0000644000015201777760000000125312306076767022251 0ustar pbusernogroup00000000000000import QtQuick 2.0 import Ubuntu.Components 0.1 UbuntuShape { id: avatarImage height: units.dp(48) width: units.dp(48) // We can only specify top margin, as this is displayed in a Row element anchors { topMargin: units.gu(1) top: parent.top } image: Image { source: Qt.resolvedUrl(avatar) asynchronous: true smooth: true fillMode: Image.PreserveAspectCrop sourceSize.width: units.dp(48) } MouseArea { anchors.fill: avatarImage cursorShape: Qt.PointingHandCursor onClicked: { if(url !== "") Qt.openUrlExternally(url) } } } friends-app-0.92.0+14.04.20140306.1/qml/images/0000755000015201777760000000000012306077157020613 5ustar pbusernogroup00000000000000friends-app-0.92.0+14.04.20140306.1/qml/images/new@30.png0000644000015201777760000000043112306076767022361 0ustar pbusernogroup00000000000000PNG  IHDRZZ8AbKGD pHYs B(xtIME;)偄IDATx ! h\[ a`$I5~:LfY ZAh @hР@-Р4hRy7^\}&ZAF@-Р4h<#a] 4Р4h-РA 4h ZA 4h Z$I^% CвIENDB`friends-app-0.92.0+14.04.20140306.1/qml/images/private.png0000644000015201777760000000072412306076767023004 0ustar pbusernogroup00000000000000PNG  IHDRĴl;bKGD pHYs B(xtIME! fiaIDAT8=KQq_R؈ V~WR A)$((,f.s3`pxv/hU$ yD /LVыqQ{203:t: xgHA4Y|Tʁ|A* QXA;_v_e_mVw'.=MSJgjcHȁ9Y[ݪB4 .~+ ޽Fě4TYB%$JH+6*}$+t&m,L|XƗ[gkxIENDB`friends-app-0.92.0+14.04.20140306.1/qml/images/header_image.png0000644000015201777760000000113712306076767023723 0ustar pbusernogroup00000000000000PNG  IHDR00WbKGD pHYs B(xtIME +LHIDATh홻JAfs!&D# b!B,4>UBHJB}QZZ"lP4b L2ϙsfVЗc8Dty> @*BKPa@!( D-LEm4Mo^0o`\zzؖ>F&'3,AcOu|Tt)$Hl0(j 8@vyqh9r"7έ nT+͜<J; FiV(y; *7̓M ó5(uO"5X87^0=؍:7vNvAr29@t @tD`\f.޼qyUyWڞ:b}(!2mjjj Rb0/FiÖיvwNOO x*,ŷ Z|KP/FׯIENDB`friends-app-0.92.0+14.04.20140306.1/qml/images/go-top.xcf0000644000015201777760000000674712306076767022546 0ustar pbusernogroup00000000000000gimp xcf v001ZZfvBBgimp-image-grid(style solid) (fgcolor (color-rgba 0.000000 0.000000 0.000000 1.000000)) (bgcolor (color-rgba 1.000000 1.000000 1.000000 1.000000)) (xspacing 10.000000) (yspacing 10.000000) (spacing-unit inches) (xoffset 0.000000) (yoffset 0.000000) (offset-unit inches)  FZZgo-next@30.png     ZZ :ZZ UT9_uuX7ZuuV5NuuI5Cuu33#tuun"1auu_0Ku uC/2u us,-iu ue +RuuI+5uut&)iuu](MuuC'3uus$% euu[ $HuuG#&tuus%! \uu\ Euu8puujPuuJ3uut' cuuYEu u8pu ukQu"uJ3u$udu$u@u%unu%uMu&u(u'uZu'u8u(ugu(u>u)umu)uMu*u!u+uRu+u.u,u[u,u/u-u\u-u;u.u gu.u Cu/u lu/u ?u0u ju0u ) ('^:% $#>=!  o*^@  o+ "^$ $%$%&H''o( (~)")*5++U,,W--w. . / / 0 0 z1 1 k2 2 L3 3"3Z-bu@unuEuruQu+u_u>umuEuq!uRu$uRu/u\ u. u^ u5 uc u? uj u< uf u7 u`u*uOusZP 1M ~5:W U  f  z k L":u4uSu4uou4uAiu3u 6DMZku-u )149=BGu"uF#u#u#u#u#u#u#u#u#u#u#u#u#u#ut4443 /h- 4IYdp{"##############u:uSuhuiAujWLD6B=840)tѰh/{odXI2--ZZSelection Mask  ZZ ZZ j :856 4 2 1 0.-,*)(&%$"! !"#%%&''(())*++,,--../00 1 1 2 2 3 3 4 4 5 5 56Z          6666 4.############## --friends-app-0.92.0+14.04.20140306.1/qml/images/share.xcf0000644000015201777760000001122712306076767022430 0ustar pbusernogroup00000000000000gimp xcf fileZZBBgimp-image-grid(style solid) (fgcolor (color-rgba 0.000000 0.000000 0.000000 1.000000)) (bgcolor (color-rgba 1.000000 1.000000 1.000000 1.000000)) (xspacing 10.000000) (yspacing 10.000000) (spacing-unit inches) (xoffset 0.000000) (yoffset 0.000000) (offset-unit inches) \UX Pasted Layer     <UXTPUXp @;&411+ ) %($e$$&&Ł%%"$lw !##y$ l ~ x፴r    ~          432 13 4123v1111*;&411+ ) %($e$$&&Ł%%"$lw !##y$ l ~ x፴r    ~          432 13 4123v1111*;&411+ ) %($e$$&&Ł%%"$lw !##y$ l ~ x፴r    ~          432 13 4123v1111*< }l\9 6LϦ4.2,‚71/)Ž]5"+ ݼ5" (h $%`&.&&%'V'1$@" ; kwSq!s" 2 ĖLE ݨGP' " T5 < 7* p` 10 % Rm +  d3-G%.m0s. ^U sA߾5bJ)|q٘ar~\bC w3 C'%R իR5(G 弜pA Ւ)\j:Z9&椰%\bǎiӦ!VIENDB`friends-app-0.92.0+14.04.20140306.1/qml/images/search@30.png0000644000015201777760000000374412306076767023047 0ustar pbusernogroup00000000000000PNG  IHDRZZv0sBITO pHYs B(xtEXtSoftwarewww.inkscape.org<aPLTE/ tRNS !"#$%'()+,-/569:;<=>?@CFGHJKLNOPQVWXYZ[\]^_bcdfhjklmnopqrstuvxyz~ IDATXWCA/$! ,`{,4[,X  ,0"(E]Ѡ!ޯ2nw;_|ٛpⒷw?|ht9g'qȠg^~r2\Â.=L qx:Mtz-b1D6\BȆ"Ət!ȟъ^̜sfǞH>7s|?ikO^]BOFVIjZ$x QX<< !:N*@\_306 T7D8 ПnD؅[D:; T2H+M[sg/Z|c2pYc^.!n!h}ŶA%[ONZx4 94 V"-N- O5@ +1Fl# 2O(J*fj?ۀa`?p(``Z|X%`WTq8tC&!|<,~Y}ؠpX zJMtF"L,F@-":c|x+أ0Ar.Bn,{@& v9|8+bs HHd+57 i=*P]2a^E.3>^l%jSF ~À`8|Uc,uB+@zA-wn>0؅q(9ڳtt2PKؐ_mT<#bHnc8pQ{zo.ur+s%Ve{ (R;*4 I0cx@Pu%qЎe]AV 2Q <*lvpcd===mlNkNB$YZr ^nDO@-+د*\xu*Jo>x8VC( 览{=\~(87ssT!s<ހt 66mH; 4D@}#0x {SCƒYOn``4_tSfJgw!T]GUojD} (?C"n^84zxR(?E+gD\ՁWHk0+KU~~$C7it䈃05/#Iq&1@ӤI)W#КO֬1#6{4QKb1w"ʡ맱n*Az! 6jOJA9&f[$=%} Y`q~".a|`i ^a~ ~8OCzy%h)^`5fȵ Zv#-c_Vo3VI?d$-؟D<d29 c>Q·KXk89.Zm"SţѨWJӹ4Lȏ丱ժ;ȳZny0-+ٱV=sA=f_΅QR`v|:\H@D~\󥉋7t]_q(1[/i.^=x<~ |j\si UJq'ݙv@Uow)Zȧ$aȧjSQ1=`'~p k"2|\f6Q"W,|; ء≗tIENDB`friends-app-0.92.0+14.04.20140306.1/qml/images/linkedin.png0000644000015201777760000000232712306076767023130 0ustar pbusernogroup00000000000000PNG  IHDR szzsBIT|d pHYs B(xtEXtSoftwarewww.inkscape.org<TIDATXŗϋE?f&( !\9-6 8a流MS7Bِ+Dp2lAPgcmOZP6ɱ@Ebk4׺\S4AAnP:^Ax{| 'LU|#T7ehZOk2K$QvVY\i!Ŭ%F; T#jT5c|{8Sl޷9ۧpiOb#JH&:݀#aW.˭6S%܎=!.Z˅sC1˩xoi9 4$7hwX\hǞ:QFqv@*dZ;xq^U1+nHj4.s>O[/.@$ޮ_0(-0߉ t3vƉZGC|iw[q)O•V}eY^dsh47iq`lbqb6^t Ifv$$w[!C@ݠ >##gAu2!mz #3|&!^3F@N*cP4+GFtMZqf*7"p#讁XĕRRZ=v#P Z#myINػ2BΡO yW8(QWKb}:*ib-W0鸮70҃9cP! jRq`SVnj' 8U(v9F8\ JG@#ՖٝVѺqJ~{Vz/ux^Յ?>DTڗ7-&EIENDB`friends-app-0.92.0+14.04.20140306.1/qml/images/flickr.png0000644000015201777760000000512612306076767022605 0ustar pbusernogroup00000000000000PNG  IHDR00WsBIT|d pHYs B(xtEXtSoftwarewww.inkscape.org< IDAThY[l\f朳7{׻PLCh뒨RSQ+^ ھh_xSKFUJV 4Bv_vk=gfÙ]n.*_5g~sv1_f-;[vln!nW;x5 34 # c4y[?7X (Gh-8VZOtZBN>ofon07k.7+'{sihCXX]J^[/-I3vK'[dǸ{ó{v'wTo7@%0/_Ls[b@'~KԉLO|8Ma,Q%6| I'.)~R\_`s"ޕ=dZ:_Η``I\?W*0c M"{@jR!c12QdcMs{\*sHdsJs4;ȰgA+ & )ARBH;{ۏw왩Kν$j S'~w&AHE1P`5_R.dϜt[ aN{׿>Sc2`]Dxu w~~z .4k:өwG'@p8H I!1qq8A)f xphMOvțlX3;:aWN_S1]` pfTCSn"1&hKBodN\/hTi UpRM,ȋ TꩣQ ZaSEcY+ \Ѻ HyXY+z1%bTA6:4CM5}Ձ*iCM3dʁO~y#ƲV𵆯 Q! ؙay fNGWtqqgPؐ-J $tjJ +>M '/] l6^MKbC+l(YHz${SsKD^8 rre U67:E(}{Qs$!'̾JT%+l4ЦR(4{{2f-Gޮx 8< $aؔ6q G-NJg侻2PX%#mZc,q܇eTo}7x|r/~(?#8T6et4KƑ|0KPo}75c׋cg?XraR Td$HG'Ñ.\8'~pP^/18 F8TaxWw!A7gOܧ3S^d0$:te>z{:ѡ/XC !tmAՍDan @51mcdȷ1 \Cס%KC2z;j ʼn ayb+;j,$S޽+sLSI;{;}߿`%DL4 BIENDB`friends-app-0.92.0+14.04.20140306.1/qml/images/clear-search@8.png0000644000015201777760000000060312306076767024047 0ustar pbusernogroup00000000000000PNG  IHDR7sRGB pHYs:tIME  "d7dbKGD̿IDAT1Ka[q 7(ȃxVW{h e!M-A >[SM(w?f?ږ2;>9t^f.(~կ͔)͞03cxyiIENDB`friends-app-0.92.0+14.04.20140306.1/qml/images/foursquare.png0000644000015201777760000000635312306076767023532 0ustar pbusernogroup00000000000000PNG  IHDR$$tEXtSoftwareAdobe ImageReadyqe<hiTXtXML:com.adobe.xmp A IDATxڼXil\2xwlj=NRB6BTTMTARHAJ?B%ڈ!! iS@؉ N '={w,]͛9=i_Gs'Q[C_gYj\|bxy]d!j*q9~VUPz,ZǛgq((z-,ZD,e|dYixi<7ԉHw?Aol=5TaeFigjsg8x*Ғ[Q_ꑏ^kRJfUq}1xx] l[9 M68͒Icgpi~(Mw;WrDB( 40>ipU(T*eΨx/ʤsS EBG8.^-DFL$[P=M3AUH#-\WT;)m2閮HdAZ7Tan$1w%-ր`^0rgUCzŢuuIkq"HGJݵXeºbQM; ˂ŭv:d4'>+D*IG1:~pU !i)a݈i*%\Q; i=XA0 7BQ$w ۖcY\am.3%\c}Akz`:RS7NcITG0NvӮ%*t wɾ*i|yV0PDeѸX?F``Uet *(&h O/E{{?υ4W_Oc3h$W֜EKdX_ILSy:nи8h!a ̉!St=}c#*+04r5dNLj6$ur1NK(RfXaM4ѤY R(lVL $x 8z-[h=cSlP-%.rO d4J,E8Q)ޖɂnD&Ƌ_}eZ0qIiaã=b%9F~xBpR/(9%͐z*K MJq(v M8&F Skp/h5j j'O?Fʂ~:EQJa B <-g1{h5^傅؉ LnWFCXRSt|:v4oL"#%M7Q .FFd8 r1LҘMgpXbl">CP{_I[g$o~-eHekgёezgeUOS-&zN)Jr?#1$ٜH'a&i"JKjs: IS2rE=&pAlg@Tqᢢ*28bX >mxY貢6lIbVg>>*#t2`X<G]%?א^tkJQV̐~/SZDLi1 KD40SڲM2tG ^ťl_YDVA5t0hY %L3cY.C YYvbog~9S$lkK g FV39LᛒrXLsOsތ/)?uDi?Jl3DTC)ͅqb^_Y{/]Ƿ4>{fάl-`P.J8NӴ'̗RF"[a !k=`ls=ƴ[Ey^ =˗{ƊÑJn<H9 B5p1R(KxSj!Q\؜Wp!P6;/D_*01 , o <jN֦z_$ğg1_UUYSȒ3lvDXd MMvGWW&N{cnBܡ:BXP^/ ᴵ2Wx$t)~:L>4i2!|^{ʹvvvw㳺rbyAXqFt+V"\[jYR>=p d2Bަ_¥KX!:vN3Ip7g|A_Ha_<.ov%c Yʵ9--{uE<%+{FZOMMrDfE>]]!ĞNFtsp.HٿT'`o@.si BmowكK4(M@JтAD>}cu~x[[Z={0O"d{<̝4T%` }}3ftPQ2xt]gSli ]yfpLdU41tm;4y|pR;)(G"Y1$\IJ0UE*pIvzu#̈I`Y0Ue"$@Rvxa{ U3r}wvC;UƦq'xqkK5Ey0cw| W4 plۮ!4@8s|RJPo/0 F5]U({jsσAZ[Hs YhY*+]٢loGʕ&7gv3vtyy'0F[ޙ+/30dq,ai0T$jjJH0"p@"-D l68|Ж-s-q"CHq߆ 9ٯ[uv3i7cSB詯;WdIhXJR4ؾӼ7xAԊ \-&)!Q@P&*HUKbN9A0uw[zm0ӄ¥KW,2am3'N@tvwTze%D$X X̉߸ $ E+L_(j4 u"67ɓΦ&7m=P3o!jUb >i8#TtJ8 ^XJQHd"@`76>(TU\H~1zkkJ8枞L[wnqv9U?ٴ˚_b&q"7x+LR&ҭlhH3ܿ@U4oup4ݼi_Jw;WD6Ԝ`3WA\qYx@Q@hiZ-@n:9 _zc Cۛ|{@_N|:W9ȏp#W^QxRHa׮(0Q=@=A=`0l 停|=7R /@[F/ `0XCHE(ya<}Wsuo'(yeXpy`P<$XFGƩG r(+J 0NT;fϮbB?.j{F+/g(o>Ghn"IENDB`friends-app-0.92.0+14.04.20140306.1/qml/images/favorite@30.png0000644000015201777760000000110012306076767023401 0ustar pbusernogroup00000000000000PNG  IHDRZZ8AbKGDC pHYs B(xtIME ghIDATxA #jeqw? %uM >XyvcZٝ"0QMb E4Q[DwCqTosjjNsٵȶ [UKl"Ib|Sv&YN 9n(z'6$ȾqXA& 9u$hD#6D#hD Vӻ Ҝ$WX3dgfRI|I3WDtRcd4E=:!c!K'NSe3$Ax m/;KvlT cF?$ށ M_Uec,;j*#חԅK]6eg풖lŪ]ߒ͋X/zݍ](IENDB`friends-app-0.92.0+14.04.20140306.1/qml/images/replies.png0000644000015201777760000000105212306076767022770 0ustar pbusernogroup00000000000000PNG  IHDRĴl;bKGD pHYs B(xtIME""IDAT8͋a;i0^ 0%Y(faE(vdkciHI(IŰf) rh,(39~~seٜ}sMRJDC;""?"D󈘎7=]~*VB:L5cbrSD:oO eY\sxn.iEOV*Nx] g\~l`nOw)|_w9 se<IENDB`friends-app-0.92.0+14.04.20140306.1/qml/images/facebook.png0000644000015201777760000000276112306076767023106 0ustar pbusernogroup00000000000000PNG  IHDR00WsBIT|d pHYs B(xtEXtSoftwarewww.inkscape.org<nIDAThՙkE?3{r46Ъ RAOA|A|.V?"*H*>YXJ M^bkKs|$ges=|3DtknZ嶑Kh zϝ2 |eO״ m#GwW8R(JX+ƂZb e;>6V5}x; Vc؞9Z108)^p0bu{M no.vcp轢Zlxp%܂j P<$ojj%F);Ԯ Ϻ.z. e߰nVo#])Rp9ۮ56S+ Aؼzx8_5U3iOCRjkV0bsd{ž216QC *d{1`cỲBhb6KM$Ty_6K&ߩ1&>=ˆ^xIMcU?0;k2ȴF> =ZG,uHCUDBPO4Z2 q]JvK J)p㓤h f,6QU!np""!]^/,.4nnRXZw`c0ӿOPo-TFNhbн1VP.@ܩ³Ţ]cG?YѬaXODlB.WN3O EKXO/ȵq $$aM_89n*s[m{b٫gg&FON4N1nn"j?8yG% ` _/M!%s1``Q:a 6nƸ*qD`C"/QrDt Wbl&s@+") (font "Sans") (font-size 18.000000) (font-size-unit pixels) (antialias yes) (language "en-us") (base-direction ltr) (color (color-rgb 0.501961 0.501961 0.501961)) (justify left) (box-mode fixed) (box-width 179.000000) (box-height 137.000000) (box-unit pixels) (hinting yes)  =  - +++++ +++++ +++++ +++++     +++++++++++++++++++++8888888888888888888++++++++++++++++++++++ +++++++++++++++++++++8888888888888888888++++++++++++++++++++++ +++++++++++++++++++++8888888888888888888++++++++++++++++++++++ +++++++++++++++++++++8888888888888888888++++++++++++++++++++++  2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2  2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2  2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2  2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2     ++++ ++++ ++++ ++++ @@@@YD,"ZZ Background      xZZ ZZ --friends-app-0.92.0+14.04.20140306.1/qml/images/go-top@30.png0000644000015201777760000000153612306076767023004 0ustar pbusernogroup00000000000000PNG  IHDRZZv0bPLTE@tRNS@fbKGDH pHYs B(xtIME0 muIDATXR0H բ"- :idώr3$A兔c̕|FtrH_o:G+AB(}(S_4qrDҕ.[qrH(3ؖ̕4M1vGSib&MxFGgW{Ut+rT+7yHI!c$Of\'ԭܔ!-Epw iR-piG'bmjm.LoRDR OrFGbMjǮt,Vҝ7|.kpN+5 Ld= 嵧|z*VAt y'2#t#EidZr}24;&QS$=}|1wyEIENDB`friends-app-0.92.0+14.04.20140306.1/qml/friends-app.qml0000644000015201777760000000767112306077002022271 0ustar pbusernogroup00000000000000/* * Copyright 2013 Canonical Ltd. * * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * telephony-app is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ import QtQuick 2.0 import Ubuntu.Components 0.1 import Ubuntu.Unity.Action 1.0 as UnityActions import Ubuntu.OnlineAccounts 0.1 import Ubuntu.Layouts 0.1 import Friends 0.2 MainView { function addConversation(tile) { conversationPage.setContent(tile) pageStack.push(conversationPage) } function closeConversation() { pageStack.pop() } function refresh() { friends.refresh() } SettingsStorage { id: settingsStorage appName: main.applicationName } SettingsProperty { id: previewImagesSetting database: settingsStorage name: "previewImages" defaultValue: true } id: main applicationName: "friends-app" // objectName for functional testing purposes (autopilot-qt5) objectName: "main" automaticOrientation: true width: units.gu(48) height: units.gu(75) backgroundColor: "#273d66" headerColor: "#395996" property bool isPortrait: (height > width) Action { id: postAction text: i18n.tr("Post") keywords: "Post;Send" iconSource: ("images/new.png") onTriggered: pageStack.push(postPage) } Action { id: refreshAction text: i18n.tr("Refresh") iconSource: ("images/reload.png") keywords: "Update;Refresh" onTriggered: friends.refresh() } Action { id: topAction text: i18n.tr("Top") iconSource: ("images/go-top.png") onTriggered: feedTabs.jumpToTop() } actions: [topAction, refreshAction, postAction] AccountServiceModel { id: accounts serviceType: "microblogging" onCountChanged: { if (pageStack.currentPage === noAccountsPage && count > 0) { pageStack.pop() } if (pageStack.currentPage !== noAccountsPage && count === 0) { pageStack.push(noAccountsPage) } } } FriendsDispatcher { id: friends } PageStack { id: pageStack Component.onCompleted: { console.log ("accounts.count: "+accounts.count) if (accounts.count < 1) pageStack.push(noAccountsPage) else pageStack.push(feedTabs) } Page { id: noAccountsPage title: i18n.tr("Friends") Setup { id: noAccounts anchors { centerIn: parent } width: parent.width - units.gu(4) } visible: false tools: ToolbarItems { back: null } } Page { id: postPage title: i18n.tr("Share with your friends") Post { id: post anchors { fill: parent } } visible: false tools: ToolbarItems { } } FeedTabs { visible: false id: feedTabs } // Pages cannot be nested so we have to work around this restriction // See this bug for some infos: https://bugs.launchpad.net/ubuntu-ui-toolkit/+bug/1256420 ConversationPage { visible: false id: conversationPage } } } friends-app-0.92.0+14.04.20140306.1/qml/ConversationDetails.qml0000644000015201777760000000554712306076767024062 0ustar pbusernogroup00000000000000/* * Copyright 2012 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ import QtQuick 2.0 import Ubuntu.Components 0.1 import Ubuntu.Components.ListItems 0.1 as ListItem import Ubuntu.Components.Popups 0.1 Column { id: details height: childrenRect.height function reset() { replyArea.reset() } Image { id: mapimage width: visible ? Math.round(Math.min(parent.width * 0.8, units.gu(20))) : 0 height: visible ? Math.round(Math.min(parent.width * 0.8, units.gu(20))) : 0 anchors.horizontalCenter: parent.horizontalCenter source: { return "http://open.mapquestapi.com/staticmap/v4/getmap?size=" + Math.round(Math.min(parent.width * 0.8, units.gu(20))) + "," + Math.round(Math.min(parent.width * 0.8, units.gu(20))) + "&zoom=12¢er=" + latitude + "," + longitude } visible: location.length > 0 } ThreadView { id: threadView width: parent.width } Item { id: bottom width: parent.width height: childrenRect.height ReplyArea { id: replyArea anchors { top: parent.top left: parent.left right: parent.right topMargin: units.gu(2) } } // Back button (much faster than using the toolbar) // At the bottom so it doesn't steal any space (content is flickable) Button { id: returnButton anchors { top: replyArea.bottom left: parent.left margins: units.gu(5) } width: parent.width > units.gu(50) ? units.gu(40) : parent.width - units.gu(10) text: i18n.tr("Return to feed") height: units.gu(6) onClicked: { conversationPage.close() } } } Component { id: errorPopover Popover { Column { anchors { left: parent.left top: parent.top right: parent.right } ListItem.Standard { text: i18n.tr("An error occured") } } } } } friends-app-0.92.0+14.04.20140306.1/qml/LinkBox.qml0000644000015201777760000000410712306076767021437 0ustar pbusernogroup00000000000000import QtQuick 2.0 import Ubuntu.Components 0.1 Rectangle { id: linkBox color: mouseArea.hovered ? Qt.rgba(1,1,1,0.5) : Qt.rgba(1,1,1,0.25) // Ignore this setting here as flipping the switch can break the layout // Also, the link thumbnails don't consume much bandwidth property bool showImage : linkPicture.length > 0//&& previewImagesSetting.value Image { id: thumbnail visible: status == Image.Ready && showImage source: showImage ? Qt.resolvedUrl(linkPicture) : "" asynchronous: true anchors { left: parent.left top: parent.top bottom: parent.bottom } width: visible ? parent.height : 0 height: parent.height fillMode: Image.PreserveAspectCrop } Item { id: textContainer anchors { right: parent.right left: thumbnail.right top: parent.top bottom: parent.bottom margins: units.gu(1) } Label{ id: linkCaption anchors { right: parent.right left: parent.left top: parent.top } text: linkName wrapMode: Text.WrapAtWordBoundaryOrAnywhere font.bold: true } Label { id: linkDesc anchors { right: parent.right left: parent.left top: linkCaption.bottom bottom: parent.bottom } text: linkDescription elide: Text.ElideRight wrapMode: Text.WrapAtWordBoundaryOrAnywhere textFormat: Text.StyledText onLinkActivated: Qt.openUrlExternally(link) } } MouseArea { anchors.fill: linkBox cursorShape: Qt.PointingHandCursor hoverEnabled: true enabled: linkBox.visible id: mouseArea onClicked: { if (linkUrl.length > 0) { Qt.openUrlExternally(linkUrl); } } } } friends-app-0.92.0+14.04.20140306.1/qml/EntryField.qml0000644000015201777760000001202112306076767022130 0ustar pbusernogroup00000000000000import QtQuick 2.0 import Ubuntu.Components 0.1 import Friends 0.2 // Field to enter a new messages // Used by the PostPage and the ReplyArea Item { id: entryField onVisibleChanged: { if(visible) entryArea.forceActiveFocus() } property var lastCursorPosition property bool hideable property int queueSize: 0 // Send done will be emited when all messages have been send successfully signal sendDone property bool failed: false onFailedChanged: { if (failed) { PopupUtils.open(errorPopover, sendButton); } } property var accountIds property var replyToId function setText(text) { entryArea.text = text + " " entryArea.cursorPosition = text.length + 1 } TextArea { id: entryArea anchors { top: parent.top bottom: parent.bottom left: parent.left leftMargin: units.gu(1) right: sendButton.left rightMargin: units.gu(1) } //FIXME this is should depend on the service property int maxMessageLength: 140 // send message if return (without shift) was pressed // otherwise we enter a newline Keys.onReturnPressed: { if(event.modifiers & Qt.ShiftModifier) entryArea.insert(cursorPosition, "\n") else sendButton.clicked(null) } Keys.onEscapePressed: text = "" height: units.gu(4) placeholderText: i18n.tr("Reply") autoSize: true maximumLineCount: 0 color: text.length < maxMessageLength ? "gray" : "red" textFormat: TextEdit.PlainText contentWidth: width - units.gu(5) onTextChanged: { var enteredText = text.substring(entryField.lastCursorPosition, cursorPosition); if (enteredText.substring(0,4) == "http") { var shortUrl = friends.urlShorten(enteredText); if (shortUrl.length > 4) { text = text.replace (enteredText, shortUrl); cursorPosition = text.length; } } entryField.lastCursorPosition = cursorPosition; } Item { id: counter anchors { right: entryArea.right top: entryArea.top rightMargin: units.gu(1) } height: units.gu(4) width: childrenRect.width visible: (entryArea.text.length > 0) ? true : false Text { text: entryArea.maxMessageLength - entryArea.text.length font.bold: true opacity: 0.3 } } } Button { id: sendButton anchors { right: parent.right rightMargin: units.gu(1) top: parent.top } width: units.gu(9) height: units.gu(4) text: i18n.tr("Send") color: main.headerColor onClicked: { if(replyToId == null) { for(var i = 0; i < accountIds.length; ++i) { console.log ("Posted new message from " + accountIds[i] + ": " + entryArea.text); sendSpinner.visible = true queueSize++; friends.sendForAccountAsync(accountIds[i], entryArea.text); } } else { console.log ("Posted new reply to " + replyToId + " from " + accountIds[0] + ": " + entryArea.text); sendSpinner.visible = true queueSize = 1 // Reply currenlty does only make sense for one account at a time friends.sendReplyAsync(accountId[0], replyToId, entryArea.text); } } } Button { id: clearButton visible: entryField.hideable anchors { right: parent.right top: sendButton.bottom rightMargin: units.gu(1) topMargin: units.gu(1) } height: sendButton.height width: sendButton.width iconSource: "images/clear-search.png" color: main.headerColor onClicked: { if(!entryField.hideable) return entryArea.text = "" entryField.visible = false } } ActivityIndicator { id: sendSpinner anchors.centerIn: entryArea visible: false running: visible } FriendsDispatcher { id: friends onSendComplete: { if (success) { console.log ("Send completed successfully"); } else { console.log ("Send failed: " + errorMessage.split("str: str:")[1]); failed = true; } queueSize--; if (queueSize == 0 && failed == false) { sendSpinner.visible = false; entryArea.text = ""; sendDone() } } } } friends-app-0.92.0+14.04.20140306.1/qml/FavoriteIcon.qml0000644000015201777760000000333612306076767022464 0ustar pbusernogroup00000000000000import QtQuick 2.0 import Ubuntu.Components 0.1 import Friends 0.2 Row { id: favorite height: favoriteIcon.height + units.gu(1) anchors { left: parent.left right: parent.right bottomMargin: units.gu(1) } spacing: units.dp(3) Image { id: favoriteIcon width: units.gu(3) height: units.gu(3) opacity: liked ? 1.0 : 0.1 source: "images/favorite.png" asynchronous: true MouseArea { anchors.fill: favoriteIcon onClicked: { favoriteSpinner.visible = true; if (liked) { friends.unlikeAsync(accountId, messageId); } else { friends.likeAsync(accountId, messageId); } } } ActivityIndicator { id: favoriteSpinner anchors.centerIn: parent width: parent.width visible: false running: visible } } FriendsDispatcher { onLikeComplete: { favoriteSpinner.visible = false; if (success) { console.log ("Like succeeded"); } else { console.log ("Like failed: " + errorMessage); } } onUnlikeComplete: { favoriteSpinner.visible = false; if (success) { console.log ("Like succeeded"); } else { console.log ("UnLike failed: " + errorMessage); } } } Label { id: likesLabel text: (likeCount > 0) ? likeCount + " " + likesString : "" fontSize: "small" color: Theme.palette.normal.baseText } } friends-app-0.92.0+14.04.20140306.1/qml/SettingsProperty.qml0000644000015201777760000000157312306076767023442 0ustar pbusernogroup00000000000000import QtQuick 2.0 import U1db 1.0 as U1db U1db.Document { id: propertyStorage property string name property variant defaultValue //empty by default (will be overwritten) //Must be variant so we can use any datatype property variant value: false // A little hack so value can be used like a normal property Component.onCompleted : { if(propertyStorage.contents !== undefined) value = propertyStorage.contents.value else { console.log("Settings property '" + name + "' created") // This will create the database (with onValueChanged value = defaultValue } } onValueChanged: { // There is a "bug" that forces us to set it like this propertyStorage.contents = { "value": value } } docId: name create: true defaults: { "value": defaultValue } } friends-app-0.92.0+14.04.20140306.1/qml/MetaInfo.qml0000644000015201777760000000140612306076767021572 0ustar pbusernogroup00000000000000import QtQuick 2.0 // Generate some more info on the post // All properties used here must be exposed by the parent // This is usually done via the StreamModel of Friends // TODO: this should be exposed by QML friends QtObject { // Sometimes microblogging needs to be treated differently // Use this property in such a case so we can easily add new services property bool isMicroblogging: (service === "twitter") || (service === "identica") // Is there a link attached to this post? property bool isLinkPost : linkDescription !== "" // Is an image attached to this post? property bool isImagePost: !isLinkPost && (linkPicture !== "") // Does it have any content attached at all? property bool hasContent : isImagePost || isLinkPost } friends-app-0.92.0+14.04.20140306.1/qml/RefreshBar.qml0000644000015201777760000000375612306076767022125 0ustar pbusernogroup00000000000000/* * Copyright 2013 Canonical Ltd. * * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * telephony-app is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ import QtQuick 2.0 import Ubuntu.Components 0.1 Item { height: units.gu(4) anchors { topMargin: main.header.height + units.gu(1) // show it below the header top: parent.top left: parent.left right: parent.right } property bool refreshed: state == "pulled" ? true : false property int refreshThreshold: header.height + units.gu(6) states: [ State { name: "unpulled"; when: listView.contentY >= -refreshThreshold PropertyChanges { target: refreshLabel; text: i18n.tr("Pull down to refresh...") } PropertyChanges { target: refreshArrow; rotation: 180 } }, State { name: "pulled"; when: listView.contentY < -refreshThreshold PropertyChanges { target: refreshLabel; text: i18n.tr("Release to refresh...") } PropertyChanges { target: refreshArrow; rotation: 0 } } ] Row { spacing: units.gu(1) height: childrenRect.height anchors.centerIn: parent Image { id: refreshArrow source: "images/go-top.png" Behavior on rotation { NumberAnimation { duration: 200 } } } Label { id: refreshLabel text: i18n.tr("Pull down to refresh...") fontSize: "large" color: Theme.palette.normal.baseText } } } friends-app-0.92.0+14.04.20140306.1/qml/RepeatIcon.qml0000644000015201777760000000215712306076767022125 0ustar pbusernogroup00000000000000import QtQuick 2.0 import Ubuntu.Components 0.1 Item { id: repeatIcon anchors { right: parent.right bottom: parent.bottom rightMargin: units.gu(2) bottomMargin: units.gu(1) } height: fromMe ? 0 : childrenRect.height // FIXME: Use features API instead visible: showDetails && (service == "twitter" || service == "identica") && !fromMe && stream !== "private" Image { id: repeatIconImage width: units.gu(3) height: units.gu(3) source: "images/share.png" asynchronous: true visible: retweetSpinner.visble ? false : true MouseArea { anchors.fill: parent onClicked: { console.log ("Retweeting " + messageId + " from " + accountId); retweetSpinner.visible = true friends.retweetAsync(accountId, messageId); } } ActivityIndicator { id: retweetSpinner anchors.centerIn: parent //width: parent.width visible: false running: visible } } } friends-app-0.92.0+14.04.20140306.1/qml/FeedTab.qml0000644000015201777760000000047612306076767021370 0ustar pbusernogroup00000000000000import QtQuick 2.0 import Ubuntu.Components 0.1 Tab { clip: true //property alias flickable: feed.flickable property string stream function jumpToTop() { feed.jumpToTop() } page: feed Feed { anchors.fill: parent id: feed stream: parent.stream } } friends-app-0.92.0+14.04.20140306.1/qml/StatusUpdateAttachment.qml0000644000015201777760000000257712306076767024541 0ustar pbusernogroup00000000000000import QtQuick 2.0 // This shows a full size image preview, a box containg link information, or nothing Item { id: contentWrapper MetaInfo { id: metaInfo } property int previewHeight: units.gu(16) property bool crop height: { if(!metaInfo.hasContent) return 0 if(metaInfo.isImagePost && !previewImagesSetting.value && crop) return 0 if(metaInfo.isImagePost) return picture.height else return linkBox.height } Image { id: picture visible: status == Image.Ready && metaInfo.isImagePost source: (previewImagesSetting.value || !contentWrapper.crop) ? Qt.resolvedUrl(linkPicture) : "" asynchronous: true fillMode: crop ? Image.PreserveAspectCrop : Image.PreserveAspectFit width: parent.width height: contentWrapper.crop ? previewHeight : sourceSize.height MouseArea { anchors.fill: picture cursorShape: Qt.PointingHandCursor // Cropped pictures shouldn't be clickable enabled: !contentWrapper.crop && metaInfo.isImagePost onClicked: linkUrl ? Qt.openUrlExternally(linkUrl) : Qt.openUrlExternally(url) } } LinkBox { id: linkBox visible: metaInfo.isLinkPost width: parent.width height: previewHeight } } friends-app-0.92.0+14.04.20140306.1/qml/LocationItem.qml0000644000015201777760000000116312306076767022457 0ustar pbusernogroup00000000000000import QtQuick 2.0 import Ubuntu.Components 0.1 // Show location information of a status update (if any) // Should only be used by StatusUpdateContent UbuntuShape { height: locationName.height + units.gu(1) width: locationName.width + units.gu(2) visible: location.length > 0 Label { id: locationName anchors.centerIn: parent text: location wrapMode: Text.WrapAtWordBoundaryOrAnywhere } MouseArea { anchors.fill: parent onClicked: { if (url.length > 0) { Qt.openUrlExternally(url); } } } } friends-app-0.92.0+14.04.20140306.1/qml/SenderAndTimeItem.qml0000644000015201777760000000237712306076767023401 0ustar pbusernogroup00000000000000import QtQuick 2.0 import Ubuntu.Components 0.1 // Shows sender and time of a status update // Should only be used by StatusUpdateContent Item { anchors { left: parent.left right: parent.right rightMargin: units.gu(1) } height: units.gu(1) Label { id: senderLabel text: sender fontSize: "medium" font.bold: true anchors { left: parent.left verticalCenter: parent.verticalCenter } wrapMode: Text.WrapAtWordBoundaryOrAnywhere } Label { id: nicknameLabel text: visible ? "@" + senderNick : "" fontSize: "small" font.bold: false anchors { left: senderLabel.right right: time.left verticalCenter: parent.verticalCenter leftMargin: units.gu(1) rightMargin: units.gu(2) } visible: metaInfo.isMicroblogging && parent.width wrapMode: Text.NoWrap elide: Text.ElideRight } Label { id: time anchors { right: parent.right verticalCenter: parent.verticalCenter } text: timeString fontSize: "small" color: Theme.palette.normal.baseText } } friends-app-0.92.0+14.04.20140306.1/qml/StatusUpdateContent.qml0000644000015201777760000000146612306076767024057 0ustar pbusernogroup00000000000000import QtQuick 2.0 import Ubuntu.Components 0.1 Column { property bool showDetails: false spacing: units.gu(1) SenderAndTimeItem { } Label { id: messageText anchors { right: parent.right left: parent.left } text: { // StyledText needs HTML-style newlines return message.replace("\n", "
") } elide: Text.ElideRight visible: message.length > 0 && message != linkDescription wrapMode: Text.WrapAtWordBoundaryOrAnywhere textFormat: Text.StyledText linkColor: Theme.palette.normal.baseText onLinkActivated: Qt.openUrlExternally(link) } LocationItem { } FavoriteIcon { id: favorite } RepeatIcon { id: repeatIcon } } friends-app-0.92.0+14.04.20140306.1/qml/ConversationPage.qml0000644000015201777760000001744612306076767023352 0ustar pbusernogroup00000000000000import QtQuick 2.0 import Ubuntu.Components 0.1 import Friends 0.2 import Ubuntu.Layouts 0.1 Page { title: i18n.tr("Conversation") id: conversationPage property bool useBroadLayout: main.width > units.gu(120) && metaInfo.isImagePost clip: true //TODO doesn't work yet flickable: null //flickable: useBroadLayout ? null : normalFlickable function setContent(tile) { this.tile = tile //Assign all values of the tile to the conversation page //This way we can have one page for all tiles liked = tile.liked likeCount = tile.likeCount likesString = tile.likesString fromMe = tile.fromMe service = tile.service linkUrl = tile.linkUrl linkName = tile.linkName linkDescription = tile.linkDescription avatar = tile.avatar message = tile.message timeString = tile.timeString location = tile.location sender = tile.sender linkPicture = tile.linkPicture latitude = tile.latitude longitude = tile.longitude messageId = tile.messageId accountId = tile.accountId stream = tile.stream senderNick = tile.senderNick url = tile.url conversationDetails.reset() } //Forward properties from StatusUpdateTile property bool liked property int likeCount property string likesString property bool fromMe property string service property string linkUrl property string linkName property string linkDescription property variant avatar property string message property variant tile property string timeString property string location property string sender property string linkPicture property int latitude property int longitude property string messageId property string accountId property string stream property string senderNick property string url function close() { main.closeConversation(); } MetaInfo { id: metaInfo } Layouts { id: layouts width: parent.width height: childrenRect.height layouts: [ ConditionalLayout { name: "broad" when: conversationPage.useBroadLayout Item { id: broadLayout width: conversationPage.width height: conversationPage.height // Add some background to it Rectangle { id: sideColumnContainer anchors { top: parent.top bottom: parent.bottom left: parent.left } width: units.gu(60) color: Qt.rgba(1,1,1,0.2) Flickable { id: sideFlickable anchors { fill: parent margins: units.gu(1) } // chilrenRect.height seems to be broken contentHeight: sideColumn.height + 2 * sideColumn.anchors.margins flickableDirection: Flickable.VerticalFlick boundsBehavior: Flickable.DragOverBounds Column { id: sideColumn anchors { top: parent.top left: parent.left right: parent.right margins: units.gu(3) } height: childrenRect.height spacing: units.gu(1) ItemLayout { item: "OriginalPost" width: parent.width height: statusUpdateContent.height } ItemLayout { item: "ConversationDetails" width: parent.width height: conversationDetails.childrenRect.height } } } } Image { id: imageContainer anchors { top: parent.top right: parent.right left: sideColumnContainer.right margins: units.gu(5) } height: 0.9 * conversationPage.height visible: linkPicture.length > 0 && status == Image.Ready source: Qt.resolvedUrl(linkPicture) asynchronous: true fillMode: Image.PreserveAspectFit MouseArea { anchors.fill: parent cursorShape: Qt.PointingHandCursor onClicked: { if (linkUrl.length > 0) { Qt.openUrlExternally(linkUrl); } } } } } }, ConditionalLayout { name: "normal" when: !conversationPage.useBroadLayout Flickable { id: normalFlickable width: conversationPage.width height: conversationPage.height // chilrenRect.height seems to be broken contentHeight: column.height + 2 * column.anchors.margins flickableDirection: Flickable.VerticalFlick boundsBehavior: Flickable.DragOverBounds Column { id: column anchors { left: parent.left right: parent.right top: parent.top margins: units.gu(3) } spacing: units.gu(1) ItemLayout { item: "OriginalPost" width: parent.width height: statusUpdateContent.height } StatusUpdateAttachment { width: parent.width crop: false } ItemLayout { item: "ConversationDetails" width: parent.width //Ugly hack needed for layouts to work :( height: conversationDetails.childrenRect.height } } } } ] Row { id: originalPost Layouts.item: "OriginalPost" spacing: units.gu(1) AvatarImage { id: avatarImage } StatusUpdateContent { id: statusUpdateContent width: parent.width - avatarImage.width showDetails: true } } ConversationDetails { Layouts.item: "ConversationDetails" id: conversationDetails } } Keys.onEscapePressed: { conversationPage.close() } } friends-app-0.92.0+14.04.20140306.1/qml/SettingsStorage.qml0000644000015201777760000000034312306076767023214 0ustar pbusernogroup00000000000000import QtQuick 2.0 import U1db 1.0 as U1db U1db.Database { property string appName signal settingsLoaded id: db path: appName + "-settings.u1db" Component.onCompleted: { settingsLoaded(); } } friends-app-0.92.0+14.04.20140306.1/src/0000755000015201777760000000000012306077157017344 5ustar pbusernogroup00000000000000friends-app-0.92.0+14.04.20140306.1/src/friends-application.h0000644000015201777760000000174112306076767023461 0ustar pbusernogroup00000000000000/* * Copyright (C) 2013 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #ifndef FRIENDSAPPLICATION_H #define FRIENDSAPPLICATION_H #include #include class FriendsApplication : public QGuiApplication { Q_OBJECT public: FriendsApplication(int &argc, char **argv); virtual ~FriendsApplication(); bool setup(); private: QQuickView *m_view; }; #endif // FRIENDSAPPLICATION_H friends-app-0.92.0+14.04.20140306.1/src/friends-application.cpp0000644000015201777760000000633712306076767024022 0ustar pbusernogroup00000000000000/* * Copyright (C) 2013 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #include "friends-application.h" #include #include #include #include #include #include __attribute__ ((unused)) static void printUsage(const QStringList& arguments) { qDebug() << "usage:" << arguments.at(0).toUtf8().constData() << "[-testability] [--fullscreen]"; } FriendsApplication::FriendsApplication(int &argc, char **argv) : QGuiApplication(argc, argv), m_view(nullptr) { // Handle legacy platforms (i.e. current desktop versions, where // applications are not started by the Ubuntu ApplicationManager). if (qgetenv("APP_ID").isEmpty()) { qputenv("APP_ID", "friends-app"); } // The testability driver is only loaded by QApplication but not by QGuiApplication. // However, QApplication depends on QWidget which would add some unneeded overhead => Let's load the testability driver on our own. if (arguments().contains(QLatin1String("-testability"))) { QLibrary testLib(QLatin1String("qttestability")); if (testLib.load()) { typedef void (*TasInitialize)(void); TasInitialize initFunction = (TasInitialize)testLib.resolve("qt_testability_init"); if (initFunction) { initFunction(); } else { qCritical("Library qttestability resolve failed!"); } } else { qCritical("Library qttestability load failed!"); } } } inline bool isRunningInstalled() { static bool installed = (QCoreApplication::applicationDirPath() == QDir(("/usr/bin")).canonicalPath()); return installed; } inline QString getAppDirectory() { if (isRunningInstalled()) return QString("/usr/share/friends-app/qml/"); else return QString(QCoreApplication::applicationDirPath() + "/../qml/"); } bool FriendsApplication::setup() { FriendsApplication::setApplicationName("Friends"); m_view = new QQuickView(); m_view->setResizeMode(QQuickView::SizeRootObjectToView); m_view->setMinimumSize(QSize(350,500)); m_view->setTitle("Friends"); m_view->engine()->setBaseUrl(QUrl::fromLocalFile(getAppDirectory())); m_view->setSource(QUrl::fromLocalFile("friends-app.qml")); m_view->setColor("transparent"); connect(m_view->engine(), SIGNAL(quit()), SLOT(quit())); if (arguments().contains(QLatin1String("--fullscreen"))) m_view->showFullScreen(); else m_view->show(); return true; } FriendsApplication::~FriendsApplication() { delete m_view; } friends-app-0.92.0+14.04.20140306.1/src/main.cpp0000644000015201777760000000156212306076767021006 0ustar pbusernogroup00000000000000/* * Copyright (C) 2013 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ // Qt #include // local #include "friends-application.h" int main(int argc, char** argv) { FriendsApplication application(argc, argv); if (!application.setup()) { return 0; } return application.exec(); } friends-app-0.92.0+14.04.20140306.1/src/src.pro0000644000015201777760000000045212306076767020664 0ustar pbusernogroup00000000000000TEMPLATE = app TARGET = friends-app QT += qml quick CONFIG += qt plugin no_keywords link_pkgconfig HEADERS += friends-application.h SOURCES += main.cpp friends-application.cpp QMAKE_CXXFLAGS += --std=c++11 isEmpty(PREFIX) { PREFIX = /usr/local } target.path = $$PREFIX/bin INSTALLS += target friends-app-0.92.0+14.04.20140306.1/data/0000755000015201777760000000000012306077157017466 5ustar pbusernogroup00000000000000friends-app-0.92.0+14.04.20140306.1/data/icons/0000755000015201777760000000000012306077157020601 5ustar pbusernogroup00000000000000friends-app-0.92.0+14.04.20140306.1/data/icons/hicolor/0000755000015201777760000000000012306077157022240 5ustar pbusernogroup00000000000000friends-app-0.92.0+14.04.20140306.1/data/icons/hicolor/48x48/0000755000015201777760000000000012306077157023037 5ustar pbusernogroup00000000000000friends-app-0.92.0+14.04.20140306.1/data/icons/hicolor/48x48/apps/0000755000015201777760000000000012306077157024002 5ustar pbusernogroup00000000000000friends-app-0.92.0+14.04.20140306.1/data/icons/hicolor/48x48/apps/friends.png0000644000015201777760000000432612306076767026155 0ustar pbusernogroup00000000000000PNG  IHDR00WsBIT|d pHYs B(xtEXtSoftwarewww.inkscape.org<tEXtTitleTemplateS9IDAThۏUW?> w(-( 8*XRPHZ%i1oOi_LO}R$&4TTri朳χu9s1h$]ɚ9fdT0ww ]XY: `s]BssހH( {vmbmw=W@'ϼɯ;o܌ge-|G7gۇײ}x-O2zL7]U6{jZl:s!sUMkpp oZ5$ œg/˃pܿU|sC7\ա A:tOi4 J[|'f@u-k_sGx4_|l]w;0>k-Vi:Ǥ9a%i=+p~c:l ,"jZ ` V@Jtk:EXphೳJQ6h4JD{&iIjJky[X}RzâWvށvF?ԢٰH4(ܳr*CX|-z"xGwmoۮ# [6p_kVܶ&֖HH KA!P@$AK'8|>5¢y%:𧿍>ryزn9}>b?&:/$B.)A *x#T̀gRZP2]8wx_a^9XNǑ 8 XAAB/B“] 63t*ňYČRRU&$b)V Brjw1iaA9$cmHDP$]цt&V@BU)괧Zx룝),]8Ďkرeu2U2rN9a$&k~f7Yo-h4 Eu .r2-xS;j`U7R0hOt1&&A ?6DI p3yFy߹yc-w-_IJ h558KSyPFL"8U^;ƙe#╮ӭ߸ƙdl_UG\6έvjƶAY@A{1TDk<ކkrߍ12re35knV XW]޺qvK%Y8s,xi;EٜGad$mϷ|$AMM:Q\Mdb}rUrW15'2HN΍mZ@ch61$ʖ ׾ʽW+O=k~~N41b2xX b0猧KևPQA!%)2R)\ե q>'ؽsO'[4/–C&Ez }$ZHd'jnA頮P! H҉[O|y@~CRM&iGAMQ`@ek؏C2w 4~+Qߒhbc~A wB/ $GwYp'T#3q(4(2~"%*`^UkquڰG/@ZИmEb&i(o4 ABƪ&c)Xcθҵb$Dv:Dr?x×x[x"b[ *οPBV`X ">= |F#Hfl3S37O*QPɃ?B!H)ɻ5c֒Sj fV+O5ΆuAS^`Ŗ- 7kt_Ov`ZS 8ֵ4%9\*rl#xϥU#4dY|u}YQؤ 5]9 ֟z;-(EYbm+xھ"v5'-8hJykB`ALQ?u55#&dIENDB`friends-app-0.92.0+14.04.20140306.1/data/icons/hicolor/scalable/0000755000015201777760000000000012306077157024006 5ustar pbusernogroup00000000000000friends-app-0.92.0+14.04.20140306.1/data/icons/hicolor/scalable/apps/0000755000015201777760000000000012306077157024751 5ustar pbusernogroup00000000000000friends-app-0.92.0+14.04.20140306.1/data/icons/hicolor/scalable/apps/friends.svg0000644000015201777760000005471012306076767027141 0ustar pbusernogroup00000000000000 Template image/svg+xml Template image/svg+xml friends-app-0.92.0+14.04.20140306.1/data/icons/hicolor/16x16/0000755000015201777760000000000012306077157023025 5ustar pbusernogroup00000000000000friends-app-0.92.0+14.04.20140306.1/data/icons/hicolor/16x16/apps/0000755000015201777760000000000012306077157023770 5ustar pbusernogroup00000000000000friends-app-0.92.0+14.04.20140306.1/data/icons/hicolor/16x16/apps/friends.png0000644000015201777760000000113412306076767026135 0ustar pbusernogroup00000000000000PNG  IHDRasBIT|d pHYs B(xtEXtSoftwarewww.inkscape.org<tEXtTitleTemplateSIDAT8=kTA3sM@4"(,h#Ia"UX*Z( A005H;w H8<={F/s8aP |8sr#2㲓? ~\Kvr G>>}>y%A½Ycik8![_ (#3XYFXEf1:gf\#_)--Ck?+QK[rvP+>4?/?/MUB;^}}Yeu`v-A+K?~Cx쯛_Wq󏀃 <ʺ%0{A B/[x-E7ayB=M2m!`5ŗMI.y= XgEaݏٳџ9/;yn&|^}7ⲓ(A0f38?jpG~|̛3T?;Yu݌}0 ҂of"\AY0S?|+B:xMWϺ@jCL)+87]5(oJ@d`|џΊcA`0ib̈ "4C-ŜQ0rf3`4‡"+ q>kXL pb@g3Rq 3zts]?!5ݜW0i%6i fa2 h6뙰ee{MK( E0x&e n@=x05g*-qpr:xgGNԙ:g]é+q~?cGq2~1\ۢ'I=ۍݯn杒4/ޏ~Kx HH$@B@be*?y-x˯b ,Z#郺˙aF`_Ow?o1.Bv@z¿O~Ţ]`&ңoÝ1cCGq)_wyB8.>ǰ3 _%$#j0,fJ W/&g~q8^x=|OO?)v?,cm=Qg?ßW7}0A|Gp4ίv- :.P~4#:1V(__} pxj:.z {qߣjyIugi $H:oVD+_R G R#e =L,A XX+%u*s1ɭG?uέ@1'>e|eeHݶ@EZ^ [p̿seOuOw,#gbee "P|lRp{32z\ $ W7Z5cDŤ9 L]gv_~l쓗ٱ>0ίnwf]ٰ:tԞߏL/63$n8ٱM toutBQ:=dG<cƫNfAs+0sE=̾ 8yK=ln;ϻspͥrNC?sgPE&ۍ^+v9e-xB] 3/,O2A@',?~>8ۯ  Gj'[?0yA>Axv@M,z x^ZR,/.Kxʼā E8B`iq}m& i;ºuc]O~aA҉˞s ڗye[t']E7Y%\+u`~DŽ`]FoۯD~D˼E'5E ",D/~K>O&7*~ۮl刿K(s/nd2=^ k:سJz==Qt|cZL >Sz Oe~j㎛/ł/|`1~8Bqn#Gɺ0&[G.z/>~'_`X=k/?h!WZODaoqi> mB57/p_ɗ9p!˷ފ%o F#np'pxCվX\Jү^Q?Pތm*[S?ї@G_2_Õʋs?kfկ _ij%;=_yIg4tHspˋN-ï J|b4`jkpⰝ3}R<KKpܪc-k{~$MոB%]0QSbo۱c8qpSgWq*Μ[3ְ;qU'U7]k_xݧW|ރG-{O7ǧÑCpwd?NއG˙.]o2럃;^z9v۷8 EPS|贬S.3gxy g@D"+H[}O܁/ =8<~>g?܋ `k3-㑧pcO7O5psqMWŗ?G1}QWO>un]Nً(b| z D4f XnԐ(ÀϠ+.@#[w[ZF-|3;_;n @^zb ׿` hwp'pCd|sڃO?ppeW׳ op5 u],,p9 (/%,43< &bb&`ӻZ'9j?/FʓxephyV7qOǞ|[#5*^#%`aS8vx ?e|}8vhޏK/'yl$Ӽ7ή9)"(^Н ai: EJo#" 3-vyq=| p?8ׇm?c}=a}k `uny'7ְ̠!k`M"6Bx΍iVgM_qٶ!?`x `L.Aaٱ50 aK̢ou_AϺw6,jN*JPB6w);6ϋPe 0~q aSI<h˳ va/o=aS޿HrVˮtZ>o p$$C n՟0\d.@0֢ _nw⻓wQ_@<4T21xAB)k?gmBD7wFؐ|:6N3Y+`2/ZD"h0f@f0i{\qbX`ڈ-P_SdJ)y4f5P !nA a{eSD8!)5N^O8b3o S6i4+ 3 q }t뺈~>#g~$m~-3˻4̳nYBV$3 i*r @aۺTj06X]JUn(=ЇCy1E5ˬhMBvEh`Կx3S&[C>J Oa?>Ӧd4(&P<1Ƚ8Fb󨾯Z WɃVYZz3(F@LiȟW/\7e9ߴbs W >HGrUF/! 0O!YȁG1.ϮXbkg)IWFQN)ˤk%\;0F T"Dcoxs#t 0o]ɜ#](áCp ΞƮut&sf~%PWo8riCz Q|}ւ|\R G<* a_Կpcc~|0V7v0F;Qe4_EvSƨH&PsP%LAb"dQp|ts0۪CA%1WO|WsR~6ϻ 2z;Dhtu !z1@ ^ʸETnz];s0cecV1#k;ϺQ^Ҍ]H],C52ˋDY d,Rƃ=cR#o\.mn\ ?W=.]?8F?vFX(Kpɠu͙t#Y1Ďc4GѰF 9 ~;g#/BuHtQ'sLUɣ4B?Sg׫W[>n< ׋},s0_XLX$AXgJl -K`<sQ64$?e;|+; doҌEh6ַ8rxxX_ C:Pu/KI9~gO'.7wh1ȴ"gs|ӭds}籲biA,ƍg ; 2 ;QRjydηywi4&vaT%ր"<njLo=v %ɗZCrS~ `@RfWUFyrhA@F#s_ …5oK@ x3MWGn3fbISQQk:ZΘX-*ceT9//mesZ&#<\3`ec'3R䀬oDG/ɣ>VR0z;Mm}WŗOi})P圕!lllGƙ3+bXʖy56I+a9%ƽG7yauU p4]"F0m6Iݲ0ħL*ͷ0w18p<)ll.2 }]0s.J*yr=+S@B%/af29i˙=l"}~7_}[aHlpL#dF4F1cq,FH2s~W 5OM~QyΗ_S͢0?z,|ɍ}8wzr_]6^rtSE בv~C_[Bvv[F&hR(:{;;YբgW#p3nB&F2^Krױ}9eX`'L5c $yا> ‘=Z:|6yΜk/gW61һ{|/{i4o >GMr2p/ƣ@h\Ox$?@T 5aH"CD xY|oYJVL,#H Μ]&;{m=aus~Ffz+|mȃOb芛h,-kE\wn G>έmcsgTmG*)yʜ/L}ϐ2{ }xG@ƒp'p $\6 FbeE @֐xi|ok^LߔeF GXY]XZZՄ9Ǝ/̔+}WF~)Mu򫩫?* s=x. DjP$?0k r8cfw {ps B65X5gOn0[[;X]لsyk7ck0¹pI.F~c9].$UDA^= …x -)&@p45> et%M#~ # G u88b AVۿc]/ы;;r 4~^`dhOxo{gSp.A8=8OAL|!reQKwK[Շe`'>ُFGH~,8b_s-nxыqa,[}!A|N8Gv2bm6Xd`'R$ rVW̙Ӹ__;;o/"??${H|/9 B*ݣ!d*n&ǩMJ@?ks2 @@9$?> VGi0,-OAHk ?3/-.Gq};/TGS߶5 Hq(vARS^J|^G @8 )Xo۔@7o.@[%݋fJ z?"w}# !A$(Kvv\$񔑑Syn{_?COx0 dAn ,[5mUh1܀:oRbDG"7r4?_.d%mZYU ª) v R338~POVj%@ҿU_[cx~A0>?# }i~Z*v27e7:*Ȍ' /"3_8#5oRZ,ih 4R R%p? Q2 -7|Ai|/]s.ЃOw=HSCb+s^MPh-ސj< pC@'r}E9E?+T҉_E)TҵMYe1+A$8qQ¤ 鮉o;4wǺ[[x7 $׉fhdӔJ$j6AQ: }(?/!|OL~0VP]@~q()m?0Zɟ7ڧ%䎄ȸ,UXއwmxmjVV`9 Iέ^ƦbgFt0n .}GD !(SL~T&n e* ُ5@XShJ J$h %הA?㕍2YD 0n;߉K--K>sޅ| r+B7z`zwkB&YgJ6IXA$RZ-c= OU@͢*@.!ފ4@> .Wח$K `cDsd~[~G7؃A>G0 #rGwh p Dz9艩e/J}lQSwL"*ޠn"?`T55P -"U_0&Lap1D`XLJ/㝸k^ =~w£O>=)EDd2R_7$yuƣ}˒QyyOBLJb5$XW `Z{ q|$ھYMhgIWݲEOB%SF'|# F/`_4G>B| '! |) ]k+ R\wyI':"TQDnjJJ(aɓ)lшΈb) ?2݂!.}Ix'$>:FMCTFLH+ZM;)WB)J@"@ _HpK@/00Jq`~~gQbg#BHVqQ;yƟ*-s6+䗬ɟSd6,cܕ td*4ST>BD-`q G"zew?ҩ_ [cot}AJ~H~Hwb((PM+IJT@FՉB`_P8d""yzt__X5M⑿F ȗJTj"VvB~ْ-Ko2:`1i+-&*_R( 8DpqR (j| D7t r|_`[M~Cqma$Edf"!yֆQS6't~J )ADF ܞ ' *ôLfa8eL ,&mWe9%|x#tN~9ӊ[XeQ2'7gBRtեTk x2d_]!مF~ћk5DN4*%&A~)*m9fRD!IfRtURhf9a ?DAUAԧg /_gm7l;k뼯ڹrAiXiyn DžzGS SLh| =4@2OK$^s7Dif V6MhW +ppFp @BҿD᧩#@0bp@ Osbom4N=O~D~Y hF `Q@ꖫ g Ьs/l#I1NԷO,tCc>"$>2K gr{ UjĊ!k]lh\Fod͘y mN~W#" -8@J -;&fprUz;EfZtЉ*lN| 8Q5ѨM/*T11ncΕ+5d*}rր^H}/):3^8!8X} ~|@/c\$~RosaBkzea]nstEIxCI4&|jZeEP8Pj,J@  ]Yו@t>h'W?@Ѡ?σ՟Ie Zwj?mȟWb8SN_ RrG~y`B>g,O 4#47J]?AS6P*jbt+1%!Y GU ^/ʎ|kI2Am_"4cЭ~]܊@A<1jV'?YQ&?_U-IA)aSri]:T1:J-t?U K'~~*Zr˶r=ⅈ…>#'z$[~ s얚ȯw幟z}M$_fצ[?cfTR^ֽqok ǃ[#>ꖕ(sqAey)rdZIqFD@٪_J#I"ZjTm]K1><%zu%#p> biE(."9}\#%EUYy0p92-'`%\b^.RB=L F[Iџ5hPH&\>: 'l9yBҩH~9qTIй1r̊ DzE^8G#~iX2t\}\P/k+DX6S'I!jD. 0L$<C{-(!?!!ӻ&;4+"-,+BQI)e%!JJ.guFVHF`dp$WCpQPJ09S] N4a ,q2n"NQE3ًU+cU* DžB22ՋKuHMX&LzKd@<'J yi(R頟JcR!@>K9:3IkX6y628{8.Tr7#v< ;* M-$|e2nD6|P?zZCM5@z3Gv/pC(jJKlAQN~&faԡFhJ9]ұ:p>ϓetp,o?̇BJ~* ì 7>mGdқO?P pA}YQ~*6ܕ䗶3(}o5ք+O; EG"㨺O|yU%e,T1kD~P!DnJJS%2K2Lc>Pö1z 뇯~sLU6sDۺ"17Mׄ(:ǜO3RarO%AB*R力_Y>mxQP54Qjb^iU<Z\E)iP1+(9R,ȁL%xo*rK#3C(i`e;^n[, u^@ Ji 7J';<圇mp>9FCQo,' J//l30%Fk ykq@$GQ)/UWT +ʆ񘐻>nMiPu͖L}?8ņ{HŲ9o5dHq\ ILҀ]pJ`kk+ei`0?ltg;Nj=i@ E#]/S(&X`  |Pjl+bQrdTWUAZ[(8%"GdHfEj$ ~@#{0o4]ŋFQQaE _!_ h/+r֭+ZD*[@Ą/#b7F vB~y9|hHVGk_Kݽ*~H\hY9s฽p&_JVC< (U ")ӑ?ln\542GH&zl}]k6˞ )\T [S 􈬹;mj$.Fv\@<G{^'7 L#}dG~KJɟ>!?T+D0MZ$Q!e #|aF~]lIX ͷ:FIċq'dQY9or Ka)xpuEHpRwI6 _>W#),EYYȌ0yd\F Hk6Ӄ|:'ZEI^]fP|[Bxh,ˈ*s::)VAsFzeϧh381H؊7Y57Y"TAd 4mE\^WJ4wЮJCkuM"Fu_Ґq rqNbhր4/"j6Ჴ̼N[E?n#u"xzBӤ:i(ڑZCgIIIe#\]Q N=CuڌQRfIZ k p/Oy,np1Ph|SXAVV :tǡZ/sCdNN{FxD $btyt*APu\YRh!i2'cuoe$`@CLB%FY ?JV;uzp{# ™:VLߜh1 րI;rLJNۥة`;\HJ9j21Xwhu10fJs6YAJIRJi)mwK$I2 qq=p9sk"jq˙c~LmIgf`N["YۀY}0P`b4-+{*М %C]WR\ o5dO*֧( AB~&߾OҀ[.6\w QhCO@}h D䗔NR+1C h=2wL&L@0.)Z `\l5PhW;\I3T_ @-j3>J,XqӾ@i9yȉ >k;)(HWfW25{rm x[w/98r 8N"C:y}8BWLsIE=¤\i 0 Q9U hǁ-.Զ}pMKs]i-:` iQC~D[|ӯ@cP}g+Q⤆j0h'I)H8 z.QyA຋gy!u1⌲y4Dz"kRXZwWب%lMՋ3p[^0J]!"H፽i_ZrMAVR왒>S:tع[)ա28fD[~]_"EYeU-04oRN[#ie4[L~]tbX>9&0oA$6a%`Tai諔uG䑹_\PWE@AI~ܽ$.gIENDB`friends-app-0.92.0+14.04.20140306.1/data/icons/hicolor/22x22/0000755000015201777760000000000012306077157023017 5ustar pbusernogroup00000000000000friends-app-0.92.0+14.04.20140306.1/data/icons/hicolor/22x22/apps/0000755000015201777760000000000012306077157023762 5ustar pbusernogroup00000000000000friends-app-0.92.0+14.04.20140306.1/data/icons/hicolor/22x22/apps/friends.png0000644000015201777760000000156212306076767026134 0ustar pbusernogroup00000000000000PNG  IHDRĴl;sBIT|d pHYs B(xtEXtSoftwarewww.inkscape.org<tEXtTitleTemplateSIDAT8͋E;. Ex"AA9\D") WshACr  ! U7;3owl6(^慆zW[:stй#>'6/pWU$lL8q+̩<7)xc /9s8o78Hɐqws>_\X=<^n+gp幣+yj!|l5_5>b`qm̲\׵x2fw(dA݈ "KUpɥ | >yeXw }Th( .WpPa홃~rD/j3;Ό'b8p1p67x|iNtϡ*n Ls{LW U%w!";ܛcu.2bؿKwޙrwҁ@PYZ`k{-AR$Bd!>|],O?ٗ_1dGEiQ")g Ͽzk&Apk;cz[w&- kP{Eф(q7B r{CCCp%waN4QISjl6+I6}or4,+!)5 vZDk+j'3L T*ԛF@ ,nmDB Ы Z lڠզr"73IENDB`friends-app-0.92.0+14.04.20140306.1/data/icons/hicolor/64x64/0000755000015201777760000000000012306077157023033 5ustar pbusernogroup00000000000000friends-app-0.92.0+14.04.20140306.1/data/icons/hicolor/64x64/apps/0000755000015201777760000000000012306077157023776 5ustar pbusernogroup00000000000000friends-app-0.92.0+14.04.20140306.1/data/icons/hicolor/64x64/apps/friends.png0000644000015201777760000000640312306076767026147 0ustar pbusernogroup00000000000000PNG  IHDR@@iqsBIT|d pHYs B(xtEXtSoftwarewww.inkscape.org<tEXtTitleTemplateS fIDATx]]UkfI\'iuJk6uPKho .U }T<@AyB^H"A TUBRM4ndZl88s޳x=ޜ8J{{f̬Z̾_r  r^Nv\`:;.zM'55o\pu W4h'ܲr=wp'嵕.| 9wad>?dz#ʁ?z] M-M~wō@0ʬ?<|K #Y^Z'h\fjvT} uW7?|cdqf:kۻ#9AD"s)5}yVϼpG?}~~<+'-{fm\>x7eC۫>_>T +6 kGOjzy3\^9r6.x3#,Ty?V.071 uO}\\ [C8E)K:"PA[ࡃY^#qsq;-H9 7XkX*1 Gq%L+A3#?PMǰڥfSQE[pEMx߻g5Qo&nܳz?ۯ~N1EQPUFBHQ@ew}Z{X.Զ%maaPyQT8Bas<;o݋/a xa{n_:"WT%UU"hbI/k &bz/Q2 hƉwT:y͘&fM8VÑgEN265!Lh>V~ ԅs #H"083%It7m7XJ86ԍKc>TҷD}xp8ĸjK3Ugh Rn,ǟ 8CTZ@QڙoeENk[g޴{|`0l֝~QFf#v!(dh5Q.!xkFv06Y:{8,t,w}˼'ڷ9emciUn$)\& %p@֤]433?˧ϲ^/־1Shjpsf~'9瓛s暗wF?N N @$ForRQҥ5k]nF',n>:#ƃ@>ʩ^[*bbU3847PMрNNt^z4 z}N>iSy>jw=C\#3x9oO}/<L3o pi|K_ +|,kkoXAÅi9Qx ?u:):Dr',K/Mɧ=ٵ++]! F8~\Y7^t4\U m& 3=˟~3j!LS*!% pTM=w]7H~~uq| Ą&G<8JjD )n(*Qj{Ac|Rj5&m`!M3&lf~ȻOȟ<לp%9_G?V㕈A[t3 :Q%xDǑ֘"{6͑gh4 " =tた~!XW=t:(ebtzI?0(n!&١" rGROQ !%0aqElﬠ4=,v_?%t5jegStƀv]S~˶mT .Vb<h=lz_.,YX!Q'&_SM>[t乼L9B\m$]S`nvc-X4+,t&l6dxmiSx^@-~[!ex jSP'LI0jPцQ8D#k^ S1G$s ݥย.k:-Xx\(bSN'oDd!8WXjk!$Dž f9 <) MBLr( !] .&O@9+S *{o?Q<  De1jˍZPԪsP @F^[Z%3BUIkFf[q-ZʅOŒV,x \IkS!1قZvޅrng0'NɫjpCVLFǶ(;y7\E8t!` ZC, l,0  x?IEԠ CԀ(-,HQqGiϦO\ n*DL REEmM(BaZ[N'AͅM$7$4(S$-&@X"bmXcڜNŒ" ZF|f0[HdLZ7lLA̚'Iҋr»h)C b[e`(fU4ohRx%YRDF1 ϋ@8ј *.$a>b$ x[jآ-1#؞@6W]|j/ f?xv? ozC'}/ o IdJ4괦fdDsC+ZxH5:Ҿ-;eb_lůqo\Et) 7_,$L ~akX3)}{wmd·DQqu$[fhe@j0+9s:?2w(D Hk)ޘGf+0uLG=5O69yn{gG|CS2I|G Ü:?ж>Og<8]uFoMD,H3 o*-[ɩ_jqrлc_\b]Ʌ+7cj&Q$,bi@\KchTMTGfmTAHȲ3`ZA=@@ v!CX>5cHQ`NƧ6^ScK/Y˵P3&L7ZbF" &F2::ɲeza26UXuR`blF`\ފX4%Q%PbM̪+А z%L C DZL*@~JeUN>`8`-&8H-=Q<=([\YM'I!gInZ1&HPăK\!,/<ɋjX!a<>$'6pJID5^qi4mፘ/9Śf{Pjz 08VS hKp)K"0 iqI -fDEN+7 <"HJUm{P4#Ik RBq p)\Fk T({نUIENDB`friends-app-0.92.0+14.04.20140306.1/data/icons/hicolor/24x24/0000755000015201777760000000000012306077157023023 5ustar pbusernogroup00000000000000friends-app-0.92.0+14.04.20140306.1/data/icons/hicolor/24x24/apps/0000755000015201777760000000000012306077157023766 5ustar pbusernogroup00000000000000friends-app-0.92.0+14.04.20140306.1/data/icons/hicolor/24x24/apps/friends.png0000644000015201777760000000165412306076767026142 0ustar pbusernogroup00000000000000PNG  IHDRw=sBIT|d pHYs B(xtEXtSoftwarewww.inkscape.org<tEXtTitleTemplateSIDATH͋\E{=%ih$ʠ` .%Jzp;\ԥ0{.$],t108tElx9{ 9 k2}. t_C3w[6AZ2-*ҫV poqi돻bхsg_sOܕ¹3|5zoe(Hb2{9{OO?rPPpK 3FpS|!;uVy ){y^S'1s]WG xM)T :UJ3ILO*fg?ʕe@aP3As (hBr "\hie>"ϱKSY Tf < uM|"4%BYf" Z]Ҥ#:@;hV., (B+0TRSm Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . friends-app-0.92.0+14.04.20140306.1/friends.application0000644000015201777760000000056112306076767022444 0ustar pbusernogroup00000000000000 Friends friends friends-app.desktop Integrate your feed data