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
43977465
Commit
43977465
authored
Jan 21, 2019
by
Clément Fauconnier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixes for Ubuntu 18.04 compilation
parent
d932ae1a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
package.sh
release_scripts/linux/package.sh
+1
-1
UBApplication.cpp
src/core/UBApplication.cpp
+2
-0
No files found.
release_scripts/linux/package.sh
View file @
43977465
...
@@ -348,7 +348,7 @@ for ((i=0;i<${#tab[@]};i++)); do
...
@@ -348,7 +348,7 @@ for ((i=0;i<${#tab[@]};i++)); do
echo
-n
", "
>>
"
$CONTROL_FILE
"
echo
-n
", "
>>
"
$CONTROL_FILE
"
fi
fi
# conditional dependency when libavcodec-ffmpeg56 or libavcodec-ffmpeg-extra56 is found
# conditional dependency when libavcodec-ffmpeg56 or libavcodec-ffmpeg-extra56 is found
depdVer
=
$(
apt-cache show
${
tab
[
$i
]
}
|
grep
"Version: "
|
head
-1
|
awk
'{ print $2 }'
|
sed
-e
's/\([:. 0-9?]*\).*/\1/g'
|
sed
-e
's/\.$//'
)
depdVer
=
$(
apt-cache show
${
tab
[
$i
]
}
|
grep
"Version: "
|
head
-1
|
awk
'{ print $2 }'
|
sed
-e
's/\([
~
:. 0-9?]*\).*/\1/g'
|
sed
-e
's/\.$//'
)
if
[
"
${
tab
[
$i
]
}
"
==
"libavcodec-ffmpeg56"
]
||
[
"
${
tab
[
$i
]
}
"
==
"libavcodec-ffmpeg-extra56"
]
;
then
if
[
"
${
tab
[
$i
]
}
"
==
"libavcodec-ffmpeg56"
]
||
[
"
${
tab
[
$i
]
}
"
==
"libavcodec-ffmpeg-extra56"
]
;
then
echo
-n
"libavcodec-ffmpeg56 (>=
${
depdVer
}
) | libavcodec-ffmpeg-extra56 (>=
${
depdVer
}
)"
>>
"
$CONTROL_FILE
"
echo
-n
"libavcodec-ffmpeg56 (>=
${
depdVer
}
) | libavcodec-ffmpeg-extra56 (>=
${
depdVer
}
)"
>>
"
$CONTROL_FILE
"
else
else
...
...
src/core/UBApplication.cpp
View file @
43977465
...
@@ -356,6 +356,8 @@ int UBApplication::exec(const QString& pFileToImport)
...
@@ -356,6 +356,8 @@ int UBApplication::exec(const QString& pFileToImport)
else
else
applicationController
->
showBoard
();
applicationController
->
showBoard
();
emit
UBDrawingController
::
drawingController
()
->
colorPaletteChanged
();
onScreenCountChanged
(
1
);
onScreenCountChanged
(
1
);
connect
(
desktop
(),
SIGNAL
(
screenCountChanged
(
int
)),
this
,
SLOT
(
onScreenCountChanged
(
int
)));
connect
(
desktop
(),
SIGNAL
(
screenCountChanged
(
int
)),
this
,
SLOT
(
onScreenCountChanged
(
int
)));
return
QApplication
::
exec
();
return
QApplication
::
exec
();
...
...
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