Skip to content

Commit

Permalink
💄 Updated icons library
Browse files Browse the repository at this point in the history
Switched from "Icon Theme by Deleket" to Tabler Icons
  • Loading branch information
AnotherFoxGuy committed Aug 13, 2024
1 parent 8338d00 commit 11280b1
Show file tree
Hide file tree
Showing 169 changed files with 206 additions and 280 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,5 @@ CMakeLists.txt.user*
test-pr
_build/
CMakeUserPresets.json
.flatpak-builder
.flatpak-builder
rsrc/resources_autogenerated.qrc
25 changes: 21 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ if (${CMAKE_VERSION} VERSION_GREATER "3.14")
cmake_policy(SET CMP0087 NEW)
endif ()
set(CMAKE_MODULE_PATH "${CMAKE_BINARY_DIR}" ${CMAKE_MODULE_PATH})

include(FeatureSummary)
include(FetchContent)

# Setup paths
SET(RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/bin/")
Expand All @@ -24,6 +26,18 @@ set(CMAKE_AUTORCC ON)
set(CMAKE_AUTOUIC ON)
set(CMAKE_AUTOUIC_SEARCH_PATHS "${CMAKE_SOURCE_DIR}/ui")

# set(CMAKE_UNITY_BUILD ON)

FetchContent_Declare(
tabler_icons
URL https://github.com/tabler/tabler-icons/releases/download/v3.12.0/tabler-icons-3.12.0.zip
URL_HASH MD5=adf7f0af5e74fa8116c3f37f78ed205b
DOWNLOAD_EXTRACT_TIMESTAMP ON
)
FetchContent_MakeAvailable(tabler_icons)

include(cmake/resources.cmake)

find_package(Qt6 COMPONENTS Core Gui WebEngineCore WebEngineWidgets Core5Compat REQUIRED)
find_package(Qt6Keychain REQUIRED)

Expand Down Expand Up @@ -82,7 +96,9 @@ set(HEADERS
src/WorkspaceCommon.h)

set(RESOURCES
rsrc/resources.qrc)
rsrc/resources.qrc
rsrc/resources_autogenerated.qrc
)

set(TRANSLATIONS
intl/en_US.ts
Expand Down Expand Up @@ -182,7 +198,7 @@ if (WIN32)
endif ()

add_custom_target(
copy_dll
windeployqt
COMMAND ${QT_BIN_DIR}/windeployqt.exe $<TARGET_FILE:${PROJECT_NAME}> --release --no-compiler-runtime --no-opengl-sw
WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
)
Expand All @@ -197,8 +213,9 @@ if (WIN32)

FetchContent_Declare(
fossil
URL https://fossil-scm.org/home/uv/fossil-w64-2.22.zip
URL_MD5 08795c21fb2afd172ecec7fce6de8f43
URL https://fossil-scm.org/home/uv/fossil-w64-2.23.zip
DOWNLOAD_EXTRACT_TIMESTAMP TRUE
URL_MD5 043e72168635ca2a967e7c0b7967d521
)
FetchContent_MakeAvailable(fossil)

Expand Down
21 changes: 21 additions & 0 deletions cmake/resources.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
set(RES_DIR "${tabler_icons_SOURCE_DIR}/png")
file(GLOB_RECURSE FILLED_ICONS LIST_DIRECTORIES false "${RES_DIR}/filled/*")
file(GLOB_RECURSE OUTLINE_ICONS LIST_DIRECTORIES false "${RES_DIR}/outline/*")

###############################
# Generate resources_autogenerated.qrc
###############################
message(STATUS "Generating resources_autogenerated.qrc")

foreach (_file ${FILLED_ICONS})
cmake_path(GET _file STEM FILE_NAME)
list(APPEND RES_RESOURCES_CONTENT " <file alias=\"${FILE_NAME}-f\">${_file}</file>")
endforeach ()

foreach (_file ${OUTLINE_ICONS})
cmake_path(GET _file STEM FILE_NAME)
list(APPEND RES_RESOURCES_CONTENT " <file alias=\"${FILE_NAME}\">${_file}</file>")
endforeach ()

list(JOIN RES_RESOURCES_CONTENT "\n" RES_RESOURCES_CONTENT)
configure_file(${CMAKE_CURRENT_LIST_DIR}/resources_autogenerated.qrc.in ${CMAKE_SOURCE_DIR}/rsrc/resources_autogenerated.qrc @ONLY)
9 changes: 9 additions & 0 deletions cmake/resources_autogenerated.qrc.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<!--
WARNING! This file is autogenerated by cmake
WARNING! All changes made in this file will be lost!
-->
<RCC>
<qresource prefix="/icons">
@RES_RESOURCES_CONTENT@
</qresource>
</RCC>
27 changes: 25 additions & 2 deletions rsrc/docs/Licenses.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
Icon Theme by Deleket - Jojo Mendoza
Available under the CC Attribution Noncommercial No Derivative 3.0 License
Tabler Icons
https://github.com/tabler/tabler-icons

MIT License

Copyright (c) 2020-2024 Paweł Kuna

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

---------------------------------------

QtKeychain
Expand Down
Binary file removed rsrc/icons/Address Book-01.png
Binary file not shown.
Binary file removed rsrc/icons/Adobe Illustrator CS3 Document-01.png
Binary file not shown.
Binary file removed rsrc/icons/Adobe PDF Document-01.png
Binary file not shown.
Binary file removed rsrc/icons/Adobe Photoshop CS3 Document-01.png
Binary file not shown.
Binary file removed rsrc/icons/Battery-01.png
Binary file not shown.
Binary file removed rsrc/icons/Binoculars-01.png
Binary file not shown.
Binary file removed rsrc/icons/Book-01.png
Binary file not shown.
Binary file removed rsrc/icons/Briefcase-01.png
Binary file not shown.
Binary file removed rsrc/icons/Button Add-01.png
Binary file not shown.
Binary file removed rsrc/icons/Button Blank Blue-01.png
Binary file not shown.
Binary file removed rsrc/icons/Button Blank Gray-01.png
Binary file not shown.
Binary file removed rsrc/icons/Button Blank Green-01.png
Binary file not shown.
Binary file removed rsrc/icons/Button Blank Red-01.png
Binary file not shown.
Binary file removed rsrc/icons/Button Blank Yellow-01.png
Binary file not shown.
Binary file removed rsrc/icons/Button Cancel-01.png
Binary file not shown.
Binary file removed rsrc/icons/Button Close-01.png
Binary file not shown.
Binary file removed rsrc/icons/Button Delete-01.png
Binary file not shown.
Binary file removed rsrc/icons/Button Download-01.png
Binary file not shown.
Binary file removed rsrc/icons/Button Favorite-01.png
Binary file not shown.
Binary file removed rsrc/icons/Button Forward-01.png
Binary file not shown.
Binary file removed rsrc/icons/Button Help-01.png
Binary file not shown.
Binary file removed rsrc/icons/Button Info-01.png
Binary file not shown.
Binary file removed rsrc/icons/Button Log Off-01.png
Binary file not shown.
Binary file removed rsrc/icons/Button Next-01.png
Binary file not shown.
Binary file removed rsrc/icons/Button Pause-01.png
Binary file not shown.
Binary file removed rsrc/icons/Button Play-01.png
Diff not rendered.
Binary file removed rsrc/icons/Button Previous-01.png
Diff not rendered.
Binary file removed rsrc/icons/Button Refresh-01.png
Diff not rendered.
Binary file removed rsrc/icons/Button Reload-01.png
Diff not rendered.
Binary file removed rsrc/icons/Button Reminder-01.png
Diff not rendered.
Binary file removed rsrc/icons/Button Rewind-01.png
Diff not rendered.
Binary file removed rsrc/icons/Button Talk Balloon-01.png
Diff not rendered.
Binary file removed rsrc/icons/Button Turn Off-01.png
Diff not rendered.
Binary file removed rsrc/icons/Button Turn On-01.png
Diff not rendered.
Binary file removed rsrc/icons/Button Upload-01.png
Diff not rendered.
Binary file removed rsrc/icons/Button Warning-01.png
Diff not rendered.
Binary file removed rsrc/icons/Calculator-01.png
Diff not rendered.
Binary file removed rsrc/icons/Calendar Blue-01.png
Diff not rendered.
Binary file removed rsrc/icons/Calendar Green-01.png
Diff not rendered.
Binary file removed rsrc/icons/Calendar Red-01.png
Diff not rendered.
Binary file removed rsrc/icons/Clipboard Paste-01.png
Diff not rendered.
Binary file removed rsrc/icons/Clipboard-01.png
Diff not rendered.
Binary file removed rsrc/icons/Clock-01.png
Diff not rendered.
Binary file removed rsrc/icons/Coin-01.png
Diff not rendered.
Binary file removed rsrc/icons/Compressed File RAR-01.png
Diff not rendered.
Binary file removed rsrc/icons/Compressed File SIT-01.png
Diff not rendered.
Binary file removed rsrc/icons/Compressed File Zip-01.png
Diff not rendered.
Binary file removed rsrc/icons/Computer Monitor-01.png
Diff not rendered.
Binary file removed rsrc/icons/Computer Network-01.png
Diff not rendered.
Binary file removed rsrc/icons/Document Attach-01.png
Diff not rendered.
Binary file removed rsrc/icons/Document Blank-01.png
Diff not rendered.
Binary file removed rsrc/icons/Document Chart-01.png
Diff not rendered.
Binary file removed rsrc/icons/Document Copy-01.png
Diff not rendered.
Binary file removed rsrc/icons/Document Flow Chart-01.png
Diff not rendered.
Binary file removed rsrc/icons/Document Gant Chart-01.png
Diff not rendered.
Binary file removed rsrc/icons/Document Help-01.png
Diff not rendered.
Binary file removed rsrc/icons/Document Line Chart-01.png
Diff not rendered.
Binary file removed rsrc/icons/Document Microsoft Excel-01.png
Diff not rendered.
Binary file removed rsrc/icons/Document Microsoft PowerPoint-01.png
Diff not rendered.
Binary file removed rsrc/icons/Document Microsoft Word-01.png
Diff not rendered.
Binary file removed rsrc/icons/Document Organization Chart-01.png
Diff not rendered.
Binary file removed rsrc/icons/Document Preview-01.png
Diff not rendered.
Binary file removed rsrc/icons/Document Text-01.png
Diff not rendered.
Binary file removed rsrc/icons/Document-01.png
Diff not rendered.
Binary file removed rsrc/icons/Document-Revert-icon.png
Diff not rendered.
Binary file removed rsrc/icons/Edit Document-01.png
Diff not rendered.
Binary file removed rsrc/icons/Email Attachment-01.png
Diff not rendered.
Binary file removed rsrc/icons/Email Delete-01.png
Diff not rendered.
Binary file removed rsrc/icons/Email Download-01.png
Diff not rendered.
Binary file removed rsrc/icons/Email Forward-01.png
Diff not rendered.
Binary file removed rsrc/icons/Email Inbox-01.png
Diff not rendered.
Binary file removed rsrc/icons/Email Reply-01.png
Diff not rendered.
Binary file removed rsrc/icons/Email-01.png
Diff not rendered.
Binary file removed rsrc/icons/File Audio AIFF-01.png
Diff not rendered.
Binary file removed rsrc/icons/File Audio MP3-01.png
Diff not rendered.
Binary file removed rsrc/icons/File Audio WAV-01.png
Diff not rendered.
Binary file removed rsrc/icons/File Audio WMA-01.png
Diff not rendered.
Binary file removed rsrc/icons/File Audio-01.png
Diff not rendered.
Binary file removed rsrc/icons/File Delete-01.png
Diff not rendered.
Binary file removed rsrc/icons/File History-01.png
Diff not rendered.
Binary file removed rsrc/icons/File New-01.png
Diff not rendered.
Binary file removed rsrc/icons/File Open-01.png
Diff not rendered.
Binary file removed rsrc/icons/File Refresh-01.png
Diff not rendered.
Binary file removed rsrc/icons/File Video 3GP-01.png
Diff not rendered.
Binary file removed rsrc/icons/File Video AVI-01.png
Diff not rendered.
Binary file removed rsrc/icons/File Video MOV-01.png
Diff not rendered.
Binary file removed rsrc/icons/File Video MPEG-01.png
Diff not rendered.
Binary file removed rsrc/icons/File Video WMV-01.png
Diff not rendered.
Binary file removed rsrc/icons/File Video-01.png
Diff not rendered.
Binary file removed rsrc/icons/Folder Add-01.png
Diff not rendered.
Binary file removed rsrc/icons/Folder Compressed-01.png
Diff not rendered.
Binary file removed rsrc/icons/Folder Delete-01.png
Diff not rendered.
Binary file removed rsrc/icons/Folder Explorer-01.png
Diff not rendered.
Binary file removed rsrc/icons/Folder Generic Blue-01.png
Diff not rendered.
Binary file removed rsrc/icons/Folder Generic Green-01.png
Diff not rendered.
Binary file removed rsrc/icons/Folder Generic Red-01.png
Diff not rendered.
Binary file removed rsrc/icons/Folder Generic Silver-01.png
Diff not rendered.
Binary file removed rsrc/icons/Folder Open-01.png
Diff not rendered.
Binary file removed rsrc/icons/Folder RAR-01.png
Diff not rendered.
Binary file removed rsrc/icons/Folder Refresh-01.png
Diff not rendered.
Binary file removed rsrc/icons/Folder-01.png
Diff not rendered.
Binary file removed rsrc/icons/Games-01.png
Diff not rendered.
Binary file removed rsrc/icons/Gear-01.png
Diff not rendered.
Binary file removed rsrc/icons/Highlighter Blue-01.png
Diff not rendered.
Binary file removed rsrc/icons/Highlighter Green-01.png
Diff not rendered.
Binary file removed rsrc/icons/Highlighter Yellow-01.png
Diff not rendered.
3 changes: 0 additions & 3 deletions rsrc/icons/IconCredits.txt

This file was deleted.

Binary file removed rsrc/icons/Image BMP-01.png
Diff not rendered.
Binary file removed rsrc/icons/Image GIF-01.png
Diff not rendered.
Binary file removed rsrc/icons/Image JPEG-01.png
Diff not rendered.
Binary file removed rsrc/icons/Image PNG-01.png
Diff not rendered.
Binary file removed rsrc/icons/Image TIFF-01.png
Diff not rendered.
Binary file removed rsrc/icons/Lock Lock-01.png
Diff not rendered.
Binary file removed rsrc/icons/Lock Unlock-01.png
Diff not rendered.
Binary file removed rsrc/icons/My Documents-01.png
Diff not rendered.
Binary file removed rsrc/icons/My Ebooks-01.png
Diff not rendered.
Binary file removed rsrc/icons/My Music-01.png
Diff not rendered.
Binary file removed rsrc/icons/My Pictures.png
Diff not rendered.
Binary file removed rsrc/icons/My Videos-01.png
Diff not rendered.
Binary file removed rsrc/icons/My Websites-01.png
Diff not rendered.
Binary file removed rsrc/icons/Network Firewall-01.png
Diff not rendered.
Binary file removed rsrc/icons/Network MAC-01.png
Diff not rendered.
Binary file removed rsrc/icons/Network PC-01.png
Diff not rendered.
Binary file removed rsrc/icons/Network Refresh-01.png
Diff not rendered.
Binary file removed rsrc/icons/Pen Blue-01.png
Diff not rendered.
Binary file removed rsrc/icons/Pen Green-01.png
Diff not rendered.
Binary file removed rsrc/icons/Pen Red-01.png
Diff not rendered.
Binary file removed rsrc/icons/Save-01.png
Diff not rendered.
Binary file removed rsrc/icons/Text Edit.png
Diff not rendered.
Binary file removed rsrc/icons/USB-01.png
Diff not rendered.
Binary file removed rsrc/icons/User Administrator Blue-01.png
Diff not rendered.
Binary file removed rsrc/icons/User Administrator Green-01.png
Diff not rendered.
Binary file removed rsrc/icons/User Administrator Red-01.png
Diff not rendered.
Binary file removed rsrc/icons/User Chat-01.png
Diff not rendered.
Binary file removed rsrc/icons/User Clients-01.png
Diff not rendered.
Binary file removed rsrc/icons/User Coat Blue-01.png
Diff not rendered.
Binary file removed rsrc/icons/User Coat Green-01.png
Diff not rendered.
Binary file removed rsrc/icons/User Coat Red-01.png
Diff not rendered.
Binary file removed rsrc/icons/User Executive Blue-01.png
Diff not rendered.
Binary file removed rsrc/icons/User Executive Green-01.png
Diff not rendered.
Binary file removed rsrc/icons/User Executive Red-01.png
Diff not rendered.
Binary file removed rsrc/icons/User Group-01.png
Diff not rendered.
Binary file removed rsrc/icons/User Preppy Blue-01.png
Diff not rendered.
Binary file removed rsrc/icons/User Preppy Green-01.png
Diff not rendered.
Binary file removed rsrc/icons/User Preppy Red-01.png
Diff not rendered.
Binary file removed rsrc/icons/Web HTML-01.png
Diff not rendered.
Binary file removed rsrc/icons/Web XML-01.png
Diff not rendered.
Binary file removed rsrc/icons/Window Refresh-01.png
Diff not rendered.
Binary file removed rsrc/icons/Window-01.png
Diff not rendered.
Binary file removed rsrc/icons/Windows Cascade-01.png
Diff not rendered.
Binary file removed rsrc/icons/Windows-01.png
Diff not rendered.
Binary file removed rsrc/icons/Zoom In-01.png
Diff not rendered.
Binary file removed rsrc/icons/Zoom Out-01.png
Diff not rendered.
Binary file removed rsrc/icons/Zoom-01.png
Diff not rendered.
Binary file removed rsrc/icons/diesel.icns
Binary file not shown.
Binary file removed rsrc/icons/diesel.ico
Binary file not shown.
Binary file removed rsrc/icons/diesel.png
Diff not rendered.
158 changes: 0 additions & 158 deletions rsrc/resources.qrc
Original file line number Diff line number Diff line change
@@ -1,162 +1,4 @@
<RCC>
<qresource prefix="/icons">
<file>icons/Address Book-01.png</file>
<file>icons/Adobe Illustrator CS3 Document-01.png</file>
<file>icons/Adobe PDF Document-01.png</file>
<file>icons/Adobe Photoshop CS3 Document-01.png</file>
<file alias="icon-application">icons/Battery-01.png</file>
<file>icons/Binoculars-01.png</file>
<file alias="icon-item-tag">icons/Book-01.png</file>
<file>icons/Briefcase-01.png</file>
<file alias="icon-item-added">icons/Button Add-01.png</file>
<file>icons/Button Blank Blue-01.png</file>
<file alias="icon-item-unknown">icons/Button Blank Gray-01.png</file>
<file alias="icon-item-unchanged">icons/Button Blank Green-01.png</file>
<file alias="icon-item-conflicted">icons/Button Blank Red-01.png</file>
<file alias="icon-item-edited">icons/Button Blank Yellow-01.png</file>
<file>icons/Button Cancel-01.png</file>
<file alias="icon-item-deleted">icons/Button Close-01.png</file>
<file alias="icon-action-tag-delete">icons/Button Close-01.png</file>
<file alias="icon-action-stop">icons/Button Close-01.png</file>
<file>icons/Button Delete-01.png</file>
<file alias="icon-action-pull">icons/Button Download-01.png</file>
<file>icons/Button Favorite-01.png</file>
<file>icons/Button Forward-01.png</file>
<file alias="icon-item-missing">icons/Button Help-01.png</file>
<file>icons/Button Info-01.png</file>
<file>icons/Button Log Off-01.png</file>
<file alias="icon-action-next">icons/Button Next-01.png</file>
<file>icons/Button Pause-01.png</file>
<file alias="icon-action-update">icons/Button Play-01.png</file>
<file alias="icon-action-previous">icons/Button Previous-01.png</file>
<file alias="icon-action-refresh">icons/Button Refresh-01.png</file>
<file alias="icon-action-undo">icons/Button Reload-01.png</file>
<file alias="icon-item-renamed">icons/Button Reload-01.png</file>
<file>icons/Button Reminder-01.png</file>
<file alias="icon-action-revert">icons/Button Rewind-01.png</file>
<file>icons/Button Talk Balloon-01.png</file>
<file alias="icon-action-quit">icons/Button Turn Off-01.png</file>
<file>icons/Button Turn On-01.png</file>
<file alias="icon-action-push">icons/Button Upload-01.png</file>
<file>icons/Button Warning-01.png</file>
<file>icons/Calculator-01.png</file>
<file>icons/Calendar Blue-01.png</file>
<file>icons/Calendar Green-01.png</file>
<file>icons/Calendar Red-01.png</file>
<file>icons/Clipboard-01.png</file>
<file>icons/Clipboard Paste-01.png</file>
<file alias="icon-action-timeline">icons/Clock-01.png</file>
<file>icons/Coin-01.png</file>
<file>icons/Compressed File RAR-01.png</file>
<file>icons/Compressed File SIT-01.png</file>
<file>icons/Compressed File Zip-01.png</file>
<file>icons/Computer Monitor-01.png</file>
<file>icons/Computer Network-01.png</file>
<file alias="icon-item-file">icons/Document-01.png</file>
<file>icons/Document Attach-01.png</file>
<file alias="icon-action-repo-new">icons/Document Blank-01.png</file>
<file>icons/Document Chart-01.png</file>
<file alias="icon-item-diff">icons/Document Copy-01.png</file>
<file alias="icon-action-merge">icons/Document Flow Chart-01.png</file>
<file>icons/Document Gant Chart-01.png</file>
<file>icons/Document Help-01.png</file>
<file>icons/Document Line Chart-01.png</file>
<file>icons/Document Microsoft Excel-01.png</file>
<file>icons/Document Microsoft PowerPoint-01.png</file>
<file>icons/Document Microsoft Word-01.png</file>
<file alias="icon-item-branch">icons/Document Organization Chart-01.png</file>
<file>icons/Document Preview-01.png</file>
<file alias="icon-item-revert">icons/Document-Revert-icon.png</file>
<file>icons/Document Text-01.png</file>
<file>icons/Edit Document-01.png</file>
<file>icons/Email-01.png</file>
<file>icons/Email Attachment-01.png</file>
<file>icons/Email Delete-01.png</file>
<file>icons/Email Download-01.png</file>
<file>icons/Email Forward-01.png</file>
<file>icons/Email Inbox-01.png</file>
<file>icons/Email Reply-01.png</file>
<file>icons/File Audio-01.png</file>
<file>icons/File Audio AIFF-01.png</file>
<file>icons/File Audio MP3-01.png</file>
<file>icons/File Audio WAV-01.png</file>
<file>icons/File Audio WMA-01.png</file>
<file alias="icon-item-delete">icons/File Delete-01.png</file>
<file alias="icon-item-history">icons/File History-01.png</file>
<file alias="icon-item-add">icons/File New-01.png</file>
<file alias="icon-item-rename">icons/File Open-01.png</file>
<file>icons/File Video 3GP-01.png</file>
<file>icons/File Video-01.png</file>
<file>icons/File Video AVI-01.png</file>
<file>icons/File Video MOV-01.png</file>
<file>icons/File Video MPEG-01.png</file>
<file>icons/File Video WMV-01.png</file>
<file alias="icon-item-folder">icons/Folder-01.png</file>
<file alias="icon-action-stash-new">icons/Folder Add-01.png</file>
<file alias="icon-action-stash-apply">icons/Folder Compressed-01.png</file>
<file alias="icon-action-stash-delete">icons/Folder Delete-01.png</file>
<file alias="icon-action-stash-diff">icons/Folder Explorer-01.png</file>
<file alias="icon-action-folder-explore">icons/Folder Explorer-01.png</file>
<file>icons/Folder Generic Blue-01.png</file>
<file alias="icon-item-folder-unchanged">icons/Folder Generic Green-01.png</file>
<file alias="icon-item-folder-modified">icons/Folder Generic Red-01.png</file>
<file alias="icon-item-folder-unknown">icons/Folder Generic Silver-01.png</file>
<file alias="icon-action-folder-rename">icons/Folder Open-01.png</file>
<file>icons/Folder RAR-01.png</file>
<file>icons/Games-01.png</file>
<file alias="icon-action-settings">icons/Gear-01.png</file>
<file>icons/Highlighter Blue-01.png</file>
<file>icons/Highlighter Green-01.png</file>
<file alias="icon-action-tag-new">icons/Highlighter Yellow-01.png</file>
<file>icons/Image BMP-01.png</file>
<file>icons/Image GIF-01.png</file>
<file>icons/Image JPEG-01.png</file>
<file>icons/Image PNG-01.png</file>
<file>icons/Image TIFF-01.png</file>
<file>icons/Lock Lock-01.png</file>
<file>icons/Lock Unlock-01.png</file>
<file alias="icon-action-repo-open">icons/My Documents-01.png</file>
<file>icons/My Ebooks-01.png</file>
<file>icons/My Music-01.png</file>
<file>icons/My Pictures.png</file>
<file>icons/My Videos-01.png</file>
<file alias="icon-action-repo-clone">icons/My Websites-01.png</file>
<file>icons/Network Firewall-01.png</file>
<file alias="icon-webview">icons/Network MAC-01.png</file>
<file alias="icon-item-remote">icons/Network PC-01.png</file>
<file>icons/Network Refresh-01.png</file>
<file>icons/Pen Blue-01.png</file>
<file>icons/Pen Green-01.png</file>
<file>icons/Pen Red-01.png</file>
<file alias="icon-action-commit">icons/Save-01.png</file>
<file alias="icon-clear-log">icons/Text Edit.png</file>
<file>icons/USB-01.png</file>
<file>icons/User Administrator Blue-01.png</file>
<file>icons/User Administrator Green-01.png</file>
<file>icons/User Administrator Red-01.png</file>
<file>icons/User Chat-01.png</file>
<file>icons/User Clients-01.png</file>
<file>icons/User Coat Blue-01.png</file>
<file>icons/User Coat Green-01.png</file>
<file>icons/User Coat Red-01.png</file>
<file>icons/User Executive Blue-01.png</file>
<file>icons/User Executive Green-01.png</file>
<file>icons/User Executive Red-01.png</file>
<file>icons/User Group-01.png</file>
<file>icons/User Preppy Blue-01.png</file>
<file>icons/User Preppy Green-01.png</file>
<file>icons/User Preppy Red-01.png</file>
<file>icons/Web HTML-01.png</file>
<file>icons/Web XML-01.png</file>
<file>icons/Window-01.png</file>
<file>icons/Window Refresh-01.png</file>
<file>icons/Windows-01.png</file>
<file>icons/Windows Cascade-01.png</file>
<file>icons/Zoom-01.png</file>
<file>icons/Zoom In-01.png</file>
<file>icons/Zoom Out-01.png</file>
<file alias="icon-item-addremove">icons/File Refresh-01.png</file>
</qresource>
<qresource prefix="/docs">
<file>docs/Translators.txt</file>
<file>docs/Licenses.txt</file>
Expand Down
Loading

0 comments on commit 11280b1

Please sign in to comment.