wok-next rev 20991
Update EDuke32, combine web apps
line diff
1.1 --- a/eduke32-data/receipt Tue Oct 02 22:23:34 2018 +0300 1.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 1.3 @@ -1,19 +0,0 @@ 1.4 -# SliTaz package receipt. 1.5 - 1.6 -PACKAGE="eduke32-data" 1.7 -VERSION="1" 1.8 -CATEGORY="games" 1.9 -SHORT_DESC="eduke32 data files" 1.10 -MAINTAINER="slaxemulator@gmail.com" 1.11 -LICENSE="GPL2" 1.12 -TARBALL="duke3d.grp" 1.13 -WEB_SITE="http://www.eduke32.com/" 1.14 -WGET_URL="http://mirror.slitaz.org/sources/packages/d/duke3d.grp" 1.15 - 1.16 -# Rules to gen a SliTaz package suitable for Tazpkg. 1.17 -genpkg_rules() 1.18 -{ 1.19 - mkdir -p $fs/usr/share/games/eduke32 1.20 - cp -a $src/duke3d.grp $fs/usr/share/games/eduke32 1.21 -} 1.22 -
2.1 Binary file eduke32-shareware-data/.icon.png has changed
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/eduke32-shareware-data/receipt Thu Oct 04 06:46:42 2018 +0300 3.3 @@ -0,0 +1,38 @@ 3.4 +# SliTaz package receipt v2. 3.5 + 3.6 +PACKAGE="eduke32-shareware-data" 3.7 +VERSION="1.3d" 3.8 +CATEGORY="games" 3.9 +SHORT_DESC="Duke Nukem 3D shareware episode for EDuke32" 3.10 +MAINTAINER="al.bobylev@gmail.com" 3.11 +LICENSE="shareware" 3.12 +WEB_SITE="https://3drealms.com/catalog/duke-nukem-3d_27/" 3.13 +HOST_ARCH="any" 3.14 + 3.15 +TARBALL="3dduke13.zip" 3.16 +WGET_URL="ftp://ftp.3drealms.com/share/$TARBALL" 3.17 + 3.18 +compile_rules() { 3.19 + rm LICENSE.TXT # or unzip will ask interactively to replace it 3.20 + unzip "DN3DSW13.SHR" 3.21 + 3.22 + # convert to lowercase 3.23 + for i in $(find . -type f); do 3.24 + mv $i $(echo $i | tr '[:upper:]' '[:lower:]') 3.25 + done 3.26 + 3.27 + dos2unix ultramid.ini 3.28 + 3.29 + mv readme.doc readme.txt 3.30 + cook_pick_docs readme.txt 3.31 + 3.32 + mkdir -p $install/usr/share/games/eduke32/ 3.33 + cp *.con *.dmo license.txt duke.rts duke3d.grp modem.pck ultramid.ini \ 3.34 + $install/usr/share/games/eduke32/ 3.35 +} 3.36 + 3.37 + 3.38 +genpkg_rules() { 3.39 + copy @std 3.40 + DEPENDS="eduke32" 3.41 +}
4.1 Binary file eduke32/.icon.png has changed
5.1 --- a/eduke32/receipt Tue Oct 02 22:23:34 2018 +0300 5.2 +++ b/eduke32/receipt Thu Oct 04 06:46:42 2018 +0300 5.3 @@ -1,33 +1,22 @@ 5.4 # SliTaz package receipt v2. 5.5 5.6 PACKAGE="eduke32" 5.7 -VERSION="20110319-1850" 5.8 +VERSION="20181002-6989" 5.9 CATEGORY="games" 5.10 SHORT_DESC="A port of the classic first-person shooter, Duke Nukem 3D" 5.11 -MAINTAINER="mallory@sweetpeople.org" 5.12 +MAINTAINER="al.bobylev@gmail.com" 5.13 LICENSE="GPL2" 5.14 +WEB_SITE="http://eduke32.com/" 5.15 5.16 -TARBALL="${PACKAGE}_src_${VERSION}.tar.bz2" 5.17 -WEB_SITE="http://www.eduke32.com/" 5.18 -WGET_URL="http://dukeworld.duke4.net/$PACKAGE/synthesis/$VERSION/$TARBALL" 5.19 -TAGS="shooting" 5.20 +TARBALL="eduke32_src_$VERSION.tar.xz" 5.21 +WGET_URL="https://dukeworld.com/eduke32/synthesis/$VERSION/$TARBALL" 5.22 5.23 -BUILD_DEPENDS="libsdl-dev libsdl-mixer-dev libvorbis-dev gtk+-dev nasm \ 5.24 -mesa-dev glu-dev gcc49" 5.25 +BUILD_DEPENDS="libsdl2-dev glu-dev mesa-dev libsdl2-mixer-dev libvpx-dev \ 5.26 +libvorbis-dev flac-dev fluidsynth-dev" 5.27 +BUILD_DEPENDS_i486="$BUILD_DEPENDS nasm" 5.28 5.29 -# Rules to configure and make the package. 5.30 -compile_rules() 5.31 -{ 5.32 - case $ARCH in 5.33 - x86_64) Arch='nocona';; 5.34 - *) Arch="$ARCH";; 5.35 - esac 5.36 - 5.37 - make \ 5.38 - CC=gcc-49 \ 5.39 - CXX=g++-49 \ 5.40 - CFLAGS="-march=$Arch -Os -pipe" \ 5.41 - $MAKEFLAGS || return 1 5.42 +compile_rules() { 5.43 + make $MAKEFLAGS || return 1 5.44 5.45 install -Dm755 eduke32 $install/usr/bin/eduke32 5.46 install -Dm755 mapster32 $install/usr/bin/mapster32 5.47 @@ -35,5 +24,7 @@ 5.48 5.49 genpkg_rules() { 5.50 copy @std 5.51 - DEPENDS="libsdl libsdl-mixer libvorbis gtk+ eduke32-data" 5.52 + DEPENDS="flac libsdl2 libsdl2-mixer libvorbis libvpx" 5.53 + SUGGESTED="eduke32-shareware-data fluidsynth" 5.54 + TAGS="shooting" 5.55 }
6.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 6.2 +++ b/eduke32/stuff/mapster32.desktop Thu Oct 04 06:46:42 2018 +0300 6.3 @@ -0,0 +1,8 @@ 6.4 +[Desktop Entry] 6.5 +Type=Application 6.6 +Name=Mapster32 6.7 +Comment=Level editor for EDuke32 6.8 +Comment[ru]=Редактор уровней для EDuke32 6.9 +Exec=mapster32 6.10 +Icon=eduke32 6.11 +Categories=Game;
7.1 --- a/gtk-engine-nodoka/receipt Tue Oct 02 22:23:34 2018 +0300 7.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 7.3 @@ -1,27 +0,0 @@ 7.4 -# SliTaz package receipt v2. 7.5 - 7.6 -PACKAGE="gtk-engine-nodoka" 7.7 -VERSION="0.7.5" 7.8 -CATEGORY="customization" 7.9 -SHORT_DESC="Light and modern GTK theme engine" 7.10 -MAINTAINER="pankso@slitaz.org" 7.11 -LICENSE="GPL2" 7.12 -WEB_SITE="https://fedorahosted.org/nodoka/" 7.13 -REPOLOGY="gtk-nodoka-engine" 7.14 - 7.15 -TARBALL="gtk-nodoka-engine-$VERSION.tar.gz" 7.16 -WGET_URL="https://fedorahosted.org/released/nodoka/$TARBALL" 7.17 - 7.18 -BUILD_DEPENDS="gtk+-dev" 7.19 - 7.20 -compile_rules() { 7.21 - ./configure $CONFIGURE_ARGS && 7.22 - fix libtool && 7.23 - make && 7.24 - make install 7.25 -} 7.26 - 7.27 -genpkg_rules() { 7.28 - copy @std 7.29 - DEPENDS="gtk+" 7.30 -}
8.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 8.2 +++ b/gtk-nodoka-engine/receipt Thu Oct 04 06:46:42 2018 +0300 8.3 @@ -0,0 +1,27 @@ 8.4 +# SliTaz package receipt v2. 8.5 + 8.6 +PACKAGE="gtk-nodoka-engine" 8.7 +VERSION="0.7.5" 8.8 +CATEGORY="customization" 8.9 +SHORT_DESC="Light and modern GTK theme engine" 8.10 +MAINTAINER="pankso@slitaz.org" 8.11 +LICENSE="GPL2" 8.12 +WEB_SITE="https://fedorahosted.org/nodoka/" 8.13 +REPOLOGY="gtk-nodoka-engine" 8.14 + 8.15 +TARBALL="$PACKAGE-$VERSION.tar.gz" 8.16 +WGET_URL="https://fedorahosted.org/released/nodoka/$TARBALL" 8.17 + 8.18 +BUILD_DEPENDS="gtk+-dev" 8.19 + 8.20 +compile_rules() { 8.21 + ./configure $CONFIGURE_ARGS && 8.22 + fix libtool && 8.23 + make && 8.24 + make install 8.25 +} 8.26 + 8.27 +genpkg_rules() { 8.28 + copy @std 8.29 + DEPENDS="gtk+" 8.30 +}
9.1 Binary file web-applications/.icon.png has changed
10.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 10.2 +++ b/web-applications/description.web-google-services.txt Thu Oct 04 06:46:42 2018 +0300 10.3 @@ -0,0 +1,9 @@ 10.4 +Web Google Services 10.5 + 10.6 +This package allows access to Google services directly from 10.7 +the menu. After installing the Google services are available 10.8 +in various categories. The Google Office is included in the 10.9 +"Office" menu. 10.10 + 10.11 +A lightweight desktop with online applications. You need 10.12 +internet connection to use the services.
11.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 11.2 +++ b/web-applications/description.web-picozu.txt Thu Oct 04 06:46:42 2018 +0300 11.3 @@ -0,0 +1,11 @@ 11.4 +Picozu Web 11.5 + 11.6 +Picozu is an online drawing and photo retouching application 11.7 +based on HTML5 and CSS3. The application provides you with an 11.8 +easy yet complex way to edit your photos, draw using various 11.9 +brushes, filters, layers and explore various editing tools 11.10 +such as color fill, magic eraser, freehand selection, cropping, 11.11 +selections and more. 11.12 + 11.13 +Picozu 11.14 +https://www.picozu.com/
12.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 12.2 +++ b/web-applications/description.web-skype.txt Thu Oct 04 06:46:42 2018 +0300 12.3 @@ -0,0 +1,8 @@ 12.4 +Skype Web (BETA) 12.5 + 12.6 +Skype for Web (Beta) makes it easier to connect with 12.7 +family and friends around the world directly from your 12.8 +Skype browser. 12.9 + 12.10 +Skype 12.11 +https://skype.com/
13.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 13.2 +++ b/web-applications/description.web-telegram.txt Thu Oct 04 06:46:42 2018 +0300 13.3 @@ -0,0 +1,8 @@ 13.4 +Telegram Web 13.5 + 13.6 +Telegram is a cloud-based mobile and desktop messaging app 13.7 +with a focus on security and speed. 13.8 + 13.9 +Telegram 13.10 +https://telegram.org/ 13.11 +
14.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 14.2 +++ b/web-applications/description.web-tweetdeck.txt Thu Oct 04 06:46:42 2018 +0300 14.3 @@ -0,0 +1,17 @@ 14.4 +TweetDeck 14.5 + 14.6 +The most powerful Twitter tool for real-time tracking, organizing and engagement. 14.7 + 14.8 +Create a custom Twitter experience. 14.9 + 14.10 +Organize and build custom timelines, keep track of lists, searches, activity and 14.11 +more—all in one interface. 14.12 + 14.13 +Find exactly what you're looking for. 14.14 + 14.15 +Tweet together. 14.16 + 14.17 +Share an account with your team, without sharing your password. Maintain full control 14.18 +over permissions at all times. 14.19 + 14.20 +https://about.twitter.com/pt/products/tweetdeck
15.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 15.2 +++ b/web-applications/description.web-whatsapp.txt Thu Oct 04 06:46:42 2018 +0300 15.3 @@ -0,0 +1,12 @@ 15.4 +WhatsApp Web 15.5 + 15.6 +Send and receive WhatsApp messages right from your computer. 15.7 +We recommend using WhatsApp Web with one of the following 15.8 +browsers: Google Chrome or Mozilla Firefox. 15.9 + 15.10 +WhatsApp Messenger :: cross-platform mobile messaging app for 15.11 +iPhone, BlackBerry, Android, Windows Phone and Nokia. Send 15.12 +text, video, images, audio for free. 15.13 + 15.14 +WhatsApp 15.15 +https://www.whatsapp.com/
16.1 --- a/web-applications/receipt Tue Oct 02 22:23:34 2018 +0300 16.2 +++ b/web-applications/receipt Thu Oct 04 06:46:42 2018 +0300 16.3 @@ -1,17 +1,70 @@ 16.4 -# SliTaz package receipt. 16.5 +# SliTaz package receipt v2. 16.6 16.7 PACKAGE="web-applications" 16.8 VERSION="1.6" 16.9 CATEGORY="network" 16.10 -SHORT_DESC="Set of desktop files for Web applications." 16.11 +SHORT_DESC="Set of desktop files for Web applications" 16.12 MAINTAINER="pankso@slitaz.org" 16.13 -LICENSE="BSD" 16.14 +LICENSE="BSD Freeware Microsoft GPL3 WhatsApp-Inc" 16.15 WEB_SITE="http://www.slitaz.org/" 16.16 +HOST_ARCH="any" 16.17 REPOLOGY="-" 16.18 16.19 -# Rules to gen a SliTaz package suitable for Tazpkg. 16.20 -genpkg_rules() 16.21 -{ 16.22 - mkdir -p $fs/usr/share 16.23 - cp -a stuff/* $fs/usr/share 16.24 +SPLIT="web-google-services web-picozu web-skype web-telegram web-tweetdeck \ 16.25 +web-whatsapp web-applications" 16.26 + 16.27 +compile_rules() { 16.28 + mkdir -p $install/usr/share/ 16.29 + cp -r $stuff/bin/ $install/usr/ 16.30 + cp -r $stuff/applications/ $install/usr/share/ 16.31 + cp -r $stuff/pixmaps/ $install/usr/share/ 16.32 + chmod a+x $install/usr/bin/* 16.33 } 16.34 + 16.35 +genpkg_rules() { 16.36 + case $PACKAGE in 16.37 + web-google-services) 16.38 + copy web-google* 16.39 + SHORT_DESC="Google online services and Google online Office for your desktop" 16.40 + VERSION="0.1" 16.41 + TAGS="cloud google" 16.42 + ;; 16.43 + web-picozu) 16.44 + copy web-picozu* 16.45 + SHORT_DESC="Picozu is a online HTML5 image editor" 16.46 + VERSION="0.1" 16.47 + DEPENDS="tazweb" 16.48 + TAGS="cloud editor image picozu" 16.49 + ;; 16.50 + web-skype) 16.51 + copy web-skype* 16.52 + SHORT_DESC="Makes it easier to connect with family and friends" 16.53 + VERSION="0.1" 16.54 + DEPENDS="firefox-official" 16.55 + TAGS="cloud skype" 16.56 + ;; 16.57 + web-telegram) 16.58 + copy web-telegram* 16.59 + SHORT_DESC="Telegram web for all platforms" 16.60 + VERSION="0.1" 16.61 + TAGS="cloud telegram" 16.62 + ;; 16.63 + web-tweetdeck) 16.64 + copy web-tweetdeck* 16.65 + SHORT_DESC="A social media dashboard application for management of Twitter accounts" 16.66 + VERSION="0.1a" 16.67 + DEPENDS="tazweb" 16.68 + TAGS="social twitter tweetdeck" 16.69 + ;; 16.70 + web-whatsapp) 16.71 + copy web-whatsapp* 16.72 + SHORT_DESC="Send and receive WhatsApp messages right from your computer" 16.73 + VERSION="0.1" 16.74 + DEPENDS="firefox-official" 16.75 + TAGS="cloud whatsapp" 16.76 + ;; 16.77 + web-applications) 16.78 + copy @std @rm 16.79 + ;; 16.80 + esac 16.81 +}
17.1 --- a/web-applications/stuff/applications/bitbucket.desktop Tue Oct 02 22:23:34 2018 +0300 17.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 17.3 @@ -1,10 +0,0 @@ 17.4 -[Desktop Entry] 17.5 -Type=Application 17.6 -Name=BitBucket Repositories 17.7 -Name[fr]=Dépôts BitBucket 17.8 -Name[pt]=Repositórios BitBucket 17.9 -Name[pt_BR]=Repositórios BitBucket 17.10 -Name[ru]=Репозитории BitBucket 17.11 -Exec=browser http://bitbucket.org/ 17.12 -Icon=bitbucket 17.13 -Categories=Development;ProjectManagement;
18.1 --- a/web-applications/stuff/applications/jamendo.desktop Tue Oct 02 22:23:34 2018 +0300 18.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 18.3 @@ -1,9 +0,0 @@ 18.4 -[Desktop Entry] 18.5 -Type=Application 18.6 -Name=Jamendo Music 18.7 -Name[fr]=Musique Jamendo 18.8 -Name[ru]=Музыка на Jamendo 18.9 -TryExec=browser 18.10 -Exec=browser http://www.jamendo.com/ 18.11 -Icon=jamendo 18.12 -Categories=AudioVideo;Audio;
19.1 --- a/web-applications/stuff/applications/paste.desktop Tue Oct 02 22:23:34 2018 +0300 19.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 19.3 @@ -1,8 +0,0 @@ 19.4 -[Desktop Entry] 19.5 -Type=Application 19.6 -Name=Encrypted paste tool 19.7 -Name[fr]=Echange de textes chiffrés 19.8 -Name[ru]=Безопасный обмен текстами 19.9 -Exec=browser http://paste.slitaz.org/ 19.10 -Icon=slitaz-icon 19.11 -Categories=Office;
20.1 --- a/web-applications/stuff/applications/time.is.desktop Tue Oct 02 22:23:34 2018 +0300 20.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 20.3 @@ -1,42 +0,0 @@ 20.4 -[Desktop Entry] 20.5 -Type=Application 20.6 -Name=Time.is 20.7 -Comment=Exact time for any time zone 20.8 -Comment[ar]=الوقت بالضبط، لأي خطٍ زمني 20.9 -Comment[az]=Dəqiq vaxt, istənilən saat qurşağı 20.10 -Comment[bg]=Точно време, която и да е часова зона 20.11 -Comment[ca]=L'hora exacte, a qualsevol zona horària 20.12 -Comment[cs]=Přesný čas v každém pásmu 20.13 -Comment[de]=Exakte Zeit, für jegliche Zeitzone 20.14 -Comment[eo]=Ekzakta tempo, kiu ajn horaro 20.15 -Comment[es]=Hora exacta, cualquier zona horaria 20.16 -Comment[et]=Täpne aeg suvalises ajavööndis 20.17 -Comment[fi]=Tarkka aika, mikä tahansa aikavyöhyke 20.18 -Comment[fr]=Heure exacte, pour tout fuseau horaire 20.19 -Comment[hi]=सही समय, किसी भी समय क्षेत्र 20.20 -Comment[hr]=Točno vrijeme, bilo koja vremenska zona 20.21 -Comment[hu]=Pontos idő, bármely időzóna 20.22 -Comment[hy]=ճշգրիտ ժամը, ցանկացած ժամային գոտի 20.23 -Comment[id]=Waktu aktual, zona waktu lainnya 20.24 -Comment[is]=Nákvæm klukka, í hvaða tímabelti em er 20.25 -Comment[it]=Ora esatta, qualunque fuso orario 20.26 -Comment[ja]=正確な時刻、どんな時間帯でも 20.27 -Comment[ka]=ზუსტი დრო, ნებისმიერი დროის სარტყელი 20.28 -Comment[lt]=Tikslus laikas, bet kuri laiko juosta 20.29 -Comment[lv]=Precīzs laiks, jebkurā laika zonā 20.30 -Comment[mg]=Ora tena marina, tsy mifidy fiozao ara-potoana 20.31 -Comment[mk]=Точно време, било која временска зона 20.32 -Comment[nl]=De juiste tijd in elke tijdzone 20.33 -Comment[nn]=Eksakt tid, for einkvar tidssone 20.34 -Comment[no]=Eksakt tid, alle tidssoner 20.35 -Comment[pl]=Dokładny czas, dowolna strefa czasowa 20.36 -Comment[ru]=Точное время в любом часовом поясе 20.37 -Comment[sq]=Koha e saktë, në çfarëdo zone kohore 20.38 -Comment[sr]=Тачно време за било коју временску зону 20.39 -Comment[sv]=Exakt tid, valfri tidszon 20.40 -Comment[tr]=Kesin saat, her saat dilimi 20.41 -Comment[uk]=Точний час у будь-якому куточку світу 20.42 -Comment[zh_TW]=在任何時區的精確時間 20.43 -Exec=browser http://time.is/ 20.44 -Icon=preferences-system-time 20.45 -Categories=Utility;Clock;
21.1 --- a/web-applications/stuff/applications/twitter.desktop Tue Oct 02 22:23:34 2018 +0300 21.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 21.3 @@ -1,9 +0,0 @@ 21.4 -[Desktop Entry] 21.5 -Type=Application 21.6 -Name=Twitter Micro-blogging 21.7 -Name[fr]=Micro-blogging Twitter 21.8 -Name[ru]=Микро-блоги Twitter 21.9 -TryExec=browser 21.10 -Exec=browser http://twitter.com/ 21.11 -Icon=twitter 21.12 -Categories=Network;InstantMessaging;
22.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 22.2 +++ b/web-applications/stuff/applications/web-bitbucket.desktop Thu Oct 04 06:46:42 2018 +0300 22.3 @@ -0,0 +1,10 @@ 22.4 +[Desktop Entry] 22.5 +Type=Application 22.6 +Name=BitBucket Repositories 22.7 +Name[fr]=Dépôts BitBucket 22.8 +Name[pt]=Repositórios BitBucket 22.9 +Name[pt_BR]=Repositórios BitBucket 22.10 +Name[ru]=Репозитории BitBucket 22.11 +Exec=browser http://bitbucket.org/ 22.12 +Icon=web-bitbucket 22.13 +Categories=Development;ProjectManagement;
23.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 23.2 +++ b/web-applications/stuff/applications/web-google-academic.desktop Thu Oct 04 06:46:42 2018 +0300 23.3 @@ -0,0 +1,9 @@ 23.4 +[Desktop Entry] 23.5 +Type=Application 23.6 +Name=Google Scholar 23.7 +Name[ru]=Google Академия 23.8 +Comment=Search all scholarly literature from one convenient place 23.9 +TryExec=browser 23.10 +Exec=browser https://scholar.google.com/ 23.11 +Icon=web-google-academic 23.12 +Categories=Education;
24.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 24.2 +++ b/web-applications/stuff/applications/web-google-admob.desktop Thu Oct 04 06:46:42 2018 +0300 24.3 @@ -0,0 +1,8 @@ 24.4 +[Desktop Entry] 24.5 +Type=Application 24.6 +Name=Google Admob 24.7 +Comment=Monetize your apps intelligently. 24.8 +TryExec=browser 24.9 +Exec=browser https://www.google.com/admob/ 24.10 +Icon=web-google-admob 24.11 +Categories=Network;
25.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 25.2 +++ b/web-applications/stuff/applications/web-google-adsense.desktop Thu Oct 04 06:46:42 2018 +0300 25.3 @@ -0,0 +1,8 @@ 25.4 +[Desktop Entry] 25.5 +Type=Application 25.6 +Name=Google AdSense 25.7 +Comment=Simple way to earn money by placing ads on your website. 25.8 +TryExec=browser 25.9 +Exec=browser https://www.google.com/adsense/ 25.10 +Icon=web-google-adsense 25.11 +Categories=Network;
26.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 26.2 +++ b/web-applications/stuff/applications/web-google-adwords.desktop Thu Oct 04 06:46:42 2018 +0300 26.3 @@ -0,0 +1,8 @@ 26.4 +[Desktop Entry] 26.5 +Type=Application 26.6 +Name=Google AdWords 26.7 +Comment=Attract more customers, and pay only for results. 26.8 +TryExec=browser 26.9 +Exec=browser https://www.google.com/adwords/ 26.10 +Icon=web-google-adwords 26.11 +Categories=Network;
27.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 27.2 +++ b/web-applications/stuff/applications/web-google-apps-work.desktop Thu Oct 04 06:46:42 2018 +0300 27.3 @@ -0,0 +1,8 @@ 27.4 +[Desktop Entry] 27.5 +Type=Application 27.6 +Name=Google Apps For Work 27.7 +Comment=Custom services for your company. 27.8 +TryExec=browser 27.9 +Exec=browser https://apps.google.com/ 27.10 +Icon=web-google-apps-work 27.11 +Categories=Network;
28.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 28.2 +++ b/web-applications/stuff/applications/web-google-blogger.desktop Thu Oct 04 06:46:42 2018 +0300 28.3 @@ -0,0 +1,8 @@ 28.4 +[Desktop Entry] 28.5 +Type=Application 28.6 +Name=Google Blogger 28.7 +Comment=Share your life online in a blog. Is fast, easy and free! 28.8 +TryExec=browser 28.9 +Exec=browser https://www.blogger.com/start 28.10 +Icon=web-google-blogger 28.11 +Categories=Network;
29.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 29.2 +++ b/web-applications/stuff/applications/web-google-bookmarks.desktop Thu Oct 04 06:46:42 2018 +0300 29.3 @@ -0,0 +1,8 @@ 29.4 +[Desktop Entry] 29.5 +Type=Application 29.6 +Name=Google Bookmarks 29.7 +Comment=Access your bookmarks on the web. 29.8 +TryExec=browser 29.9 +Exec=browser https://www.google.com.br/bookmarks/ 29.10 +Icon=web-google-bookmarks 29.11 +Categories=Network;Utility;
30.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 30.2 +++ b/web-applications/stuff/applications/web-google-books.desktop Thu Oct 04 06:46:42 2018 +0300 30.3 @@ -0,0 +1,8 @@ 30.4 +[Desktop Entry] 30.5 +Type=Application 30.6 +Name=Google Books 30.7 +Comment=Search for full texts of books. 30.8 +TryExec=browser 30.9 +Exec=browser https://books.google.com/ 30.10 +Icon=web-google-books 30.11 +Categories=Education;
31.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 31.2 +++ b/web-applications/stuff/applications/web-google-business.desktop Thu Oct 04 06:46:42 2018 +0300 31.3 @@ -0,0 +1,8 @@ 31.4 +[Desktop Entry] 31.5 +Type=Application 31.6 +Name=Google Business 31.7 +Comment=Let your company well positioned in Google. 31.8 +TryExec=browser 31.9 +Exec=browser https://www.google.com/business/ 31.10 +Icon=web-google-business 31.11 +Categories=Network;
32.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 32.2 +++ b/web-applications/stuff/applications/web-google-calendar.desktop Thu Oct 04 06:46:42 2018 +0300 32.3 @@ -0,0 +1,8 @@ 32.4 +[Desktop Entry] 32.5 +Type=Application 32.6 +Name=Google Calendar 32.7 +Comment=Organize your schedule and share events with your friends. 32.8 +TryExec=browser 32.9 +Exec=browser https://www.google.com/calendar/ 32.10 +Icon=web-google-calendar 32.11 +Categories=Office;
33.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 33.2 +++ b/web-applications/stuff/applications/web-google-cloud-print.desktop Thu Oct 04 06:46:42 2018 +0300 33.3 @@ -0,0 +1,8 @@ 33.4 +[Desktop Entry] 33.5 +Type=Application 33.6 +Name=Google Cloud Print 33.7 +Comment=Print documents and photos on any devices. 33.8 +TryExec=browser 33.9 +Exec=browser https://www.google.com/cloudprint/ 33.10 +Icon=web-google-cloud-print 33.11 +Categories=Office;
34.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 34.2 +++ b/web-applications/stuff/applications/web-google-developers.desktop Thu Oct 04 06:46:42 2018 +0300 34.3 @@ -0,0 +1,8 @@ 34.4 +[Desktop Entry] 34.5 +Type=Application 34.6 +Name=Google Developers 34.7 +Comment=Explore APIs, SDKs, Docs, codes and support resources. 34.8 +TryExec=browser 34.9 +Exec=browser https://developers.google.com/ 34.10 +Icon=web-google-developers 34.11 +Categories=Development;
35.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 35.2 +++ b/web-applications/stuff/applications/web-google-document.desktop Thu Oct 04 06:46:42 2018 +0300 35.3 @@ -0,0 +1,8 @@ 35.4 +[Desktop Entry] 35.5 +Type=Application 35.6 +Name=Google Document 35.7 +Comment=Open, edit and create documents. 35.8 +TryExec=browser 35.9 +Exec=browser https://docs.google.com/document/ 35.10 +Icon=web-google-documents 35.11 +Categories=Office;WordProcessor;
36.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 36.2 +++ b/web-applications/stuff/applications/web-google-drawings.desktop Thu Oct 04 06:46:42 2018 +0300 36.3 @@ -0,0 +1,8 @@ 36.4 +[Desktop Entry] 36.5 +Type=Application 36.6 +Name=Google Drawings 36.7 +Comment=Create diagrams and flowcharts. 36.8 +TryExec=browser 36.9 +Exec=browser https://docs.google.com/drawings/ 36.10 +Icon=web-google-drawings 36.11 +Categories=Office;
37.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 37.2 +++ b/web-applications/stuff/applications/web-google-forms.desktop Thu Oct 04 06:46:42 2018 +0300 37.3 @@ -0,0 +1,8 @@ 37.4 +[Desktop Entry] 37.5 +Type=Application 37.6 +Name=Google Forms 37.7 +Comment=Open, create and edit forms. 37.8 +TryExec=browser 37.9 +Exec=browser https://docs.google.com/forms/ 37.10 +Icon=web-google-forms 37.11 +Categories=Office;
38.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 38.2 +++ b/web-applications/stuff/applications/web-google-groups.desktop Thu Oct 04 06:46:42 2018 +0300 38.3 @@ -0,0 +1,8 @@ 38.4 +[Desktop Entry] 38.5 +Type=Application 38.6 +Name=Google Groups 38.7 +Comment=Create email lists and discussion groups. 38.8 +TryExec=browser 38.9 +Exec=browser https://groups.google.com/ 38.10 +Icon=web-google-groups 38.11 +Categories=Network;
39.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 39.2 +++ b/web-applications/stuff/applications/web-google-keep.desktop Thu Oct 04 06:46:42 2018 +0300 39.3 @@ -0,0 +1,8 @@ 39.4 +[Desktop Entry] 39.5 +Type=Application 39.6 +Name=Google Keep 39.7 +Comment=Save what you are thinking. 39.8 +TryExec=browser 39.9 +Exec=browser https://keep.google.com/ 39.10 +Icon=web-google-keep 39.11 +Categories=Office;
40.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 40.2 +++ b/web-applications/stuff/applications/web-google-maps.desktop Thu Oct 04 06:46:42 2018 +0300 40.3 @@ -0,0 +1,8 @@ 40.4 +[Desktop Entry] 40.5 +Type=Application 40.6 +Name=Google Maps 40.7 +Comment=Desktop web mapping service developed by Google. 40.8 +TryExec=browser 40.9 +Exec=browser https://maps.google.com/ 40.10 +Icon=web-google-maps 40.11 +Categories=Graphics;Network;
41.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 41.2 +++ b/web-applications/stuff/applications/web-google-news.desktop Thu Oct 04 06:46:42 2018 +0300 41.3 @@ -0,0 +1,8 @@ 41.4 +[Desktop Entry] 41.5 +Type=Application 41.6 +Name=Google News 41.7 +Comment=Search the news today. 41.8 +TryExec=browser 41.9 +Exec=browser https://news.google.com/ 41.10 +Icon=web-google-news 41.11 +Categories=Network;
42.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 42.2 +++ b/web-applications/stuff/applications/web-google-panoramio.desktop Thu Oct 04 06:46:42 2018 +0300 42.3 @@ -0,0 +1,8 @@ 42.4 +[Desktop Entry] 42.5 +Type=Application 42.6 +Name=Google Panoramio 42.7 +Comment=Discover the world through photos. 42.8 +TryExec=browser 42.9 +Exec=browser https://www.panoramio.com 42.10 +Icon=web-google-panoramio 42.11 +Categories=Graphics;Network;
43.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 43.2 +++ b/web-applications/stuff/applications/web-google-photos.desktop Thu Oct 04 06:46:42 2018 +0300 43.3 @@ -0,0 +1,8 @@ 43.4 +[Desktop Entry] 43.5 +Type=Application 43.6 +Name=Google Photos 43.7 +Comment=All your photos are backed up safely. 43.8 +TryExec=browser 43.9 +Exec=browser https://photos.google.com/ 43.10 +Icon=web-google-photos 43.11 +Categories=Graphics;
44.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 44.2 +++ b/web-applications/stuff/applications/web-google-plus.desktop Thu Oct 04 06:46:42 2018 +0300 44.3 @@ -0,0 +1,8 @@ 44.4 +[Desktop Entry] 44.5 +Type=Application 44.6 +Name=Google Plus 44.7 +Comment=Share your moments to the world. 44.8 +TryExec=browser 44.9 +Exec=browser https://plus.google.com/ 44.10 +Icon=web-google-plus 44.11 +Categories=Network;
45.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 45.2 +++ b/web-applications/stuff/applications/web-google-presentation.desktop Thu Oct 04 06:46:42 2018 +0300 45.3 @@ -0,0 +1,8 @@ 45.4 +[Desktop Entry] 45.5 +Type=Application 45.6 +Name=Google Presentation 45.7 +Comment=Open, create and edit presentations. 45.8 +TryExec=browser 45.9 +Exec=browser https://docs.google.com/presentation/ 45.10 +Icon=web-google-presentation 45.11 +Categories=Office;Presentation;
46.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 46.2 +++ b/web-applications/stuff/applications/web-google-search.desktop Thu Oct 04 06:46:42 2018 +0300 46.3 @@ -0,0 +1,8 @@ 46.4 +[Desktop Entry] 46.5 +Type=Application 46.6 +Name=Google Search 46.7 +Comment=Search billions of Web pages. 46.8 +TryExec=browser 46.9 +Exec=browser https://encrypted.google.com/ 46.10 +Icon=web-google-search 46.11 +Categories=Network;
47.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 47.2 +++ b/web-applications/stuff/applications/web-google-sheets.desktop Thu Oct 04 06:46:42 2018 +0300 47.3 @@ -0,0 +1,8 @@ 47.4 +[Desktop Entry] 47.5 +Type=Application 47.6 +Name=Google Sheets 47.7 +Comment=Open, edit and create spreadsheets. 47.8 +TryExec=browser 47.9 +Exec=browser https://docs.google.com/spreadsheets/ 47.10 +Icon=web-google-sheets 47.11 +Categories=Office;Spreadsheet;
48.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 48.2 +++ b/web-applications/stuff/applications/web-google-sites.desktop Thu Oct 04 06:46:42 2018 +0300 48.3 @@ -0,0 +1,8 @@ 48.4 +[Desktop Entry] 48.5 +Type=Application 48.6 +Name=Google Sites 48.7 +Comment=Create websites and wikis. 48.8 +TryExec=browser 48.9 +Exec=browser https://sites.google.com/ 48.10 +Icon=web-google-sites 48.11 +Categories=Development;
49.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 49.2 +++ b/web-applications/stuff/applications/web-google-translate.desktop Thu Oct 04 06:46:42 2018 +0300 49.3 @@ -0,0 +1,8 @@ 49.4 +[Desktop Entry] 49.5 +Type=Application 49.6 +Name=Google Translate 49.7 +Comment=Translate texts, web pages and files in 50 languages. 49.8 +TryExec=browser 49.9 +Exec=browser https://translate.google.com/ 49.10 +Icon=web-google-translate 49.11 +Categories=Utility;
50.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 50.2 +++ b/web-applications/stuff/applications/web-google-trends.desktop Thu Oct 04 06:46:42 2018 +0300 50.3 @@ -0,0 +1,8 @@ 50.4 +[Desktop Entry] 50.5 +Type=Application 50.6 +Name=Google Trends 50.7 +Comment=Google Trends is a public web facility of Google Inc. 50.8 +TryExec=browser 50.9 +Exec=browser https://www.google.com/trends/ 50.10 +Icon=web-google-trends 50.11 +Categories=Network;
51.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 51.2 +++ b/web-applications/stuff/applications/web-google-youtube-tv.desktop Thu Oct 04 06:46:42 2018 +0300 51.3 @@ -0,0 +1,8 @@ 51.4 +[Desktop Entry] 51.5 +Type=Application 51.6 +Name=YouTube TV 51.7 +Comment=Youtube TV (Best viewed with Firefox). 51.8 +TryExec=browser 51.9 +Exec=browser "https://www.youtube.com/?app=tv" 51.10 +Icon=web-google-youtube 51.11 +Categories=AudioVideo;Audio;Video;Player;TV;
52.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 52.2 +++ b/web-applications/stuff/applications/web-google-youtube.desktop Thu Oct 04 06:46:42 2018 +0300 52.3 @@ -0,0 +1,8 @@ 52.4 +[Desktop Entry] 52.5 +Type=Application 52.6 +Name=YouTube Desktop 52.7 +Comment=YouTube allow discover and share online videos. 52.8 +TryExec=browser 52.9 +Exec=browser "https://www.youtube.com/?app=desktop" 52.10 +Icon=web-google-youtube 52.11 +Categories=AudioVideo;Audio;Video;
53.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 53.2 +++ b/web-applications/stuff/applications/web-jamendo.desktop Thu Oct 04 06:46:42 2018 +0300 53.3 @@ -0,0 +1,9 @@ 53.4 +[Desktop Entry] 53.5 +Type=Application 53.6 +Name=Jamendo Music 53.7 +Name[fr]=Musique Jamendo 53.8 +Name[ru]=Музыка на Jamendo 53.9 +TryExec=browser 53.10 +Exec=browser http://www.jamendo.com/ 53.11 +Icon=web-jamendo 53.12 +Categories=AudioVideo;Audio;
54.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 54.2 +++ b/web-applications/stuff/applications/web-paste.desktop Thu Oct 04 06:46:42 2018 +0300 54.3 @@ -0,0 +1,8 @@ 54.4 +[Desktop Entry] 54.5 +Type=Application 54.6 +Name=Encrypted paste tool 54.7 +Name[fr]=Echange de textes chiffrés 54.8 +Name[ru]=Безопасный обмен текстами 54.9 +Exec=browser http://paste.slitaz.org/ 54.10 +Icon=slitaz-icon 54.11 +Categories=Office;
55.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 55.2 +++ b/web-applications/stuff/applications/web-picozu.desktop Thu Oct 04 06:46:42 2018 +0300 55.3 @@ -0,0 +1,7 @@ 55.4 +[Desktop Entry] 55.5 +Type=Application 55.6 +Name=Picozu Image Editor (WebApp) 55.7 +Comment=Picozu the HTML5 online image editor. 55.8 +Exec=tazweb --notoolbar "https://www.picozu.com/editor" 55.9 +Icon=web-picozu 55.10 +Categories=Network;
56.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 56.2 +++ b/web-applications/stuff/applications/web-skype.desktop Thu Oct 04 06:46:42 2018 +0300 56.3 @@ -0,0 +1,7 @@ 56.4 +[Desktop Entry] 56.5 +Type=Application 56.6 +Name=Skype Web (Beta) 56.7 +Comment=Makes it easier to connect with family and friends. (Better with Firefox) 56.8 +Exec=firefox-official "https://web.skype.com/" 56.9 +Icon=web-skype 56.10 +Categories=Network;
57.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 57.2 +++ b/web-applications/stuff/applications/web-telegram.desktop Thu Oct 04 06:46:42 2018 +0300 57.3 @@ -0,0 +1,7 @@ 57.4 +[Desktop Entry] 57.5 +Type=Application 57.6 +Name=Telegram Web 57.7 +Comment=Telegram web for all platforms. 57.8 +Exec=browser "https://web.telegram.org/" 57.9 +Icon=web-telegram 57.10 +Categories=Network;
58.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 58.2 +++ b/web-applications/stuff/applications/web-time.is.desktop Thu Oct 04 06:46:42 2018 +0300 58.3 @@ -0,0 +1,42 @@ 58.4 +[Desktop Entry] 58.5 +Type=Application 58.6 +Name=Time.is 58.7 +Comment=Exact time for any time zone 58.8 +Comment[ar]=الوقت بالضبط، لأي خطٍ زمني 58.9 +Comment[az]=Dəqiq vaxt, istənilən saat qurşağı 58.10 +Comment[bg]=Точно време, която и да е часова зона 58.11 +Comment[ca]=L'hora exacte, a qualsevol zona horària 58.12 +Comment[cs]=Přesný čas v každém pásmu 58.13 +Comment[de]=Exakte Zeit, für jegliche Zeitzone 58.14 +Comment[eo]=Ekzakta tempo, kiu ajn horaro 58.15 +Comment[es]=Hora exacta, cualquier zona horaria 58.16 +Comment[et]=Täpne aeg suvalises ajavööndis 58.17 +Comment[fi]=Tarkka aika, mikä tahansa aikavyöhyke 58.18 +Comment[fr]=Heure exacte, pour tout fuseau horaire 58.19 +Comment[hi]=सही समय, किसी भी समय क्षेत्र 58.20 +Comment[hr]=Točno vrijeme, bilo koja vremenska zona 58.21 +Comment[hu]=Pontos idő, bármely időzóna 58.22 +Comment[hy]=ճշգրիտ ժամը, ցանկացած ժամային գոտի 58.23 +Comment[id]=Waktu aktual, zona waktu lainnya 58.24 +Comment[is]=Nákvæm klukka, í hvaða tímabelti em er 58.25 +Comment[it]=Ora esatta, qualunque fuso orario 58.26 +Comment[ja]=正確な時刻、どんな時間帯でも 58.27 +Comment[ka]=ზუსტი დრო, ნებისმიერი დროის სარტყელი 58.28 +Comment[lt]=Tikslus laikas, bet kuri laiko juosta 58.29 +Comment[lv]=Precīzs laiks, jebkurā laika zonā 58.30 +Comment[mg]=Ora tena marina, tsy mifidy fiozao ara-potoana 58.31 +Comment[mk]=Точно време, било која временска зона 58.32 +Comment[nl]=De juiste tijd in elke tijdzone 58.33 +Comment[nn]=Eksakt tid, for einkvar tidssone 58.34 +Comment[no]=Eksakt tid, alle tidssoner 58.35 +Comment[pl]=Dokładny czas, dowolna strefa czasowa 58.36 +Comment[ru]=Точное время в любом часовом поясе 58.37 +Comment[sq]=Koha e saktë, në çfarëdo zone kohore 58.38 +Comment[sr]=Тачно време за било коју временску зону 58.39 +Comment[sv]=Exakt tid, valfri tidszon 58.40 +Comment[tr]=Kesin saat, her saat dilimi 58.41 +Comment[uk]=Точний час у будь-якому куточку світу 58.42 +Comment[zh_TW]=在任何時區的精確時間 58.43 +Exec=browser http://time.is/ 58.44 +Icon=preferences-system-time 58.45 +Categories=Utility;Clock;
59.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 59.2 +++ b/web-applications/stuff/applications/web-tweetdeck.desktop Thu Oct 04 06:46:42 2018 +0300 59.3 @@ -0,0 +1,7 @@ 59.4 +[Desktop Entry] 59.5 +Type=Application 59.6 +Name=TweetDeck Web 59.7 +Comment=A dashboard application for management of Twitter accounts. 59.8 +Categories=Network; 59.9 +Icon=web-tweetdeck 59.10 +Exec=web-tweetdeck
60.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 60.2 +++ b/web-applications/stuff/applications/web-twitter.desktop Thu Oct 04 06:46:42 2018 +0300 60.3 @@ -0,0 +1,9 @@ 60.4 +[Desktop Entry] 60.5 +Type=Application 60.6 +Name=Twitter Micro-blogging 60.7 +Name[fr]=Micro-blogging Twitter 60.8 +Name[ru]=Микро-блоги Twitter 60.9 +TryExec=browser 60.10 +Exec=browser http://twitter.com/ 60.11 +Icon=web-twitter 60.12 +Categories=Network;InstantMessaging;
61.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 61.2 +++ b/web-applications/stuff/applications/web-whatsapp.desktop Thu Oct 04 06:46:42 2018 +0300 61.3 @@ -0,0 +1,7 @@ 61.4 +[Desktop Entry] 61.5 +Type=Application 61.6 +Name=WhatsApp Web 61.7 +Comment=Send and receive WhatsApp messages right from your computer. 61.8 +Exec=firefox-official "https://web.whatsapp.com/" 61.9 +Icon=web-whatsapp 61.10 +Categories=Network;
62.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 62.2 +++ b/web-applications/stuff/applications/web-wikipedia.desktop Thu Oct 04 06:46:42 2018 +0300 62.3 @@ -0,0 +1,11 @@ 62.4 +[Desktop Entry] 62.5 +Type=Application 62.6 +Name=Wikipedia Encyclopedia 62.7 +Name[fr]=Encyclopédie Wikipedia 62.8 +Name[pt]=Enciclopédia Wikipedia 62.9 +Name[pt_BR]=Enciclopédia Wikipedia 62.10 +Name[ru]=Википедия 62.11 +TryExec=browser 62.12 +Exec=browser http://www.wikipedia.org/ 62.13 +Icon=web-wikipedia 62.14 +Categories=Office;Database;
63.1 --- a/web-applications/stuff/applications/wikipedia.desktop Tue Oct 02 22:23:34 2018 +0300 63.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 63.3 @@ -1,11 +0,0 @@ 63.4 -[Desktop Entry] 63.5 -Type=Application 63.6 -Name=Wikipedia Encyclopedia 63.7 -Name[fr]=Encyclopédie Wikipedia 63.8 -Name[pt]=Enciclopédia Wikipedia 63.9 -Name[pt_BR]=Enciclopédia Wikipedia 63.10 -Name[ru]=Википедия 63.11 -TryExec=browser 63.12 -Exec=browser http://www.wikipedia.org/ 63.13 -Icon=wikipedia 63.14 -Categories=Office;Database;
64.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 64.2 +++ b/web-applications/stuff/bin/web-tweetdeck Thu Oct 04 06:46:42 2018 +0300 64.3 @@ -0,0 +1,5 @@ 64.4 +#!/bin/sh 64.5 + 64.6 +tazweb --notoolbar \ 64.7 + --useragent "Mozilla/5.0 (X11; SliTaz; Linux; rv:47.0) Gecko/20100101 Firefox/47" \ 64.8 + "https://tweetdeck.twitter.com/" "@1"
65.1 Binary file web-applications/stuff/pixmaps/bitbucket.png has changed
66.1 Binary file web-applications/stuff/pixmaps/jamendo.png has changed
67.1 Binary file web-applications/stuff/pixmaps/twitter.png has changed
68.1 Binary file web-applications/stuff/pixmaps/web-bitbucket.png has changed
69.1 Binary file web-applications/stuff/pixmaps/web-google-academic.png has changed
70.1 Binary file web-applications/stuff/pixmaps/web-google-admob.png has changed
71.1 Binary file web-applications/stuff/pixmaps/web-google-adsense.png has changed
72.1 Binary file web-applications/stuff/pixmaps/web-google-adwords.png has changed
73.1 Binary file web-applications/stuff/pixmaps/web-google-apps-work.png has changed
74.1 Binary file web-applications/stuff/pixmaps/web-google-blogger.png has changed
75.1 Binary file web-applications/stuff/pixmaps/web-google-bookmarks.png has changed
76.1 Binary file web-applications/stuff/pixmaps/web-google-books.png has changed
77.1 Binary file web-applications/stuff/pixmaps/web-google-business.png has changed
78.1 Binary file web-applications/stuff/pixmaps/web-google-calendar.png has changed
79.1 Binary file web-applications/stuff/pixmaps/web-google-cloud-print.png has changed
80.1 Binary file web-applications/stuff/pixmaps/web-google-default.png has changed
81.1 Binary file web-applications/stuff/pixmaps/web-google-developers.png has changed
82.1 Binary file web-applications/stuff/pixmaps/web-google-documents.png has changed
83.1 Binary file web-applications/stuff/pixmaps/web-google-drawings.png has changed
84.1 Binary file web-applications/stuff/pixmaps/web-google-forms.png has changed
85.1 Binary file web-applications/stuff/pixmaps/web-google-groups.png has changed
86.1 Binary file web-applications/stuff/pixmaps/web-google-keep.png has changed
87.1 Binary file web-applications/stuff/pixmaps/web-google-maps.png has changed
88.1 Binary file web-applications/stuff/pixmaps/web-google-news.png has changed
89.1 Binary file web-applications/stuff/pixmaps/web-google-panoramio.png has changed
90.1 Binary file web-applications/stuff/pixmaps/web-google-photos.png has changed
91.1 Binary file web-applications/stuff/pixmaps/web-google-plus.png has changed
92.1 Binary file web-applications/stuff/pixmaps/web-google-presentation.png has changed
93.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 93.2 +++ b/web-applications/stuff/pixmaps/web-google-search.png Thu Oct 04 06:46:42 2018 +0300 93.3 @@ -0,0 +1,1 @@ 93.4 +web-google-default.png 93.5 \ No newline at end of file
94.1 Binary file web-applications/stuff/pixmaps/web-google-sheets.png has changed
95.1 Binary file web-applications/stuff/pixmaps/web-google-sites.png has changed
96.1 Binary file web-applications/stuff/pixmaps/web-google-translate.png has changed
97.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 97.2 +++ b/web-applications/stuff/pixmaps/web-google-trends.png Thu Oct 04 06:46:42 2018 +0300 97.3 @@ -0,0 +1,1 @@ 97.4 +web-google-default.png 97.5 \ No newline at end of file
98.1 Binary file web-applications/stuff/pixmaps/web-google-youtube.png has changed
99.1 Binary file web-applications/stuff/pixmaps/web-jamendo.png has changed
100.1 Binary file web-applications/stuff/pixmaps/web-picozu.png has changed
101.1 Binary file web-applications/stuff/pixmaps/web-skype.png has changed
102.1 Binary file web-applications/stuff/pixmaps/web-telegram.png has changed
103.1 Binary file web-applications/stuff/pixmaps/web-tweetdeck.png has changed
104.1 Binary file web-applications/stuff/pixmaps/web-twitter.png has changed
105.1 Binary file web-applications/stuff/pixmaps/web-whatsapp.png has changed
106.1 Binary file web-applications/stuff/pixmaps/web-wikipedia.png has changed
107.1 Binary file web-applications/stuff/pixmaps/wikipedia.png has changed
108.1 --- a/web-google-services/description.txt Tue Oct 02 22:23:34 2018 +0300 108.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 108.3 @@ -1,9 +0,0 @@ 108.4 -Web Google Services 108.5 - 108.6 -This package allows access to Google services directly from 108.7 -the menu. After installing the Google services are available 108.8 -in various categories. The Google Office is included in the 108.9 -"Office" menu. 108.10 - 108.11 -A lightweight desktop with online applications. You need 108.12 -internet connection to use the services.
109.1 --- a/web-google-services/receipt Tue Oct 02 22:23:34 2018 +0300 109.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 109.3 @@ -1,468 +0,0 @@ 109.4 -# SliTaz package receipt. 109.5 - 109.6 -PACKAGE="web-google-services" 109.7 -VERSION="0.1" 109.8 -CATEGORY="network" 109.9 -SHORT_DESC="Google online services and Google online Office for your desktop." 109.10 -MAINTAINER="hackdorte@sapo.pt" 109.11 -LICENSE="BSD" 109.12 -WEB_SITE="http://people.slitaz.org/~leonardolaporte" 109.13 -REPOLOGY="-" 109.14 - 109.15 -TARBALL="$PACKAGE-$VERSION.tar.gz" 109.16 -STUFF_DIR="lab.slitaz/5.0/pkg/web/google" 109.17 -WGET_URL="${WEB_SITE}/$STUFF_DIR/$TARBALL" 109.18 -TAGS="cloud google" 109.19 - 109.20 -# Rules to configure and make the package. 109.21 -compile_rules() 109.22 -{ 109.23 - 109.24 -# Build Tree. 109.25 - mkdir -p $install/usr/share/applications 109.26 - mkdir -p $install/usr/share/pixmaps 109.27 - 109.28 -# Writing ".desktop" files. 109.29 -# ------------------------- 109.30 -# The icons preserve the 'web-*' name for no future conflicts 109.31 -# with other applications. 109.32 -# 109.33 -# >_ Google Admob 109.34 -# 109.35 -cat > $install/usr/share/applications/web-google-admob.desktop << EOT 109.36 -[Desktop Entry] 109.37 -Type=Application 109.38 -Name=Google Admob 109.39 -Comment=Monetize your apps intelligently. 109.40 -Categories=Network; 109.41 -Icon=web-google-admob 109.42 -TryExec=browser 109.43 -Exec=browser https://www.google.com/admob/ 109.44 - 109.45 -EOT 109.46 -# 109.47 -# >_ Google Adsense 109.48 -# 109.49 -cat > $install/usr/share/applications/web-google-adsense.desktop << EOT 109.50 -[Desktop Entry] 109.51 -Type=Application 109.52 -Name=Google AdSense 109.53 -Comment=Simple way to earn money by placing ads on your website. 109.54 -Categories=Network; 109.55 -Icon=web-google-adsense 109.56 -TryExec=browser 109.57 -Exec=browser https://www.google.com/adsense/ 109.58 - 109.59 -EOT 109.60 -# 109.61 -# >_ Google Adwords 109.62 -# 109.63 -cat > $install/usr/share/applications/web-google-adwords.desktop << EOT 109.64 -[Desktop Entry] 109.65 -Type=Application 109.66 -Name=Google AdWords 109.67 -Comment=Attract more customers, and pay only for results. 109.68 -Categories=Network; 109.69 -Icon=web-google-adwords 109.70 -TryExec=browser 109.71 -Exec=browser https://www.google.com/adwords/ 109.72 - 109.73 -EOT 109.74 -# 109.75 -# >_ Google Apps For Work 109.76 -# 109.77 -cat > $install/usr/share/applications/web-google-apps-work.desktop << EOT 109.78 -[Desktop Entry] 109.79 -Type=Application 109.80 -Name=Google Apps For Work 109.81 -Comment=Custom services for your company. 109.82 -Categories=Network; 109.83 -Icon=web-google-apps-work 109.84 -TryExec=browser 109.85 -Exec=browser https://apps.google.com/ 109.86 - 109.87 -EOT 109.88 -# 109.89 -# >_ Google Business 109.90 -# 109.91 -cat > $install/usr/share/applications/web-google-business.desktop << EOT 109.92 -[Desktop Entry] 109.93 -Type=Application 109.94 -Name=Google Business 109.95 -Comment=Let your company well positioned in Google. 109.96 -Categories=Network; 109.97 -Icon=web-google-business 109.98 -TryExec=browser 109.99 -Exec=browser https://www.google.com/business/ 109.100 - 109.101 -EOT 109.102 -# 109.103 -# >_ Google Developers 109.104 -# 109.105 -cat > $install/usr/share/applications/web-google-developers.desktop << EOT 109.106 -[Desktop Entry] 109.107 -Type=Application 109.108 -Name=Google Developers 109.109 -Comment=Explore APIs, SDKs, Docs, codes and support resources. 109.110 -Categories=Development; 109.111 -Icon=web-google-developers 109.112 -TryExec=browser 109.113 -Exec=browser https://developers.google.com/ 109.114 - 109.115 -EOT 109.116 -# 109.117 -# >_ Google Sites 109.118 -# 109.119 -cat > $install/usr/share/applications/web-google-sites.desktop << EOT 109.120 -[Desktop Entry] 109.121 -Type=Application 109.122 -Name=Google Sites 109.123 -Comment=Create websites and wikis. 109.124 -Categories=Development; 109.125 -Icon=web-google-sites 109.126 -TryExec=browser 109.127 -Exec=browser https://sites.google.com/ 109.128 - 109.129 -EOT 109.130 -# 109.131 -# >_ Google Photos 109.132 -# 109.133 -cat > $install/usr/share/applications/web-google-photos.desktop << EOT 109.134 -[Desktop Entry] 109.135 -Type=Application 109.136 -Name=Google Photos 109.137 -Comment=All your photos are backed up safely. 109.138 -Categories=Graphics; 109.139 -Icon=web-google-photos 109.140 -TryExec=browser 109.141 -Exec=browser https://photos.google.com/ 109.142 - 109.143 -EOT 109.144 -# 109.145 -# >_ Google News 109.146 -# 109.147 -cat > $install/usr/share/applications/web-google-news.desktop << EOT 109.148 -[Desktop Entry] 109.149 -Type=Application 109.150 -Name=Google News 109.151 -Comment=Search the news today. 109.152 -Categories=Network; 109.153 -Icon=web-google-news 109.154 -TryExec=browser 109.155 -Exec=browser https://news.google.com/ 109.156 - 109.157 -EOT 109.158 -# 109.159 -# >_ Google Search 109.160 -# 109.161 -cat > $install/usr/share/applications/web-google-search.desktop << EOT 109.162 -[Desktop Entry] 109.163 -Type=Application 109.164 -Name=Google Search 109.165 -Comment=Search billions of Web pages. 109.166 -Categories=Network; 109.167 -Icon=web-google-search 109.168 -TryExec=browser 109.169 -Exec=browser https://encrypted.google.com/ 109.170 - 109.171 -EOT 109.172 -# 109.173 -# >_ Google Calendar 109.174 -# 109.175 -cat > $install/usr/share/applications/web-google-calendar.desktop << EOT 109.176 -[Desktop Entry] 109.177 -Type=Application 109.178 -Name=Google Calendar 109.179 -Comment=Organize your schedule and share events with your friends. 109.180 -Categories=Office; 109.181 -Icon=web-google-calendar 109.182 -TryExec=browser 109.183 -Exec=browser https://www.google.com/calendar/ 109.184 - 109.185 -EOT 109.186 -# 109.187 -# >_ Google Cloud Print 109.188 -# 109.189 -cat > $install/usr/share/applications/web-google-cloud-print.desktop << EOT 109.190 -[Desktop Entry] 109.191 -Type=Application 109.192 -Name=Google Cloud Print 109.193 -Comment=Print documents and photos on any devices. 109.194 -Categories=Office; 109.195 -Icon=web-google-cloud-print 109.196 -TryExec=browser 109.197 -Exec=browser https://www.google.com/cloudprint/ 109.198 - 109.199 -EOT 109.200 -# 109.201 -# >_ Google Document 109.202 -# 109.203 -cat > $install/usr/share/applications/web-google-document.desktop << EOT 109.204 -[Desktop Entry] 109.205 -Type=Application 109.206 -Name=Google Document 109.207 -Comment=Open, edit and create documents. 109.208 -Categories=Office;WordProcessor; 109.209 -Icon=web-google-documents 109.210 -TryExec=browser 109.211 -Exec=browser https://docs.google.com/document/ 109.212 - 109.213 -EOT 109.214 -# 109.215 -# >_ Google Drawings 109.216 -# 109.217 -cat > $install/usr/share/applications/web-google-drawings.desktop << EOT 109.218 -[Desktop Entry] 109.219 -Type=Application 109.220 -Name=Google Drawings 109.221 -Comment=Create diagrams and flowcharts. 109.222 -Categories=Office; 109.223 -Icon=web-google-drawings 109.224 -TryExec=browser 109.225 -Exec=browser https://docs.google.com/drawings/ 109.226 - 109.227 -EOT 109.228 -# 109.229 -# >_ Google Forms 109.230 -# 109.231 -cat > $install/usr/share/applications/web-google-forms.desktop << EOT 109.232 -[Desktop Entry] 109.233 -Type=Application 109.234 -Name=Google Forms 109.235 -Comment=Open, create and edit forms. 109.236 -Categories=Office; 109.237 -Icon=web-google-forms 109.238 -TryExec=browser 109.239 -Exec=browser https://docs.google.com/forms/ 109.240 - 109.241 -EOT 109.242 -# 109.243 -# >_ Google Keep 109.244 -# 109.245 -cat > $install/usr/share/applications/web-google-keep.desktop << EOT 109.246 -[Desktop Entry] 109.247 -Type=Application 109.248 -Name=Google Keep 109.249 -Comment=Save what you are thinking. 109.250 -Categories=Office; 109.251 -Icon=web-google-keep 109.252 -TryExec=browser 109.253 -Exec=browser https://keep.google.com/ 109.254 - 109.255 -EOT 109.256 -# 109.257 -# >_ Google Presentation 109.258 -# 109.259 -cat > $install/usr/share/applications/web-google-presentation.desktop << EOT 109.260 -[Desktop Entry] 109.261 -Type=Application 109.262 -Name=Google Presentation 109.263 -Comment=Open, create and edit presentations. 109.264 -Categories=Office;Presentation; 109.265 -Icon=web-google-presentation 109.266 -TryExec=browser 109.267 -Exec=browser https://docs.google.com/presentation/ 109.268 - 109.269 -EOT 109.270 -# 109.271 -# >_ Google Sheets 109.272 -# 109.273 -cat > $install/usr/share/applications/web-google-sheets.desktop << EOT 109.274 -[Desktop Entry] 109.275 -Type=Application 109.276 -Name=Google Sheets 109.277 -Comment=Open, edit and create spreadsheets. 109.278 -Categories=Office;Spreadsheet; 109.279 -Icon=web-google-sheets 109.280 -TryExec=browser 109.281 -Exec=browser https://docs.google.com/spreadsheets/ 109.282 - 109.283 -EOT 109.284 -# 109.285 -# >_ Google Academic 109.286 -# 109.287 -cat > $install/usr/share/applications/web-google-academic.desktop << EOT 109.288 -[Desktop Entry] 109.289 -Type=Application 109.290 -Name=Google Academic 109.291 -Comment=Search for scholarly articles. 109.292 -Categories=Education; 109.293 -Icon=web-google-academic 109.294 -TryExec=browser 109.295 -Exec=browser https://scholar.google.com/ 109.296 - 109.297 -EOT 109.298 -# 109.299 -# >_ Google Books 109.300 -# 109.301 -cat > $install/usr/share/applications/web-google-books.desktop << EOT 109.302 -[Desktop Entry] 109.303 -Type=Application 109.304 -Name=Google Books 109.305 -Comment=Search for full texts of books. 109.306 -Categories=Education; 109.307 -Icon=web-google-books 109.308 -TryExec=browser 109.309 -Exec=browser https://books.google.com/ 109.310 - 109.311 -EOT 109.312 -# 109.313 -# >_ Google Blogger 109.314 -# 109.315 -cat > $install/usr/share/applications/web-google-blogger.desktop << EOT 109.316 -[Desktop Entry] 109.317 -Type=Application 109.318 -Name=Google Blogger 109.319 -Comment=Share your life online in a blog. Is fast, easy and free! 109.320 -Categories=Network; 109.321 -Icon=web-google-blogger 109.322 -TryExec=browser 109.323 -Exec=browser https://www.blogger.com/start 109.324 - 109.325 -EOT 109.326 -# 109.327 -# >_ Google Groups 109.328 -# 109.329 -cat > $install/usr/share/applications/web-google-groups.desktop << EOT 109.330 -[Desktop Entry] 109.331 -Type=Application 109.332 -Name=Google Groups 109.333 -Comment=Create email lists and discussion groups. 109.334 -Categories=Network; 109.335 -Icon=web-google-groups 109.336 -TryExec=browser 109.337 -Exec=browser https://groups.google.com/ 109.338 - 109.339 -EOT 109.340 -# 109.341 -# >_ Google Plus 109.342 -# 109.343 -cat > $install/usr/share/applications/web-google-plus.desktop << EOT 109.344 -[Desktop Entry] 109.345 -Type=Application 109.346 -Name=Google Plus 109.347 -Comment=Share your moments to the world. 109.348 -Categories=Network; 109.349 -Icon=web-google-plus 109.350 -TryExec=browser 109.351 -Exec=browser https://plus.google.com/ 109.352 - 109.353 -EOT 109.354 -# 109.355 -# >_ Google Maps 109.356 -# 109.357 -cat > $install/usr/share/applications/web-google-maps.desktop << EOT 109.358 -[Desktop Entry] 109.359 -Type=Application 109.360 -Name=Google Maps 109.361 -Comment=Desktop web mapping service developed by Google. 109.362 -Categories=Graphics;Network; 109.363 -Icon=web-google-maps 109.364 -TryExec=browser 109.365 -Exec=browser https://maps.google.com/ 109.366 - 109.367 -EOT 109.368 -# 109.369 -# >_ Google Panoramio 109.370 -# 109.371 -cat > $install/usr/share/applications/web-google-panoramio.desktop << EOT 109.372 -[Desktop Entry] 109.373 -Type=Application 109.374 -Name=Google Panoramio 109.375 -Comment=Discover the world through photos. 109.376 -Categories=Graphics;Network; 109.377 -Icon=web-google-panoramio 109.378 -TryExec=browser 109.379 -Exec=browser https://www.panoramio.com 109.380 - 109.381 -EOT 109.382 -# 109.383 -# >_ Google Trends 109.384 -# 109.385 -cat > $install/usr/share/applications/web-google-trends.desktop << EOT 109.386 -[Desktop Entry] 109.387 -Type=Application 109.388 -Name=Google Trends 109.389 -Comment=Google Trends is a public web facility of Google Inc. 109.390 -Categories=Network; 109.391 -Icon=web-google-trends 109.392 -TryExec=browser 109.393 -Exec=browser https://www.google.com/trends/ 109.394 - 109.395 -EOT 109.396 -# 109.397 -# >_ Google Youtube Desktop 109.398 -# 109.399 -cat > $install/usr/share/applications/web-google-youtube.desktop << EOT 109.400 -[Desktop Entry] 109.401 -Type=Application 109.402 -Name=YouTube Desktop 109.403 -Comment=YouTube allow discover and share online videos. 109.404 -Categories=AudioVideo;Audio;Video; 109.405 -Icon=web-google-youtube 109.406 -TryExec=browser 109.407 -Exec=browser "https://www.youtube.com/?app=desktop" 109.408 - 109.409 -EOT 109.410 -# 109.411 -# >_ Google Youtube TV 109.412 -# 109.413 -cat > $install/usr/share/applications/web-google-youtube-tv.desktop << EOT 109.414 -[Desktop Entry] 109.415 -Type=Application 109.416 -Name=YouTube TV 109.417 -Comment=Youtube TV (Best viewed with Firefox). 109.418 -Categories=AudioVideo;Audio;Video;Player;TV; 109.419 -Icon=web-google-youtube 109.420 -TryExec=browser 109.421 -Exec=browser "https://www.youtube.com/?app=tv" 109.422 - 109.423 -EOT 109.424 -# 109.425 -# >_ Google Bookmarks 109.426 -# 109.427 -cat > $install/usr/share/applications/web-google-bookmarks.desktop << EOT 109.428 -[Desktop Entry] 109.429 -Type=Application 109.430 -Name=Google Bookmarks 109.431 -Comment=Access your bookmarks on the web. 109.432 -Categories=Network;Utility; 109.433 -Icon=web-google-bookmarks 109.434 -TryExec=browser 109.435 -Exec=browser https://www.google.com.br/bookmarks/ 109.436 - 109.437 -EOT 109.438 -# 109.439 -# >_ Google Translate 109.440 -# 109.441 -cat > $install/usr/share/applications/web-google-translate.desktop << EOT 109.442 -[Desktop Entry] 109.443 -Type=Application 109.444 -Name=Google Translate 109.445 -Comment=Translate texts, web pages and files in 50 languages. 109.446 -Categories=Utility; 109.447 -Icon=web-google-translate 109.448 -TryExec=browser 109.449 -Exec=browser https://translate.google.com/ 109.450 - 109.451 -EOT 109.452 - 109.453 -cp -a $src/icons/* $install/usr/share/pixmaps 109.454 - 109.455 -} 109.456 - 109.457 -# Rules to gen a SliTaz package suitable for Tazpkg. 109.458 -genpkg_rules() 109.459 -{ 109.460 - cp -a $install/* $fs 109.461 -} 109.462 - 109.463 -post_install() 109.464 -{ 109.465 - [ "$1" ] && notify-send -u normal -t 5000 -i application-x-tazpkg "Tazpkg - Install" "The $PACKAGE is installed." 109.466 -} 109.467 - 109.468 -post_remove() 109.469 -{ 109.470 - [ "$1" ] && notify-send -u normal -t 5000 -i application-x-tazpkg "Tazpkg - Remove" "The $PACKAGE was removed." 109.471 -}
110.1 --- a/web-picozu/description.txt Tue Oct 02 22:23:34 2018 +0300 110.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 110.3 @@ -1,11 +0,0 @@ 110.4 -Picozu Web 110.5 - 110.6 -Picozu is an online drawing and photo retouching application 110.7 -based on HTML5 and CSS3. The application provides you with an 110.8 -easy yet complex way to edit your photos, draw using various 110.9 -brushes, filters, layers and explore various editing tools 110.10 -such as color fill, magic eraser, freehand selection, cropping, 110.11 -selections and more. 110.12 - 110.13 -Picozu 110.14 -https://www.picozu.com/
111.1 --- a/web-picozu/receipt Tue Oct 02 22:23:34 2018 +0300 111.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 111.3 @@ -1,55 +0,0 @@ 111.4 -# SliTaz package receipt. 111.5 - 111.6 -PACKAGE="web-picozu" 111.7 -VERSION="0.1" 111.8 -CATEGORY="network" 111.9 -SHORT_DESC="Picozu is a online HTML5 image editor." 111.10 -MAINTAINER="hackdorte@sapo.pt" 111.11 -LICENSE="Freeware" 111.12 -WEB_SITE="http://people.slitaz.org/~leonardolaporte" 111.13 -REPOLOGY="-" 111.14 - 111.15 -SOURCE="picozu" 111.16 -TARBALL="$SOURCE-$VERSION.tar.gz" 111.17 -STUFF_DIR="lab.slitaz/5.0/pkg/web/image/editor" 111.18 -WGET_URL="${WEB_SITE}/$STUFF_DIR/${TARBALL}" 111.19 -TAGS="cloud editor image picozu" 111.20 - 111.21 -DEPENDS="tazweb" 111.22 - 111.23 -# Rules to configure and make the package. 111.24 -compile_rules() 111.25 -{ 111.26 - 111.27 -# Build Tree. 111.28 - mkdir -p $install/usr/share/applications 111.29 - mkdir -p $install/usr/share/pixmaps 111.30 - 111.31 -# Writing ".desktop" files. 111.32 -# ------------------------- 111.33 -# The icons preserve the 'web-*' name for no future conflicts 111.34 -# with other applications. 111.35 -# 111.36 -# >_ Picozu Desktop 111.37 -# 111.38 -cat > $install/usr/share/applications/web-picozu.desktop << EOT 111.39 -[Desktop Entry] 111.40 -Type=Application 111.41 -Name=Picozu Image Editor (WebApp) 111.42 -Comment=Picozu the HTML5 online image editor. 111.43 -Categories=Network; 111.44 -Icon=web-picozu 111.45 -Exec=tazweb --notoolbar "https://www.picozu.com/editor" 111.46 - 111.47 -EOT 111.48 -# 111.49 -# >_ Done 111.50 -# 111.51 - cp -a $src/icon/* $install/usr/share/pixmaps 111.52 -} 111.53 - 111.54 -# Rules to gen a SliTaz package suitable for Tazpkg. 111.55 -genpkg_rules() 111.56 -{ 111.57 - cp -a $install/* $fs 111.58 -}
112.1 --- a/web-skype/description.txt Tue Oct 02 22:23:34 2018 +0300 112.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 112.3 @@ -1,8 +0,0 @@ 112.4 -Skype Web (BETA) 112.5 - 112.6 -Skype for Web (Beta) makes it easier to connect with 112.7 -family and friends around the world directly from your 112.8 -Skype browser. 112.9 - 112.10 -Skype 112.11 -https://skype.com/
113.1 --- a/web-skype/receipt Tue Oct 02 22:23:34 2018 +0300 113.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 113.3 @@ -1,54 +0,0 @@ 113.4 -# SliTaz package receipt. 113.5 - 113.6 -PACKAGE="web-skype" 113.7 -VERSION="0.1" 113.8 -CATEGORY="network" 113.9 -SHORT_DESC="Makes it easier to connect with family and friends." 113.10 -MAINTAINER="hackdorte@sapo.pt" 113.11 -LICENSE="Microsoft" 113.12 -WEB_SITE="http://people.slitaz.org/~leonardolaporte" 113.13 -REPOLOGY="-" 113.14 - 113.15 -TARBALL="$PACKAGE-$VERSION.tar.gz" 113.16 -STUFF_DIR="lab.slitaz/5.0/pkg/web/messengers" 113.17 -WGET_URL="${WEB_SITE}/$STUFF_DIR/${TARBALL}" 113.18 -TAGS="cloud skype" 113.19 - 113.20 -DEPENDS="firefox-official" 113.21 - 113.22 -# Rules to configure and make the package. 113.23 -compile_rules() 113.24 -{ 113.25 - 113.26 -# Build Tree. 113.27 - mkdir -p $install/usr/share/applications 113.28 - mkdir -p $install/usr/share/pixmaps 113.29 - 113.30 -# Writing ".desktop" files. 113.31 -# ------------------------- 113.32 -# The icons preserve the 'web-*' name for no future conflicts 113.33 -# with other applications. 113.34 -# 113.35 -# >_ Skype Desktop 113.36 -# 113.37 -cat > $install/usr/share/applications/web-skype.desktop << EOT 113.38 -[Desktop Entry] 113.39 -Type=Application 113.40 -Name=Skype Web (Beta) 113.41 -Comment=Makes it easier to connect with family and friends. (Better with Firefox) 113.42 -Categories=Network; 113.43 -Icon=web-skype 113.44 -Exec=firefox-official "https://web.skype.com/" 113.45 - 113.46 -EOT 113.47 -# 113.48 -# >_ Done 113.49 -# 113.50 - cp -a $src/icon/* $install/usr/share/pixmaps 113.51 -} 113.52 - 113.53 -# Rules to gen a SliTaz package suitable for Tazpkg. 113.54 -genpkg_rules() 113.55 -{ 113.56 - cp -a $install/* $fs 113.57 -}
114.1 --- a/web-telegram/description.txt Tue Oct 02 22:23:34 2018 +0300 114.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 114.3 @@ -1,8 +0,0 @@ 114.4 -Telegram Web 114.5 - 114.6 -Telegram is a cloud-based mobile and desktop messaging app 114.7 -with a focus on security and speed. 114.8 - 114.9 -Telegram 114.10 -https://telegram.org/ 114.11 -
115.1 --- a/web-telegram/receipt Tue Oct 02 22:23:34 2018 +0300 115.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 115.3 @@ -1,54 +0,0 @@ 115.4 -# SliTaz package receipt. 115.5 - 115.6 -PACKAGE="web-telegram" 115.7 -VERSION="0.1" 115.8 -CATEGORY="network" 115.9 -SHORT_DESC="Telegram web for all platforms." 115.10 -MAINTAINER="hackdorte@sapo.pt" 115.11 -LICENSE="GPLv3" 115.12 -WEB_SITE="http://people.slitaz.org/~leonardolaporte" 115.13 -REPOLOGY="-" 115.14 - 115.15 -TARBALL="$PACKAGE-$VERSION.tar.gz" 115.16 -STUFF_DIR="lab.slitaz/5.0/pkg/web/messengers" 115.17 -WGET_URL="${WEB_SITE}/$STUFF_DIR/${TARBALL}" 115.18 -TAGS="cloud telegram" 115.19 - 115.20 -BUILD_DEPENDS="wget" 115.21 - 115.22 -# Rules to configure and make the package. 115.23 -compile_rules() 115.24 -{ 115.25 - 115.26 -# Build Tree. 115.27 - mkdir -p $install/usr/share/applications 115.28 - mkdir -p $install/usr/share/pixmaps 115.29 - 115.30 -# Writing ".desktop" files. 115.31 -# ------------------------- 115.32 -# The icons preserve the 'web-*' name for no future conflicts 115.33 -# with other applications. 115.34 -# 115.35 -# >_ Telegram Desktop 115.36 -# 115.37 -cat > $install/usr/share/applications/web-telegram.desktop << EOT 115.38 -[Desktop Entry] 115.39 -Type=Application 115.40 -Name=Telegram Web 115.41 -Comment=Telegram web for all platforms. 115.42 -Categories=Network; 115.43 -Icon=web-telegram 115.44 -Exec=browser "https://web.telegram.org/" 115.45 - 115.46 -EOT 115.47 -# 115.48 -# >_ Done 115.49 -# 115.50 - cp -a $src/icon/* $install/usr/share/pixmaps 115.51 -} 115.52 - 115.53 -# Rules to gen a SliTaz package suitable for Tazpkg. 115.54 -genpkg_rules() 115.55 -{ 115.56 - cp -a $install/* $fs 115.57 -}
116.1 --- a/web-tweetdeck/description.txt Tue Oct 02 22:23:34 2018 +0300 116.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 116.3 @@ -1,17 +0,0 @@ 116.4 -TweetDeck 116.5 - 116.6 -The most powerful Twitter tool for real-time tracking, organizing and engagement. 116.7 - 116.8 -Create a custom Twitter experience. 116.9 - 116.10 -Organize and build custom timelines, keep track of lists, searches, activity and 116.11 -more—all in one interface. 116.12 - 116.13 -Find exactly what you're looking for. 116.14 - 116.15 -Tweet together. 116.16 - 116.17 -Share an account with your team, without sharing your password. Maintain full control 116.18 -over permissions at all times. 116.19 - 116.20 -https://about.twitter.com/pt/products/tweetdeck
117.1 --- a/web-tweetdeck/receipt Tue Oct 02 22:23:34 2018 +0300 117.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 117.3 @@ -1,45 +0,0 @@ 117.4 -# SliTaz package receipt. 117.5 - 117.6 -PACKAGE="web-tweetdeck" 117.7 -VERSION="0.1a" 117.8 -CATEGORY="network" 117.9 -SHORT_DESC="A social media dashboard application for management of Twitter accounts." 117.10 -MAINTAINER="hackdorte@sapo.pt" 117.11 -LICENSE="GPLv3" 117.12 -WEB_SITE="http://tweetdeck.com/" 117.13 -REPOLOGY="-" 117.14 - 117.15 -TAGS="social twitter tweetdeck" 117.16 - 117.17 -DEPENDS="tazweb" 117.18 - 117.19 -# Rules to configure and make the package. 117.20 -compile_rules() 117.21 -{ 117.22 - 117.23 - mkdir -p $install/usr/share/applications 117.24 - mkdir -p $install/usr/bin 117.25 - mkdir -p $install/usr/share/pixmaps 117.26 - 117.27 -} 117.28 - 117.29 -# Rules to gen a SliTaz package suitable for Tazpkg. 117.30 -genpkg_rules() 117.31 -{ 117.32 - 117.33 - cp -a $stuff/desktop.txt \ 117.34 - $install/usr/share/applications/web-tweetdeck.desktop 117.35 - 117.36 - cp -a $stuff/web-tweetdeck.txt \ 117.37 - $install/usr/bin/web-tweetdeck 117.38 - 117.39 - cp -a $stuff/image.src \ 117.40 - $install/usr/share/pixmaps/web-tweetdeck.png 117.41 - 117.42 - cp -a $install/* $fs 117.43 -} 117.44 - 117.45 -post_install() 117.46 -{ 117.47 - chmod +x $1/usr/bin/web-tweetdeck 117.48 -}
118.1 --- a/web-tweetdeck/stuff/desktop.txt Tue Oct 02 22:23:34 2018 +0300 118.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 118.3 @@ -1,7 +0,0 @@ 118.4 -[Desktop Entry] 118.5 -Type=Application 118.6 -Name=TweetDeck Web 118.7 -Comment=A dashboard application for management of Twitter accounts. 118.8 -Categories=Network; 118.9 -Icon=web-tweetdeck 118.10 -Exec=web-tweetdeck
119.1 Binary file web-tweetdeck/stuff/image.src has changed
120.1 --- a/web-tweetdeck/stuff/web-tweetdeck.txt Tue Oct 02 22:23:34 2018 +0300 120.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 120.3 @@ -1,5 +0,0 @@ 120.4 -#!/bin/sh 120.5 - 120.6 -tazweb --notoolbar \ 120.7 - --useragent "Mozilla/5.0 (X11; SliTaz; Linux; rv:47.0) Gecko/20100101 Firefox/47" \ 120.8 - "https://tweetdeck.twitter.com/" "@1"
121.1 --- a/web-whatsapp/description.txt Tue Oct 02 22:23:34 2018 +0300 121.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 121.3 @@ -1,12 +0,0 @@ 121.4 -WhatsApp Web 121.5 - 121.6 -Send and receive WhatsApp messages right from your computer. 121.7 -We recommend using WhatsApp Web with one of the following 121.8 -browsers: Google Chrome or Mozilla Firefox. 121.9 - 121.10 -WhatsApp Messenger :: cross-platform mobile messaging app for 121.11 -iPhone, BlackBerry, Android, Windows Phone and Nokia. Send 121.12 -text, video, images, audio for free. 121.13 - 121.14 -WhatsApp 121.15 -https://www.whatsapp.com/
122.1 --- a/web-whatsapp/receipt Tue Oct 02 22:23:34 2018 +0300 122.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 122.3 @@ -1,54 +0,0 @@ 122.4 -# SliTaz package receipt. 122.5 - 122.6 -PACKAGE="web-whatsapp" 122.7 -VERSION="0.1" 122.8 -CATEGORY="network" 122.9 -SHORT_DESC="Send and receive WhatsApp messages right from your computer." 122.10 -MAINTAINER="hackdorte@sapo.pt" 122.11 -LICENSE="WhatsApp-Inc" 122.12 -WEB_SITE="http://people.slitaz.org/~leonardolaporte" 122.13 -REPOLOGY="-" 122.14 - 122.15 -TARBALL="$PACKAGE-$VERSION.tar.gz" 122.16 -STUFF_DIR="lab.slitaz/5.0/pkg/web/messengers" 122.17 -WGET_URL="${WEB_SITE}/$STUFF_DIR/${TARBALL}" 122.18 -TAGS="cloud whatsapp" 122.19 - 122.20 -DEPENDS="firefox-official" 122.21 - 122.22 -# Rules to configure and make the package. 122.23 -compile_rules() 122.24 -{ 122.25 - 122.26 -# Build Tree. 122.27 - mkdir -p $install/usr/share/applications 122.28 - mkdir -p $install/usr/share/pixmaps 122.29 - 122.30 -# Writing ".desktop" files. 122.31 -# ------------------------- 122.32 -# The icons preserve the 'web-*' name for no future conflicts 122.33 -# with other applications. 122.34 -# 122.35 -# >_ WhatsApp Desktop 122.36 -# 122.37 -cat > $install/usr/share/applications/web-whatsapp.desktop << EOT 122.38 -[Desktop Entry] 122.39 -Type=Application 122.40 -Name=WhatsApp Web 122.41 -Comment=Send and receive WhatsApp messages right from your computer. 122.42 -Categories=Network; 122.43 -Icon=web-whatsapp 122.44 -Exec=firefox-official "https://web.whatsapp.com/" 122.45 - 122.46 -EOT 122.47 -# 122.48 -# >_ Done 122.49 -# 122.50 - cp -a $src/icon/* $install/usr/share/pixmaps 122.51 -} 122.52 - 122.53 -# Rules to gen a SliTaz package suitable for Tazpkg. 122.54 -genpkg_rules() 122.55 -{ 122.56 - cp -a $install/* $fs 122.57 -}