Changeset 153 for diffs/psi_0.16.diff


Ignore:
Timestamp:
Feb 21, 2014, 2:39:42 PM (11 years ago)
Author:
Silvan Scherrer
Message:

PSI: updated diff to latest psi 0.16 dev snapshot

File:
1 edited

Legend:

Unmodified
Added
Removed
  • diffs/psi_0.16.diff

    r152 r153  
    607607diff -Naur -x Makefile -x '*.dll' -x 'conf*.pri' -x '*.zip' -x '*.exe' -x '*.map' -x '*.obj' -x '*.moc' -x '*.rcc' -x iris.prl -x irisnet.prl -x '*.sym' -x .ui -x '*.bak' -x '*.lib' -x '*.rsp' -x 'moc_*.cpp' -x Info.plist -x conf.log vendor/current/os2/Readme.OS2 trunk/os2/Readme.OS2
    608608--- vendor/current/os2/Readme.OS2       1970-01-01 01:00:00.000000000 +0100
    609 +++ trunk/os2/Readme.OS2        2013-12-06 15:50:44.000000000 +0100
    610 @@ -0,0 +1,225 @@
     609+++ trunk/os2/Readme.OS2        2014-02-18 12:25:44.000000000 +0100
     610@@ -0,0 +1,228 @@
    611611+Psi 0.16-dev for OS/2 and eComStation
    612612+-------------------------------------
     
    814814+9. HISTORY
    815815+==========
     816+
     817+  2014-02-18
     818+    * updated to latest 0.16-dev sources
    816819+
    817820+  2013-12-06
     
    900903diff -Naur -x Makefile -x '*.dll' -x 'conf*.pri' -x '*.zip' -x '*.exe' -x '*.map' -x '*.obj' -x '*.moc' -x '*.rcc' -x iris.prl -x irisnet.prl -x '*.sym' -x .ui -x '*.bak' -x '*.lib' -x '*.rsp' -x 'moc_*.cpp' -x Info.plist -x conf.log vendor/current/src/config.h trunk/src/config.h
    901904--- vendor/current/src/config.h 1970-01-01 01:00:00.000000000 +0100
    902 +++ trunk/src/config.h  2013-12-06 16:46:00.000000000 +0100
     905+++ trunk/src/config.h  2014-02-18 19:33:06.000000000 +0100
    903906@@ -0,0 +1,3 @@
    904907+#define PSI_LIBDIR "/usr/local/lib/psi"
    905908+#define PSI_DATADIR "/usr/local/share/psi"
    906 +#define PSI_VERSION "0.16-dev-20131206"
     909+#define PSI_VERSION "0.16-dev-20140218"
    907910diff -Naur -x Makefile -x '*.dll' -x 'conf*.pri' -x '*.zip' -x '*.exe' -x '*.map' -x '*.obj' -x '*.moc' -x '*.rcc' -x iris.prl -x irisnet.prl -x '*.sym' -x .ui -x '*.bak' -x '*.lib' -x '*.rsp' -x 'moc_*.cpp' -x Info.plist -x conf.log vendor/current/src/homedirmigration.cpp trunk/src/homedirmigration.cpp
    908911--- vendor/current/src/homedirmigration.cpp     2013-08-22 16:52:32.000000000 +0200
     
    11891192 #if defined(Q_OS_WIN)
    11901193diff -Naur -x Makefile -x '*.dll' -x 'conf*.pri' -x '*.zip' -x '*.exe' -x '*.map' -x '*.obj' -x '*.moc' -x '*.rcc' -x iris.prl -x irisnet.prl -x '*.sym' -x .ui -x '*.bak' -x '*.lib' -x '*.rsp' -x 'moc_*.cpp' -x Info.plist -x conf.log vendor/current/src/textutil.cpp trunk/src/textutil.cpp
    1191 --- vendor/current/src/textutil.cpp     2013-12-03 18:34:22.000000000 +0100
    1192 +++ trunk/src/textutil.cpp      2013-12-05 14:18:58.000000000 +0100
     1194--- vendor/current/src/textutil.cpp     2014-02-18 11:42:48.000000000 +0100
     1195+++ trunk/src/textutil.cpp      2014-02-18 12:22:34.000000000 +0100
    11931196@@ -87,7 +87,7 @@
    11941197        int col = 0;
     
    12021205diff -Naur -x Makefile -x '*.dll' -x 'conf*.pri' -x '*.zip' -x '*.exe' -x '*.map' -x '*.obj' -x '*.moc' -x '*.rcc' -x iris.prl -x irisnet.prl -x '*.sym' -x .ui -x '*.bak' -x '*.lib' -x '*.rsp' -x 'moc_*.cpp' -x Info.plist -x conf.log vendor/current/src/webview.cpp trunk/src/webview.cpp
    12031206--- vendor/current/src/webview.cpp      2013-12-03 18:34:22.000000000 +0100
    1204 +++ trunk/src/webview.cpp       2013-12-06 17:20:26.000000000 +0100
    1205 @@ -166,6 +166,22 @@
     1207+++ trunk/src/webview.cpp       2014-02-19 16:26:34.000000000 +0100
     1208@@ -141,8 +141,11 @@
     1209 
     1210        QDrag *drag = new QDrag(this);
     1211        QMimeData *mimeData = new QMimeData;
     1212-
     1213+#ifdef __OS2__ // remove with qt 4.8 or better
     1214+       QString html = selectedHtml();
     1215+#else
     1216        QString html = TextUtil::img2title(selectedHtml());
     1217+#endif
     1218        mimeData->setHtml(html);
     1219        mimeData->setText(TextUtil::rich2plain(html));
     1220 
     1221@@ -153,7 +156,11 @@
     1222 void WebView::convertClipboardHtmlImages(QClipboard::Mode mode)
     1223 {
     1224        QClipboard *cb = QApplication::clipboard();
     1225+#ifdef __OS2__ // remove with qt 4.8 or better
     1226+       QString html = TextUtil::img2title(cb->mimeData(mode)->html());
     1227+#else
     1228        QString html = TextUtil::img2title(selectedHtml());
     1229+#endif
     1230        QMimeData *data = new QMimeData;
     1231        data->setHtml(html);
     1232        data->setText(TextUtil::rich2plain(html, false));
     1233@@ -166,6 +173,22 @@
    12061234        page()->mainFrame()->evaluateJavaScript(scriptSource);
    12071235 }
Note: See TracChangeset for help on using the changeset viewer.