Hello community,

here is the log from the commit of package telegram-desktop for 
openSUSE:Factory checked in at 2018-11-19 23:31:43
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/telegram-desktop (Old)
 and      /work/SRC/openSUSE:Factory/.telegram-desktop.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "telegram-desktop"

Mon Nov 19 23:31:43 2018 rev:3 rq:649928 version:1.4.7

Changes:
--------
--- /work/SRC/openSUSE:Factory/telegram-desktop/telegram-desktop.changes        
2018-10-15 09:41:00.107508199 +0200
+++ /work/SRC/openSUSE:Factory/.telegram-desktop.new/telegram-desktop.changes   
2018-11-19 23:32:13.115175017 +0100
@@ -1,0 +2,14 @@
+Sat Nov 17 17:22:35 UTC 2018 - Xu Zhao <[email protected]>
+
+- Update to 1.4.7
+  * Crash fix.
+  * Bug fixes and other minor improvements
+  * Listen to voice and video messages in 2X mode if you're in a hurry.
+  * Find video messages in the shared voice messages section.
+  * Add a comment when you share posts from channels.
+  * View all photos and videos in Twitter and Instagram link previews.
+  * Interface scaling for large screens, up to 300% (up to 150% for macOS 
retina screens).
+  * Updated emoji.
+- Add api_id and api_hash to build
+
+-------------------------------------------------------------------

Old:
----
  v1.4.2.tar.gz

New:
----
  v1.4.7.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ telegram-desktop.spec ++++++
--- /var/tmp/diff_new_pack.RUNujg/_old  2018-11-19 23:32:16.839170721 +0100
+++ /var/tmp/diff_new_pack.RUNujg/_new  2018-11-19 23:32:16.839170721 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           telegram-desktop
-Version:        1.4.2
+Version:        1.4.7
 Release:        0
 Summary:        Messaging application with a focus on speed and security
 License:        GPL-3.0-only
@@ -190,6 +190,8 @@
 cd %{_builddir}/tdesktop/Telegram/gyp
 # patch qt.gypi to change libxkbcommon path
 %{_builddir}/Libraries/gyp/gyp \
+    -Dapi_id=340630 \
+    -Dapi_hash=98a22f733eac40f1bd187a30d19271de \
     -Dlinux_lib_ssl=-lssl \
     -Dlinux_lib_crypto=-lcrypto \
     -Dlinux_lib_icu="-licuuc -licutu -licui18n" \



++++++ gyp-master.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/infra/config/cq.cfg new/infra/config/cq.cfg
--- old/infra/config/cq.cfg     2018-05-25 07:03:58.000000000 +0200
+++ new/infra/config/cq.cfg     1970-01-01 01:00:00.000000000 +0100
@@ -1,25 +0,0 @@
-# Commit Queue configuration file. The documentation of the format can be found
-# at http://luci-config.appspot.com/schemas/projects/refs:cq.cfg.
-
-version: 1
-cq_name: "gyp"
-cq_status_url: "https://chromium-cq-status.appspot.com";
-git_repo_url: "https://chromium.googlesource.com/external/gyp.git";
-
-gerrit {}
-
-verifiers {
-  gerrit_cq_ability {
-    committer_list: "project-gyp-committers"
-    dry_run_access_list: "project-gyp-tryjob-access"
-  }
-
-  try_job {
-    buckets {
-      name: "luci.gyp.try"
-      builders { name: "linux" }
-      builders { name: "mac" }
-      builders { name: "win" }
-    }
-  }
-}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pylib/gyp/generator/xcode.py 
new/pylib/gyp/generator/xcode.py
--- old/pylib/gyp/generator/xcode.py    2018-05-25 07:03:58.000000000 +0200
+++ new/pylib/gyp/generator/xcode.py    2018-11-17 17:33:15.000000000 +0100
@@ -710,7 +710,7 @@
     type = spec['type']
     is_xctest = int(spec.get('mac_xctest_bundle', 0))
     is_xcuitest = int(spec.get('mac_xcuitest_bundle', 0))
-    is_bundle = int(spec.get('mac_bundle', 0)) or is_xctest
+    is_bundle = int(spec.get('mac_bundle', 0)) or is_xctest or is_xcuitest
     is_app_extension = int(spec.get('ios_app_extension', 0))
     is_watchkit_extension = int(spec.get('ios_watchkit_extension', 0))
     is_watch_app = int(spec.get('ios_watch_app', 0))
@@ -1094,17 +1094,6 @@
         # work if there ever was a concrete output that had an input-dependent
         # variable anywhere other than in the leaf position.
 
-        # Don't declare any inputPaths or outputPaths.  If they're present,
-        # Xcode will provide a slight optimization by only running the script
-        # phase if any output is missing or outdated relative to any input.
-        # Unfortunately, it will also assume that all outputs are touched by
-        # the script, and if the outputs serve as files in a compilation
-        # phase, they will be unconditionally rebuilt.  Since make might not
-        # rebuild everything that could be declared here as an output, this
-        # extra compilation activity is unnecessary.  With inputPaths and
-        # outputPaths not supplied, make will always be called, but it knows
-        # enough to not do anything when everything is up-to-date.
-
         # To help speed things up, pass -j COUNT to make so it does some work
         # in parallel.  Don't use ncpus because Xcode will build ncpus targets
         # in parallel and if each target happens to have a rules step, there
@@ -1120,7 +1109,9 @@
 exit 1
 """ % makefile_name
         ssbp = gyp.xcodeproj_file.PBXShellScriptBuildPhase({
+              'inputPaths': rule['rule_sources'],
               'name': 'Rule "' + rule['rule_name'] + '"',
+              'outputPaths': concrete_outputs_all,
               'shellScript': script,
               'showEnvVarsInLog': 0,
             })

++++++ libtgvoip.zip ++++++
Binary files /var/tmp/diff_new_pack.RUNujg/_old and 
/var/tmp/diff_new_pack.RUNujg/_new differ


++++++ v1.4.2.tar.gz -> v1.4.7.tar.gz ++++++
/work/SRC/openSUSE:Factory/telegram-desktop/v1.4.2.tar.gz 
/work/SRC/openSUSE:Factory/.telegram-desktop.new/v1.4.7.tar.gz differ: char 13, 
line 1




Reply via email to