Projects
Multimedia
avidemux3
avidemux-package_version.patch
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File avidemux-package_version.patch of Package avidemux3 (Revision 30)
Currently displaying revision
30
,
Show latest
diff -uNr avidemux_2.6.15/avidemux/qt4/ADM_userInterfaces/ADM_gui/Q_gui2_menu.cpp avidemux_2.6.15.new/avidemux/qt4/ADM_userInterfaces/ADM_gui/Q_gui2_menu.cpp --- avidemux_2.6.15/avidemux/qt4/ADM_userInterfaces/ADM_gui/Q_gui2_menu.cpp 2016-11-21 22:37:49.257218473 +0100 +++ avidemux_2.6.15.new/avidemux/qt4/ADM_userInterfaces/ADM_gui/Q_gui2_menu.cpp 2016-11-21 22:36:25.446870560 +0100 @@ -143,7 +143,7 @@ QString referenceFile = QCoreApplication::applicationDirPath() + "/help/" + ((FileAction*)sender())->filePath(); #else QString referenceFile = ADM_getInstallRelativePath( - "share", "avidemux6/help", ((FileAction*)sender())->filePath().toUtf8().constData()); + "share", "avidemux3/help", ((FileAction*)sender())->filePath().toUtf8().constData()); #endif QDesktopServices::openUrl(QUrl("file:///" + referenceFile, QUrl::TolerantMode)); diff -uNr avidemux_2.6.15/avidemux_core/ADM_core/src/ADM_folder_linux.cpp avidemux_2.6.15.new/avidemux_core/ADM_core/src/ADM_folder_linux.cpp --- avidemux_2.6.15/avidemux_core/ADM_core/src/ADM_folder_linux.cpp 2016-11-21 22:37:47.297257101 +0100 +++ avidemux_2.6.15.new/avidemux_core/ADM_core/src/ADM_folder_linux.cpp 2016-11-21 22:36:23.558907783 +0100 @@ -103,14 +103,14 @@ if(isPortable) { std::string i18n=pluginDir; - i18n+=std::string("/../../share/avidemux6/")+flavor+std::string("/i18n/"); + i18n+=std::string("/../../share/avidemux3/")+flavor+std::string("/i18n/"); ADM_i18nDir=canonize(i18n); ADM_info("Relative to install i18n mode : <%s>\n",ADM_i18nDir.c_str()); // 181n }else { std::string partialPath=flavor+std::string("/i18n/"); - char *ppath=ADM_getInstallRelativePath("share","avidemux6",partialPath.c_str()); + char *ppath=ADM_getInstallRelativePath("share","avidemux3",partialPath.c_str()); ADM_i18nDir=std::string(ppath); delete [] ppath; ppath=NULL; @@ -143,7 +143,7 @@ strcpy(ADM_basedir, homeEnv); AddSeparator(ADM_basedir); - const char *ADM_DIR_NAME = ".avidemux6"; + const char *ADM_DIR_NAME = ".avidemux3"; strcat(ADM_basedir, ADM_DIR_NAME); strcat(ADM_basedir, ADM_SEPARATOR); diff -uNr avidemux_2.6.15/avidemux_core/ADM_core/src/ADM_folder_mac.cpp avidemux_2.6.15.new/avidemux_core/ADM_core/src/ADM_folder_mac.cpp --- avidemux_2.6.15/avidemux_core/ADM_core/src/ADM_folder_mac.cpp 2016-11-21 22:37:47.301257022 +0100 +++ avidemux_2.6.15.new/avidemux_core/ADM_core/src/ADM_folder_mac.cpp 2016-11-21 22:36:23.562907703 +0100 @@ -124,7 +124,7 @@ strcpy(ADM_basedir, homeEnv); AddSeparator(ADM_basedir); - const char *ADM_DIR_NAME = ".avidemux6"; + const char *ADM_DIR_NAME = ".avidemux3"; strcat(ADM_basedir, ADM_DIR_NAME); strcat(ADM_basedir, ADM_SEPARATOR); @@ -145,7 +145,7 @@ { std::string partialPath=flavor+std::string("/i18n/"); - char *ppath=ADM_getInstallRelativePath("../share","avidemux6",partialPath.c_str()); + char *ppath=ADM_getInstallRelativePath("../share","avidemux3",partialPath.c_str()); std::string r=std::string(ppath); delete [] ppath; ppath=NULL; diff -uNr avidemux_2.6.15/avidemux_plugins/ADM_scriptEngines/tinyPy/src/PythonEngine.cpp avidemux_2.6.15.new/avidemux_plugins/ADM_scriptEngines/tinyPy/src/PythonEngine.cpp --- avidemux_2.6.15/avidemux_plugins/ADM_scriptEngines/tinyPy/src/PythonEngine.cpp 2016-11-21 22:37:44.681308658 +0100 +++ avidemux_2.6.15.new/avidemux_plugins/ADM_scriptEngines/tinyPy/src/PythonEngine.cpp 2016-11-21 22:36:20.930959596 +0100 @@ -260,7 +260,7 @@ this->callEventHandlers(IScriptEngine::Information, NULL, -1, (string("Executing ") + string(name) + string("...")).c_str()); - tp_import(_vm, name.c_str(), "avidemux6", NULL, 0); + tp_import(_vm, name.c_str(), "avidemux3", NULL, 0); this->callEventHandlers(IScriptEngine::Information, NULL, -1, "Done"); diff -uNr avidemux_2.6.15/cmake/se_plugin.cmake avidemux_2.6.15.new/cmake/se_plugin.cmake --- avidemux_2.6.15/cmake/se_plugin.cmake 2016-11-21 22:37:51.125181659 +0100 +++ avidemux_2.6.15.new/cmake/se_plugin.cmake 2016-11-21 22:36:27.354832942 +0100 @@ -15,7 +15,7 @@ if (WIN32) set(helpDir "${CMAKE_INSTALL_PREFIX}/help/${_engineName}") else (WIN32) - set(helpDir "${CMAKE_INSTALL_PREFIX}/share/avidemux6/help/${_engineName}") + set(helpDir "${CMAKE_INSTALL_PREFIX}/share/avidemux3/help/${_engineName}") endif (WIN32) install(DIRECTORY "${_sourceDirectory}" DESTINATION "${helpDir}" COMPONENT plugins) diff -uNr avidemux_2.6.15/cmake/sql/update.sh avidemux_2.6.15.new/cmake/sql/update.sh --- avidemux_2.6.15/cmake/sql/update.sh 2016-11-21 22:37:50.877186546 +0100 +++ avidemux_2.6.15.new/cmake/sql/update.sh 2016-11-21 22:36:27.106837831 +0100 @@ -1,3 +1,3 @@ -sqlite3 ~/.avidemux6/jobs.sql .d > dump +sqlite3 ~/.avidemux3/jobs.sql .d > dump #sql2class -sqlite -global -license -wrapped -lib $PWD dump sql2class -sqlite -build -global -prefix $PWD -lib sqlJobs -namespace db -overwrite dump diff -uNr avidemux_2.6.15/cmake/Ts.cmake avidemux_2.6.15.new/cmake/Ts.cmake --- avidemux_2.6.15/cmake/Ts.cmake 2016-11-21 22:37:50.249198923 +0100 +++ avidemux_2.6.15.new/cmake/Ts.cmake 2016-11-21 22:36:26.486850055 +0100 @@ -28,7 +28,7 @@ IF(WIN32) SET(i18dir "${CMAKE_INSTALL_PREFIX}/${BIN_DIR}/${QT_EXTENSION}/i18n") ELSE(WIN32) - SET(i18dir "${CMAKE_INSTALL_PREFIX}/share/avidemux6/${QT_EXTENSION}/i18n") + SET(i18dir "${CMAKE_INSTALL_PREFIX}/share/avidemux3/${QT_EXTENSION}/i18n") ENDIF(WIN32) INSTALL(FILES ${ARGN} DESTINATION "${i18dir}" COMPONENT runtime) ENDMACRO(INSTALL_I18N _files)
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.