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 44)
Currently displaying revision
44
,
Show latest
diff -uNr avidemux_2.7.2/avidemux/qt4/ADM_userInterfaces/ADM_gui/Q_gui2_menu.cpp avidemux_2.7.2.new/avidemux/qt4/ADM_userInterfaces/ADM_gui/Q_gui2_menu.cpp --- avidemux_2.7.2/avidemux/qt4/ADM_userInterfaces/ADM_gui/Q_gui2_menu.cpp 2019-03-16 11:52:17.881954253 +0100 +++ avidemux_2.7.2.new/avidemux/qt4/ADM_userInterfaces/ADM_gui/Q_gui2_menu.cpp 2019-03-16 11:56:10.833191154 +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.7.2/avidemux_core/ADM_core/src/ADM_folder_linux.cpp avidemux_2.7.2.new/avidemux_core/ADM_core/src/ADM_folder_linux.cpp --- avidemux_2.7.2/avidemux_core/ADM_core/src/ADM_folder_linux.cpp 2019-03-16 11:52:17.853954826 +0100 +++ avidemux_2.7.2.new/avidemux_core/ADM_core/src/ADM_folder_linux.cpp 2019-03-16 11:56:07.877251594 +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.7.2/avidemux_core/ADM_core/src/ADM_folder_mac.cpp avidemux_2.7.2.new/avidemux_core/ADM_core/src/ADM_folder_mac.cpp --- avidemux_2.7.2/avidemux_core/ADM_core/src/ADM_folder_mac.cpp 2019-03-16 11:52:17.853954826 +0100 +++ avidemux_2.7.2.new/avidemux_core/ADM_core/src/ADM_folder_mac.cpp 2019-03-16 11:56:07.877251594 +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); @@ -146,9 +146,9 @@ std::string partialPath=flavor+std::string("/i18n"); #ifdef CREATE_BUNDLE - char *ppath=ADM_getInstallRelativePath("../Resources/share","avidemux6",partialPath.c_str()); + char *ppath=ADM_getInstallRelativePath("../Resources/share","avidemux3",partialPath.c_str()); #else - char *ppath=ADM_getInstallRelativePath("../share","avidemux6",partialPath.c_str()); + char *ppath=ADM_getInstallRelativePath("../share","avidemux3",partialPath.c_str()); #endif std::string r=std::string(ppath); delete [] ppath; diff -uNr avidemux_2.7.2/avidemux_plugins/ADM_scriptEngines/tinyPy/src/PythonEngine.cpp avidemux_2.7.2.new/avidemux_plugins/ADM_scriptEngines/tinyPy/src/PythonEngine.cpp --- avidemux_2.7.2/avidemux_plugins/ADM_scriptEngines/tinyPy/src/PythonEngine.cpp 2019-03-16 11:52:17.737957198 +0100 +++ avidemux_2.7.2.new/avidemux_plugins/ADM_scriptEngines/tinyPy/src/PythonEngine.cpp 2019-03-16 11:56:04.405322583 +0100 @@ -265,7 +265,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.7.2/cmake/se_plugin.cmake avidemux_2.7.2.new/cmake/se_plugin.cmake --- avidemux_2.7.2/cmake/se_plugin.cmake 2019-03-16 11:52:17.401964068 +0100 +++ avidemux_2.7.2.new/cmake/se_plugin.cmake 2019-03-16 11:56:12.493157213 +0100 @@ -16,7 +16,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.7.2/cmake/sql/update.sh avidemux_2.7.2.new/cmake/sql/update.sh --- avidemux_2.7.2/cmake/sql/update.sh 2019-03-16 11:52:17.921953435 +0100 +++ avidemux_2.7.2.new/cmake/sql/update.sh 2019-03-16 11:56:12.229162611 +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.7.2/cmake/Ts.cmake avidemux_2.7.2.new/cmake/Ts.cmake --- avidemux_2.7.2/cmake/Ts.cmake 2019-03-16 11:52:17.393964231 +0100 +++ avidemux_2.7.2.new/cmake/Ts.cmake 2019-03-16 11:56:12.265161875 +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
.