1
0
Fork 0
mirror of https://git.jami.net/savoirfairelinux/jami-client-qt.git synced 2025-03-28 14:56:19 +01:00

resources: remove unused images and icons

gen-resources.py should be used to generate resources.qrc and
JamiResources.qml. Steps to add an image resource:
- add the resource file to the appropriate path under resources/
- run gen-resources.py
- use the newly available resource

Note: only icons and images will be represented by Qml properties.

The resource file generation may be made to run during CMake
configuration in a subsequent commit.

Some unused components were also removed during the refactor.

Gitlab: #477
Change-Id: I8e7f13d465031666be2bbadd5f29f9afc94d210d
This commit is contained in:
Andreas Traczyk 2021-07-19 23:52:58 -04:00
parent 6e4fadcf11
commit 1a61af02f3
225 changed files with 496 additions and 839 deletions

View file

@ -94,7 +94,6 @@ set(COMMON_HEADERS
${SRC_DIR}/qrimageprovider.h
${SRC_DIR}/messagesadapter.h
${SRC_DIR}/accountadapter.h
${SRC_DIR}/tintedbuttonimageprovider.h
${SRC_DIR}/calladapter.h
${SRC_DIR}/conversationsadapter.h
${SRC_DIR}/distantrenderer.h
@ -436,14 +435,14 @@ else()
target_compile_definitions(jami-qt PRIVATE JAMI_INSTALL_PREFIX="${JAMI_DATA_PREFIX}")
# logos
install(FILES images/jami.svg
install(FILES resources/images/jami.svg
DESTINATION ${CMAKE_INSTALL_PREFIX}/share/icons/hicolor/scalable/apps)
install(FILES images/jami-48px.png
install(FILES resources/images/jami-48px.png
DESTINATION ${CMAKE_INSTALL_PREFIX}/share/icons/hicolor/48x48/apps
RENAME jami.png)
install(FILES images/jami-32px.xpm
install(FILES resources/images/jami-32px.xpm
DESTINATION ${CMAKE_INSTALL_PREFIX}/share/pixmaps
RENAME jami.xpm)

View file

@ -12,7 +12,7 @@ else()
"${DRING_PATH}/contrib/build/openssl/libcrypto-1_1-x64.dll"
"${DRING_PATH}/contrib/build/openssl/libssl-1_1-x64.dll"
"${PROJECT_ROOT_DIR}/qt.conf"
"${PROJECT_ROOT_DIR}/images/jami.ico"
"${PROJECT_ROOT_DIR}/resources/images/jami.ico"
"${PROJECT_ROOT_DIR}/License.rtf"
DESTINATION ${COPY_TO_PATH})
endif()

33
gen-resources.py Normal file
View file

@ -0,0 +1,33 @@
import os
import sys
import re
resdir = 'resources'
qmlfile = os.path.join('src', 'constant', 'JamiResources.qml')
sep = '_'
# replace characters that aren't valid within QML property names
formatProp = lambda str: (
"".join([{".": sep, "-": sep, " ": sep}
.get(c, c) for c in str]
).lower())
with open('resources.qrc', 'w') as qrc, open(qmlfile, 'w') as qml:
qrc.write('<RCC>\n')
qml.write('pragma Singleton\nimport QtQuick 2.14\nQtObject {\n')
for root, _, files in os.walk(resdir):
if len(files):
prefix = root.rsplit(os.sep, 1)[-1]
qrc.write('\t<qresource prefix="/%s">\n' % prefix)
for filename in files:
# use posix separators in the resource path
filepath = os.path.join(root, filename).replace(os.sep, '/')
qrc.write('\t\t<file alias="%s">%s</file>\n'
% (filename, filepath))
# only record images/icons as properties
if (re.match("icons|images", prefix)):
qml.write(' readonly property string %s: "qrc:/%s"\n'
% (formatProp(filename), filepath.split('/', 1)[1]))
qrc.write('\t</qresource>\n')
qml.write('}')
qrc.write('</RCC>')

2
ico.rc
View file

@ -1 +1 @@
IDI_ICON1 ICON DISCARDABLE "images/jami.ico"
IDI_ICON1 ICON DISCARDABLE "resources/images/jami.ico"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 673 B

View file

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white" width="24px" height="24px"><path d="M0 0h24v24H0z" fill="none"/><path d="M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z"/></svg>

Before

Width:  |  Height:  |  Size: 215 B

View file

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M17.65 6.35C16.2 4.9 14.21 4 12 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08c-.82 2.33-3.04 4-5.65 4-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35z"/><path d="M0 0h24v24H0z" fill="none"/></svg>

Before

Width:  |  Height:  |  Size: 340 B

View file

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 0 24 24" width="24"><path d="M0 0h24v24H0z" fill="none"/><path d="M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 9h12v2H6V9zm8 5H6v-2h8v2zm4-6H6V6h12v2z"/></svg>

Before

Width:  |  Height:  |  Size: 253 B

View file

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 0 24 24" width="24px" fill="#000000"><path d="M0 0h24v24H0z" fill="none"/><path d="M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z"/></svg>

Before

Width:  |  Height:  |  Size: 202 B

View file

@ -1,11 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Garbage</title>
<g id="Icones_Outline" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Garbage" fill="#000000" fill-rule="nonzero" stroke="#000000" stroke-width="0.75">
<g id="noun_Garbage_2034095" transform="translate(2.000000, 2.000000)">
<path d="M18.5416667,2.66666667 L12.4791667,2.66666667 L12.4791667,2.1875 C12.4791667,1.04166667 11.5416667,0.104166667 10.3958333,0.104166667 L8.77083333,0.104166667 C7.625,0.104166667 6.6875,1.04166667 6.6875,2.1875 L6.6875,2.66666667 L0.625,2.66666667 C0.333333333,2.66666667 0.0833333333,2.91666667 0.0833333333,3.20833333 C0.0833333333,3.5 0.333333333,3.75 0.625,3.75 L2.14583333,3.75 L2.85416667,17.7291667 C2.91666667,18.9375 3.91666667,19.8958333 5.14583333,19.8958333 L14.0625,19.8958333 C15.2708333,19.8958333 16.2916667,18.9375 16.3541667,17.7291667 L17.0208333,3.75 L18.5416667,3.75 C18.8333333,3.75 19.0833333,3.5 19.0833333,3.20833333 C19.0833333,2.91666667 18.8333333,2.66666667 18.5416667,2.66666667 Z M7.77083333,2.1875 C7.77083333,1.64583333 8.20833333,1.1875 8.77083333,1.1875 L10.3958333,1.1875 C10.9375,1.1875 11.3958333,1.625 11.3958333,2.1875 L11.3958333,2.66666667 L7.77083333,2.66666667 L7.77083333,2.1875 Z M15.2291667,17.6666667 C15.1875,18.3125 14.6666667,18.7916667 14.0416667,18.7916667 L5.125,18.7916667 C4.47916667,18.7916667 3.95833333,18.2916667 3.9375,17.6666667 L3.22916667,3.75 L15.9166667,3.75 L15.2291667,17.6666667 Z" id="Shape"></path>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 237 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 205 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 193 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 198 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 186 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 235 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 209 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 202 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 193 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 205 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 181 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 199 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 241 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 861 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 384 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 484 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 394 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 446 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 196 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 344 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 888 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 296 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 234 B

View file

@ -1,12 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Micro</title>
<g id="Icones_Outline" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Micro" fill-rule="nonzero" stroke="#000000">
<g id="Group" transform="translate(5.000000, 2.000000)">
<path d="M6.56527519,0.974075391 C7.45579029,0.974075391 8.26271949,1.33613472 8.84711447,1.9205297 C9.43150944,2.50492467 9.79356877,3.31185387 9.79356877,4.20236897 L9.79356877,4.20236897 L9.79356877,10.2205384 C9.79356877,11.1110527 9.43150906,11.917982 8.84711379,12.5023773 C8.2627189,13.0867722 7.45579,13.4488319 6.56527519,13.4488319 C5.67476035,13.4488319 4.86783137,13.0867721 4.2834364,12.5023772 C3.6990411,11.917982 3.33698134,11.1110526 3.33698134,10.2205384 L3.33698134,10.2205384 L3.33698134,4.20236897 C3.33698134,3.31185389 3.69904072,2.50492472 4.28343573,1.92052975 C4.86783077,1.33613475 5.67476006,0.974075391 6.56527519,0.974075391 Z" id="Path" stroke-width="1.75"></path>
<path d="M0.555659536,6.93784593 C0.263494091,6.93333516 -0.00456587154,7.20139238 -5.2430396e-05,7.49355783 L-5.2430396e-05,10.2290732 C-5.2430396e-05,13.673624 2.64524538,16.4924773 6.01816938,16.768711 L6.01816938,18.7006784 L3.82974614,18.7006784 C3.52758781,18.7006784 3.28264033,18.9456177 3.28264033,19.2477842 C3.28264033,19.5499508 3.52758781,19.79489 3.82974614,19.79489 L9.30080425,19.79489 C9.60296258,19.79489 9.84791006,19.5499508 9.84791006,19.2477842 C9.84791006,18.9456177 9.60296258,18.7012802 9.30080425,18.7006784 L7.112381,18.7006784 L7.112381,16.768711 C10.4853047,16.4924773 13.1305918,13.673624 13.1305918,10.2290732 L13.1305918,7.49355783 C13.1346209,7.20451636 12.8725107,6.93866123 12.5834391,6.93866123 C12.2943675,6.93866123 12.0322464,7.20451636 12.0363333,7.49355783 L12.0363333,10.2290732 C12.0363333,13.2695043 9.60570358,15.7001313 6.56527519,15.7001313 C3.52484407,15.7001313 1.09421682,13.2695043 1.09421682,10.2290732 L1.09421682,7.49355783 C1.09870309,7.20709323 0.842124138,6.94237335 0.555659536,6.93784593 Z" id="Path" stroke-width="0.5" fill="#000000"></path>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.3 KiB

View file

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 0 24 24" width="24"><path d="M0 0h24v24H0z" fill="none"/><path d="M6 19h4V5H6v14zm8-14v14h4V5h-4z"/></svg>

Before

Width:  |  Height:  |  Size: 169 B

View file

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 0 24 24" width="24"><path d="M0 0h24v24H0z" fill="none"/><path d="M10 16.5l6-4.5-6-4.5v9zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"/></svg>

Before

Width:  |  Height:  |  Size: 285 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 355 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

View file

@ -10,13 +10,11 @@
<file>src/commoncomponents/PasswordDialog.qml</file>
<file>src/commoncomponents/MaterialLineEdit.qml</file>
<file>src/commoncomponents/PhotoboothView.qml</file>
<file>src/commoncomponents/LookupStatusLabel.qml</file>
<file>src/commoncomponents/ListViewJami.qml</file>
<file>src/commoncomponents/DeleteAccountDialog.qml</file>
<file>src/commoncomponents/CustomBorder.qml</file>
<file>src/commoncomponents/PushButton.qml</file>
<file>src/commoncomponents/JamiFileDialog.qml</file>
<file>src/commoncomponents/TintedButton.qml</file>
<file>src/commoncomponents/AccountMigrationDialog.qml</file>
<file>src/commoncomponents/MaterialButton.qml</file>
<file>src/commoncomponents/ElidedTextLabel.qml</file>
@ -89,7 +87,6 @@
<file>src/wizardview/components/ImportFromDevicePage.qml</file>
<file>src/wizardview/components/ConnectToAccountManagerPage.qml</file>
<file>src/wizardview/components/ProfilePage.qml</file>
<file>src/wizardview/components/CollapsiblePasswordWidget.qml</file>
<file>src/wizardview/components/AccountCreationStepIndicator.qml</file>
<file>src/mainview/MainView.qml</file>
<file>src/mainview/components/PluginHandlerItemDelegate.qml</file>
@ -159,5 +156,6 @@
<file>src/mainview/components/ConversationAvatar.qml</file>
<file>src/mainview/components/InvitationView.qml</file>
<file>src/commoncomponents/GeneralWebEngineView.qml</file>
<file>src/constant/JamiResources.qml</file>
</qresource>
</RCC>

View file

@ -1,150 +1,126 @@
<RCC>
<qresource prefix="/">
<file>images/icons/outline-info-24px.svg</file>
<file>images/icons/baseline-camera_alt-24px.svg</file>
<file>images/icons/baseline-refresh-24px.svg</file>
<file>images/jami_rolling_spinner.gif</file>
<file>images/icons/baseline-close-24px.svg</file>
<file>images/icons/cross_black_24dp.svg</file>
<file>images/icons/mosaic_black_24dp.svg</file>
<file>images/icons/baseline-done-24px.svg</file>
<file>images/icons/baseline-error_outline-24px.svg</file>
<file>projectcredits.html</file>
<file>images/ajax-loader.gif</file>
<file>images/default_avatar_overlay.svg</file>
<file>images/FontAwesome.otf</file>
<file>images/jami.ico</file>
<file>images/jami.png</file>
<file>images/jami.svg</file>
<file>images/jami-new.svg</file>
<file>images/spike.png</file>
<file>images/waiting.gif</file>
<file>images/icons/ic_add_black_18dp_2x.png</file>
<file>images/icons/info-24px.svg</file>
<file>images/icons/backup-24px.svg</file>
<file>images/icons/check_box_outline_blank-24px.svg</file>
<file>images/icons/check_box-24px.svg</file>
<file>images/icons/check_black-24dp.svg</file>
<file>images/icons/devices-24px.svg</file>
<file>images/icons/ic_arrow_back_24px.svg</file>
<file>images/icons/ic_arrow_back_white_24dp.svg</file>
<file>images/icons/ic_arrow_drop_down_black_9dp_2x.png</file>
<file>images/icons/ic_arrow_drop_down_black_18dp_2x.png</file>
<file>images/icons/ic_arrow_drop_up_black_9dp_2x.png</file>
<file>images/icons/ic_arrow_drop_up_black_18dp_2x.png</file>
<file>images/icons/ic_arrow_forward_white_48dp_2x.png</file>
<file>images/icons/ic_arrow_tab_next_black_9dp_2x.png</file>
<file>images/icons/ic_arrow_tab_previous_black_9dp_2x.png</file>
<file>images/icons/block_black-24dp.svg</file>
<file>images/icons/ic_hangup_participant-24px.svg</file>
<file>images/icons/delete_forever-24px.svg</file>
<file>images/icons/phone_forwarded-24px.svg</file>
<file>images/icons/ic_chat_black_24dp_2x.png</file>
<file>images/icons/ic_chat_white_24dp.png</file>
<file>images/icons/ic_clear_24px.svg</file>
<file>images/icons/ic_content_copy.svg</file>
<file>images/icons/ic_done_white_24dp.png</file>
<file>images/icons/ic_keypad.svg</file>
<file>images/icons/open_in_full-24px.svg</file>
<file>images/icons/close_fullscreen-24px.svg</file>
<file>images/icons/ic_group_add_white_24dp.png</file>
<file>images/icons/ic_mic_off_white_24dp.png</file>
<file>images/icons/pause_circle_outline-24px.svg</file>
<file>images/icons/play_circle_outline-24px.svg</file>
<file>images/icons/ic_pause_white_100px.svg</file>
<file>images/icons/groups-24px.svg</file>
<file>images/icons/ic_photo_camera_white_24dp_2x.png</file>
<file>images/icons/ic_baseline-search-24px.svg</file>
<file>images/icons/ic_send_24px.svg</file>
<file>images/icons/ic_send_white_24dp.png</file>
<file>images/icons/ic_settings_white_48dp_2x.png</file>
<file>images/icons/ic_share_black_48dp_2x.png</file>
<file>images/icons/ic_video_call_24px.svg</file>
<file>images/icons/ic_videocam_off_white_24dp.png</file>
<file>images/icons/ic_videocam_white.png</file>
<file>images/icons/ic_call_end_white_24px.svg</file>
<file>images/icons/round-add-24px.svg</file>
<file>images/icons/round-arrow_drop_down-24px.svg</file>
<file>images/icons/round-arrow_drop_up-24px.svg</file>
<file>images/icons/round-arrow_right-24px.svg</file>
<file>images/icons/round-close-24px.svg</file>
<file>images/icons/round-edit-24px.svg</file>
<file>images/icons/round-folder-24px.svg</file>
<file>images/icons/round-remove_circle-24px.svg</file>
<file>images/icons/round-settings-24px.svg</file>
<file>images/icons/round-undo-24px.svg</file>
<file>images/icons/round-check_circle-24px.svg</file>
<file>images/icons/round-error-24px.svg</file>
<file>images/icons/round-save_alt-24px.svg</file>
<file>images/jami_eclipse_spinner.gif</file>
<file>images/icons/ic_hide_password.png</file>
<file>images/icons/ic_show_password.png</file>
<file>images/icons/baseline-desktop_windows-24px.svg</file>
<file>images/icons/ic_high_quality_24px.svg</file>
<file>images/icons/insert_photo-24px.svg</file>
<file>images/icons/round-add_a_photo-24px.svg</file>
<file>images/icons/ic_mic_white_24dp.png</file>
<file>images/icons/ic_play_white_24dp.png</file>
<file>images/icons/av_icons/delete-24px.svg</file>
<file>images/icons/av_icons/fiber_manual_record-24px.svg</file>
<file>images/icons/av_icons/play_circle_outline-24px.svg</file>
<file>images/icons/av_icons/re-record-24px.svg</file>
<file>images/icons/av_icons/stop-24px-red.svg</file>
<file>images/icons/av_icons/pause-24px.svg</file>
<file>images/icons/av_icons/send-24px.svg</file>
<file>images/icons/av_icons/stop-24px.svg</file>
<file>images/icons/av_icons/mic-24px.svg</file>
<file>images/icons/extension_24dp.svg</file>
<file>images/icons/settings_backup_restore-black-18dp.svg</file>
<file>images/icons/person-24px.svg</file>
<file>images/icons/drafts-24px.svg</file>
<file>images/icons/router-24px.svg</file>
<file>images/icons/arrow_back-white-24dp.svg</file>
<file>images/icons/videocam-24px.svg</file>
<file>images/icons/qr_code-24px.svg</file>
<file>images/icons/content_copy-24px.svg</file>
<file>images/icons/videocam_off-24px.svg</file>
<file>images/icons/mic_off-24px.svg</file>
<file>images/icons/mic-24px.svg</file>
<file>images/icons/group_add-24px.svg</file>
<file>images/icons/chat-24px.svg</file>
<file>images/icons/phone_paused-24px.svg</file>
<file>images/icons/pause-24px.svg</file>
<file>images/icons/arrow_drop_up-24px.svg</file>
<file>images/icons/arrow_drop_down-24px.svg</file>
<file>images/icons/expand_less-24px.svg</file>
<file>images/icons/expand_more-24px.svg</file>
<file>images/icons/delete-24px.svg</file>
<file>images/icons/settings_backup_restore-24px.svg</file>
<file>images/logo-jami-standard-coul.svg</file>
<file>images/logo-jami-standard-coul-white.svg</file>
<file>images/icons/moderator.svg</file>
<file>images/icons/star_outline-24px.svg</file>
<file>images/icons/message_audio_black-24dp.svg</file>
<file>images/icons/message_video_black-24dp.svg</file>
<file>images/icons/send_black-24dp.svg</file>
<file>images/icons/back-24px.svg</file>
<file>images/icons/place_audiocall-24px.svg</file>
<file>images/icons/add_people-24px.svg</file>
<file>images/icons/share-24px.svg</file>
<file>images/icons/settings-24px.svg</file>
<file>images/icons/quote.svg</file>
<file>images/icons/plugins-24px.svg</file>
<file>images/icons/record_black_24dp.svg</file>
<file>images/icons/account_black-24dp.svg</file>
<file>images/icons/gear_black-24dp.svg</file>
<file>images/icons/media_black-24dp.svg</file>
<file>images/icons/plugin_settings_black-24dp.svg</file>
<file>images/icons/share_stop_black_24dp.svg</file>
<file>images/icons/share_screen_black_24dp.svg</file>
<file>images/icons/chat_black_24dp.svg</file>
<file>images/icons/add_people_black_24dp.svg</file>
<file>images/icons/spk_black_24dp.svg</file>
<file>images/icons/spk_none_black_24dp.svg</file>
<file>images/icons/more_vert-24dp.svg</file>
<file>images/icons/chevron_left_black_24dp.svg</file>
<file>images/icons/emoji_black-24dp.svg</file>
<file>images/icons/link_black-24dp.svg</file>
<file>images/icons/file_black-24dp.svg</file>
<qresource prefix="/fonts">
<file alias="FontAwesome.otf">resources/fonts/FontAwesome.otf</file>
</qresource>
<qresource prefix="/icons">
<file alias="account_24dp.svg">resources/icons/account_24dp.svg</file>
<file alias="add_people_24dp.svg">resources/icons/add_people_24dp.svg</file>
<file alias="add_people_black_24dp.svg">resources/icons/add_people_black_24dp.svg</file>
<file alias="arrow_drop_down_24dp.svg">resources/icons/arrow_drop_down_24dp.svg</file>
<file alias="arrow_drop_up_24dp.svg">resources/icons/arrow_drop_up_24dp.svg</file>
<file alias="backup_24dp.svg">resources/icons/backup_24dp.svg</file>
<file alias="back_24dp.svg">resources/icons/back_24dp.svg</file>
<file alias="baseline_camera_alt_24dp.svg">resources/icons/baseline_camera_alt_24dp.svg</file>
<file alias="baseline_close_24dp.svg">resources/icons/baseline_close_24dp.svg</file>
<file alias="baseline_desktop_windows_24dp.svg">resources/icons/baseline_desktop_windows_24dp.svg</file>
<file alias="baseline_done_24dp.svg">resources/icons/baseline_done_24dp.svg</file>
<file alias="baseline_error_outline_24dp.svg">resources/icons/baseline_error_outline_24dp.svg</file>
<file alias="block_black_24dp.svg">resources/icons/block_black_24dp.svg</file>
<file alias="chat_black_24dp.svg">resources/icons/chat_black_24dp.svg</file>
<file alias="check_black_24dp.svg">resources/icons/check_black_24dp.svg</file>
<file alias="check_box_24dp.svg">resources/icons/check_box_24dp.svg</file>
<file alias="check_box_outline_blank_24dp.svg">resources/icons/check_box_outline_blank_24dp.svg</file>
<file alias="chevron_left_black_24dp.svg">resources/icons/chevron_left_black_24dp.svg</file>
<file alias="close_fullscreen_24dp.svg">resources/icons/close_fullscreen_24dp.svg</file>
<file alias="close_white_24dp.svg">resources/icons/close_white_24dp.svg</file>
<file alias="content_copy_24dp.svg">resources/icons/content_copy_24dp.svg</file>
<file alias="cross_black_24dp.svg">resources/icons/cross_black_24dp.svg</file>
<file alias="delete_24dp.svg">resources/icons/delete_24dp.svg</file>
<file alias="delete_forever_24dp.svg">resources/icons/delete_forever_24dp.svg</file>
<file alias="devices_24dp.svg">resources/icons/devices_24dp.svg</file>
<file alias="done_white_24dp.svg">resources/icons/done_white_24dp.svg</file>
<file alias="drafts_24dp.svg">resources/icons/drafts_24dp.svg</file>
<file alias="emoji_black_24dp.svg">resources/icons/emoji_black_24dp.svg</file>
<file alias="expand_less_24dp.svg">resources/icons/expand_less_24dp.svg</file>
<file alias="expand_more_24dp.svg">resources/icons/expand_more_24dp.svg</file>
<file alias="extension_24dp.svg">resources/icons/extension_24dp.svg</file>
<file alias="fiber_manual_record_24dp.svg">resources/icons/fiber_manual_record_24dp.svg</file>
<file alias="file_black_24dp.svg">resources/icons/file_black_24dp.svg</file>
<file alias="gear_black_24dp.svg">resources/icons/gear_black_24dp.svg</file>
<file alias="groups_24dp.svg">resources/icons/groups_24dp.svg</file>
<file alias="group_add_24dp.svg">resources/icons/group_add_24dp.svg</file>
<file alias="ic_arrow_back_24dp.svg">resources/icons/ic_arrow_back_24dp.svg</file>
<file alias="ic_arrow_back_white_24dp.svg">resources/icons/ic_arrow_back_white_24dp.svg</file>
<file alias="ic_baseline_search_24dp.svg">resources/icons/ic_baseline_search_24dp.svg</file>
<file alias="ic_call_end_white_24dp.svg">resources/icons/ic_call_end_white_24dp.svg</file>
<file alias="ic_clear_24dp.svg">resources/icons/ic_clear_24dp.svg</file>
<file alias="ic_content_copy.svg">resources/icons/ic_content_copy.svg</file>
<file alias="ic_hangup_participant_24dp.svg">resources/icons/ic_hangup_participant_24dp.svg</file>
<file alias="ic_high_quality_24dp.svg">resources/icons/ic_high_quality_24dp.svg</file>
<file alias="ic_keypad.svg">resources/icons/ic_keypad.svg</file>
<file alias="ic_pause_white_100px.svg">resources/icons/ic_pause_white_100px.svg</file>
<file alias="ic_send_24dp.svg">resources/icons/ic_send_24dp.svg</file>
<file alias="ic_video_call_24dp.svg">resources/icons/ic_video_call_24dp.svg</file>
<file alias="info_24dp.svg">resources/icons/info_24dp.svg</file>
<file alias="insert_photo_24dp.svg">resources/icons/insert_photo_24dp.svg</file>
<file alias="link_black_24dp.svg">resources/icons/link_black_24dp.svg</file>
<file alias="media_black_24dp.svg">resources/icons/media_black_24dp.svg</file>
<file alias="message_audio_black_24dp.svg">resources/icons/message_audio_black_24dp.svg</file>
<file alias="message_video_black_24dp.svg">resources/icons/message_video_black_24dp.svg</file>
<file alias="mic_24dp.svg">resources/icons/mic_24dp.svg</file>
<file alias="mic_off_24dp.svg">resources/icons/mic_off_24dp.svg</file>
<file alias="moderator.svg">resources/icons/moderator.svg</file>
<file alias="more_vert_24dp.svg">resources/icons/more_vert_24dp.svg</file>
<file alias="mosaic_black_24dp.svg">resources/icons/mosaic_black_24dp.svg</file>
<file alias="open_in_full_24dp.svg">resources/icons/open_in_full_24dp.svg</file>
<file alias="outline_info_24dp.svg">resources/icons/outline_info_24dp.svg</file>
<file alias="pause_24dp.svg">resources/icons/pause_24dp.svg</file>
<file alias="pause_circle_outline_24dp.svg">resources/icons/pause_circle_outline_24dp.svg</file>
<file alias="person_24dp.svg">resources/icons/person_24dp.svg</file>
<file alias="phone_forwarded_24dp.svg">resources/icons/phone_forwarded_24dp.svg</file>
<file alias="phone_paused_24dp.svg">resources/icons/phone_paused_24dp.svg</file>
<file alias="place_audiocall_24dp.svg">resources/icons/place_audiocall_24dp.svg</file>
<file alias="play_circle_outline_24dp.svg">resources/icons/play_circle_outline_24dp.svg</file>
<file alias="plugins_24dp.svg">resources/icons/plugins_24dp.svg</file>
<file alias="plugin_settings_black_24dp.svg">resources/icons/plugin_settings_black_24dp.svg</file>
<file alias="qr_code_24dp.svg">resources/icons/qr_code_24dp.svg</file>
<file alias="record_black_24dp.svg">resources/icons/record_black_24dp.svg</file>
<file alias="re_record_24dp.svg">resources/icons/re_record_24dp.svg</file>
<file alias="round_add_24dp.svg">resources/icons/round_add_24dp.svg</file>
<file alias="round_add_a_photo_24dp.svg">resources/icons/round_add_a_photo_24dp.svg</file>
<file alias="round_arrow_drop_down_24dp.svg">resources/icons/round_arrow_drop_down_24dp.svg</file>
<file alias="round_arrow_drop_up_24dp.svg">resources/icons/round_arrow_drop_up_24dp.svg</file>
<file alias="round_arrow_right_24dp.svg">resources/icons/round_arrow_right_24dp.svg</file>
<file alias="round_check_circle_24dp.svg">resources/icons/round_check_circle_24dp.svg</file>
<file alias="round_close_24dp.svg">resources/icons/round_close_24dp.svg</file>
<file alias="round_edit_24dp.svg">resources/icons/round_edit_24dp.svg</file>
<file alias="round_error_24dp.svg">resources/icons/round_error_24dp.svg</file>
<file alias="round_folder_24dp.svg">resources/icons/round_folder_24dp.svg</file>
<file alias="round_remove_circle_24dp.svg">resources/icons/round_remove_circle_24dp.svg</file>
<file alias="round_save_alt_24dp.svg">resources/icons/round_save_alt_24dp.svg</file>
<file alias="round_settings_24dp.svg">resources/icons/round_settings_24dp.svg</file>
<file alias="round_undo_24dp.svg">resources/icons/round_undo_24dp.svg</file>
<file alias="router_24dp.svg">resources/icons/router_24dp.svg</file>
<file alias="send_24dp.svg">resources/icons/send_24dp.svg</file>
<file alias="send_black_24dp.svg">resources/icons/send_black_24dp.svg</file>
<file alias="settings_24dp.svg">resources/icons/settings_24dp.svg</file>
<file alias="settings_backup_restore_24dp.svg">resources/icons/settings_backup_restore_24dp.svg</file>
<file alias="settings_backup_restore_black_18dp.svg">resources/icons/settings_backup_restore_black_18dp.svg</file>
<file alias="share_24dp.svg">resources/icons/share_24dp.svg</file>
<file alias="share_screen_black_24dp.svg">resources/icons/share_screen_black_24dp.svg</file>
<file alias="share_stop_black_24dp.svg">resources/icons/share_stop_black_24dp.svg</file>
<file alias="spk_black_24dp.svg">resources/icons/spk_black_24dp.svg</file>
<file alias="spk_none_black_24dp.svg">resources/icons/spk_none_black_24dp.svg</file>
<file alias="star_outline_24dp.svg">resources/icons/star_outline_24dp.svg</file>
<file alias="stop_24dp.svg">resources/icons/stop_24dp.svg</file>
<file alias="stop_24dp_red.svg">resources/icons/stop_24dp_red.svg</file>
<file alias="videocam_24dp.svg">resources/icons/videocam_24dp.svg</file>
<file alias="videocam_off_24dp.svg">resources/icons/videocam_off_24dp.svg</file>
</qresource>
<qresource prefix="/images">
<file alias="default_avatar_overlay.svg">resources/images/default_avatar_overlay.svg</file>
<file alias="jami-32px.xpm">resources/images/jami-32px.xpm</file>
<file alias="jami-48px.png">resources/images/jami-48px.png</file>
<file alias="jami-new.svg">resources/images/jami-new.svg</file>
<file alias="jami.ico">resources/images/jami.ico</file>
<file alias="jami.svg">resources/images/jami.svg</file>
<file alias="jami_eclipse_spinner.gif">resources/images/jami_eclipse_spinner.gif</file>
<file alias="jami_rolling_spinner.gif">resources/images/jami_rolling_spinner.gif</file>
<file alias="logo-jami-standard-coul-white.svg">resources/images/logo-jami-standard-coul-white.svg</file>
<file alias="logo-jami-standard-coul.svg">resources/images/logo-jami-standard-coul.svg</file>
<file alias="quote.svg">resources/images/quote.svg</file>
</qresource>
<qresource prefix="/misc">
<file alias="projectcredits.html">resources/misc/projectcredits.html</file>
</qresource>
</RCC>

View file

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<svg width="24" height="24" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Add people</title>
<g id="Icones_Outline" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Add-people" fill="#000000" fill-rule="nonzero" stroke="#000000" stroke-width="0.5">

Before

Width:  |  Height:  |  Size: 4 KiB

After

Width:  |  Height:  |  Size: 4 KiB

View file

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

Before

Width:  |  Height:  |  Size: 152 B

After

Width:  |  Height:  |  Size: 152 B

View file

Before

Width:  |  Height:  |  Size: 152 B

After

Width:  |  Height:  |  Size: 152 B

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<svg width="24" height="24" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Arrow Left</title>
<g id="Icones" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="&lt;-" fill="#000000" transform="translate(2.000000, 5.000000)">

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

Before

Width:  |  Height:  |  Size: 318 B

After

Width:  |  Height:  |  Size: 318 B

View file

Before

Width:  |  Height:  |  Size: 324 B

After

Width:  |  Height:  |  Size: 324 B

View file

Before

Width:  |  Height:  |  Size: 239 B

After

Width:  |  Height:  |  Size: 239 B

View file

Before

Width:  |  Height:  |  Size: 248 B

After

Width:  |  Height:  |  Size: 248 B

View file

Before

Width:  |  Height:  |  Size: 188 B

After

Width:  |  Height:  |  Size: 188 B

View file

Before

Width:  |  Height:  |  Size: 307 B

After

Width:  |  Height:  |  Size: 307 B

View file

Before

Width:  |  Height:  |  Size: 1,020 B

After

Width:  |  Height:  |  Size: 1,020 B

View file

Before

Width:  |  Height:  |  Size: 878 B

After

Width:  |  Height:  |  Size: 878 B

View file

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

Before

Width:  |  Height:  |  Size: 269 B

After

Width:  |  Height:  |  Size: 269 B

View file

Before

Width:  |  Height:  |  Size: 228 B

After

Width:  |  Height:  |  Size: 228 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 0 24 24" width="24" fill="#000000"><path d="M0 0h24v24H0z" fill="none"/><path d="M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z"/></svg>

After

Width:  |  Height:  |  Size: 198 B

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<svg width="24" height="24" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Reduce Screen</title>
<g id="Icones" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Reduce-Screen" fill="#000000" fill-rule="nonzero">

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 2.9 KiB

View file

Before

Width:  |  Height:  |  Size: 256 B

After

Width:  |  Height:  |  Size: 256 B

View file

Before

Width:  |  Height:  |  Size: 265 B

After

Width:  |  Height:  |  Size: 265 B

View file

Before

Width:  |  Height:  |  Size: 697 B

After

Width:  |  Height:  |  Size: 697 B

View file

Before

Width:  |  Height:  |  Size: 228 B

After

Width:  |  Height:  |  Size: 228 B

View file

Before

Width:  |  Height:  |  Size: 380 B

After

Width:  |  Height:  |  Size: 380 B

View file

Before

Width:  |  Height:  |  Size: 279 B

After

Width:  |  Height:  |  Size: 279 B

View file

Before

Width:  |  Height:  |  Size: 205 B

After

Width:  |  Height:  |  Size: 205 B

View file

Before

Width:  |  Height:  |  Size: 286 B

After

Width:  |  Height:  |  Size: 286 B

View file

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

Before

Width:  |  Height:  |  Size: 184 B

After

Width:  |  Height:  |  Size: 184 B

View file

Before

Width:  |  Height:  |  Size: 182 B

After

Width:  |  Height:  |  Size: 182 B

View file

Before

Width:  |  Height:  |  Size: 440 B

After

Width:  |  Height:  |  Size: 440 B

View file

Before

Width:  |  Height:  |  Size: 176 B

After

Width:  |  Height:  |  Size: 176 B

View file

Before

Width:  |  Height:  |  Size: 690 B

After

Width:  |  Height:  |  Size: 690 B

View file

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

View file

Before

Width:  |  Height:  |  Size: 476 B

After

Width:  |  Height:  |  Size: 476 B

View file

Before

Width:  |  Height:  |  Size: 817 B

After

Width:  |  Height:  |  Size: 817 B

View file

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

Before

Width:  |  Height:  |  Size: 538 B

After

Width:  |  Height:  |  Size: 538 B

View file

Before

Width:  |  Height:  |  Size: 239 B

After

Width:  |  Height:  |  Size: 239 B

View file

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

View file

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

Before

Width:  |  Height:  |  Size: 398 B

After

Width:  |  Height:  |  Size: 398 B

View file

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

Before

Width:  |  Height:  |  Size: 175 B

After

Width:  |  Height:  |  Size: 175 B

View file

Before

Width:  |  Height:  |  Size: 275 B

After

Width:  |  Height:  |  Size: 275 B

View file

Before

Width:  |  Height:  |  Size: 234 B

After

Width:  |  Height:  |  Size: 234 B

View file

Before

Width:  |  Height:  |  Size: 258 B

After

Width:  |  Height:  |  Size: 258 B

View file

Before

Width:  |  Height:  |  Size: 743 B

After

Width:  |  Height:  |  Size: 743 B

View file

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

Some files were not shown because too many files have changed in this diff Show more