Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpenBoard
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lifo
Nicolas Ollinger
OpenBoard
Commits
e1472657
Commit
e1472657
authored
Dec 01, 2011
by
Claudio Valerio
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed name on linux
parent
5d71deca
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
6 deletions
+12
-6
release.linux.sh
release.linux.sh
+4
-4
run.sh
resources/linux/run.sh
+2
-2
UBBoardController.cpp
src/board/UBBoardController.cpp
+6
-0
No files found.
release.linux.sh
View file @
e1472657
#!/bin/bash
# --------------------------------------------------------------------
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
...
...
@@ -13,7 +14,6 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# ---------------------------------------------------------------------
#!/bin/sh
make clean
rm
-rf
build/linux/release/
...
...
@@ -90,10 +90,10 @@ cp "$QT_LIBRARY_SOURCE_PATH/phonon.so.4.4.0" "$QT_LIBRARY_DEST_PATH/"
rm
-rf
install
/linux
mkdir
-p
install
/linux
mv
build/linux/release/product build/linux/release/
Sankore_3.1
.
$VERSION
mv
build/linux/release/product build/linux/release/
Open-Sankore
.
$VERSION
cd
build/linux/release
# "Removing .svn directories ..."
find
.
-name
.svn
-exec
rm
-rf
{}
\;
2> /dev/null
tar
cvzf ../../../install/linux/
Sankore
\
3.1.tar.gz Sankore_3.1
.
$VERSION
-C
.
notify-send
"Sankore"
"Build Finished"
tar
cvzf ../../../install/linux/
Open-Sankore.tar.gz Open-Sankore
.
$VERSION
-C
.
notify-send
"
Open-
Sankore"
"Build Finished"
resources/linux/run.sh
View file @
e1472657
#!/bin/bash
# --------------------------------------------------------------------
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
...
...
@@ -13,5 +14,4 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# ---------------------------------------------------------------------
#!/bin/sh
env
LD_LIBRARY_PATH
=
$PWD
/qtlib:
$LD_LIBRARY_PATH
./Open-Sankoré
env
LD_LIBRARY_PATH
=
$PWD
/qtlib:
$LD_LIBRARY_PATH
./Open-Sankore
src/board/UBBoardController.cpp
View file @
e1472657
...
...
@@ -1673,8 +1673,14 @@ UBGraphicsVideoItem* UBBoardController::addVideo(const QUrl& pSourceUrl, bool st
{
QUuid
uuid
=
QUuid
::
createUuid
();
QUrl
concreteUrl
=
pSourceUrl
;
#ifdef Q_WS_X11
concreteUrl
=
QUrl
::
fromLocalFile
(
mActiveDocument
->
persistencePath
()
+
"/"
+
UBPersistenceManager
::
persistenceManager
()
->
addVideoFileToDocument
(
mActiveDocument
,
pSourceUrl
.
toLocalFile
(),
uuid
));
#else
concreteUrl
=
QUrl
::
fromLocalFile
(
UBPersistenceManager
::
persistenceManager
()
->
addVideoFileToDocument
(
mActiveDocument
,
pSourceUrl
.
toLocalFile
(),
uuid
));
#endif
UBGraphicsVideoItem
*
vi
=
mActiveScene
->
addVideo
(
concreteUrl
,
startPlay
,
pos
);
mActiveDocument
->
setMetaData
(
UBSettings
::
documentUpdatedAt
,
UBStringUtils
::
toUtcIsoDateTime
(
QDateTime
::
currentDateTime
()));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment