Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
liblinphone
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
10
Issues
10
List
Board
Labels
Milestones
Merge Requests
23
Merge Requests
23
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
External Wiki
External Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
BC
public
liblinphone
Commits
2a9d4afe
Commit
2a9d4afe
authored
Oct 17, 2017
by
Sylvain Berfini
🎩
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Keep previous callback name in migration as prefix instead of removing it
parent
b83f1933
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
10 deletions
+16
-10
migration.sh
wrappers/java/migration.sh
+16
-10
No files found.
wrappers/java/migration.sh
View file @
2a9d4afe
...
...
@@ -104,19 +104,19 @@ s/onChatMessageStateChanged/onMsgStateChanged/g; \
s/onChatMessageFileTransferProgressChanged/onFileTransferProgressIndication/g;
\
s/onChatMessageFileTransferSent/onFileTransferSend/g;
\
s/onChatMessageFileTransferReceived/onFileTransferRecv/g;
\
s/authInfoRequested/removed/g;
\
s/show(Core/
removed(
/g;
\
s/displayStatus/removed/g;
\
s/displayMessage/removed/g;
\
s/displayWarning/removed/g;
\
s/fileTransferProgressIndication/removed/g;
\
s/fileTransferRecv/removed/g;
\
s/fileTransferSend/removed/g;
\
s/authInfoRequested/
authInfoRequested_
removed/g;
\
s/show(Core/
show_removed(Core
/g;
\
s/displayStatus/
displayStatus_
removed/g;
\
s/displayMessage/
displayMessage_
removed/g;
\
s/displayWarning/
displayWarning_
removed/g;
\
s/fileTransferProgressIndication/
fileTransferProgressIndication_
removed/g;
\
s/fileTransferRecv/
fileTransferRecv_
removed/g;
\
s/fileTransferSend/
fileTransferSend_
removed/g;
\
s/notifyReceived(Core lc, Event/onNotifyReceived(Core lc, Event/g;
\
s/notifyReceived/removed/g;
\
s/notifyReceived/
notifyReceived_
removed/g;
\
s/ecCalibrationStatus/onEcCalibrationResult/g;
\
s/publishStateChanged/onPublishStateChanged/g;
\
s/messageReceivedUnableToDecrypted/removed/g;
\
s/messageReceivedUnableToDecrypted/
messageReceivedUnableToDecrypted_
removed/g;
\
s/callStatsUpdated/onCallStatsUpdated/g;
\
s/authenticationRequested/onAuthenticationRequested/g;
\
s/newSubscriptionRequest/onNewSubscriptionRequested/g;
\
...
...
@@ -273,6 +273,11 @@ s/new XmlRpcSessionImpl(LinphoneManager.getLcIfManagerNotDestroyedOrNull(), /Lin
# TODO
#Tunnel, TunnelConfig
#AccountCreator.updatePassword => What to do ?
#Core.removeFriend(friend)
#Factory.instance().enableLogCollection(isDebugEnabled);
#Factory.instance().setDebugMode(isDebugEnabled, context.getString(R.string.app_name));
#setVideoDevice()
#Factory.instance().createBuffer();
# Manual changes required
# Some callbacks no longer exist, their name will be "removed", remove them
...
...
@@ -322,6 +327,7 @@ s/new XmlRpcSessionImpl(LinphoneManager.getLcIfManagerNotDestroyedOrNull(), /Lin
# # Other
#CallParams.getJitterBufferSize() => CallStatsImpl.getJitterBufferSizeMs()
#Core.findAuthInfo was (username, realm, domain) now is (realm, username, domain)
# # Payloads
#Core.enablePayloadType() => PayloadType.enable()
...
...
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