[ui] icons, buttons and colors changes
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
|
||||
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||
|
||||
## [0.9.2] 2020
|
||||
- UI
|
||||
- icons, buttons and colors changes
|
||||
|
||||
## [0.9.1] 2020-04-24
|
||||
### Features
|
||||
- Tray
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
__version__ = '0.9.1'
|
||||
__version__ = '0.9.2'
|
||||
__app_name__ = 'bauh'
|
||||
|
||||
import os
|
||||
|
||||
@@ -43,3 +43,6 @@ class ApplicationContext:
|
||||
|
||||
def is_system_x86_64(self):
|
||||
return self.arch_x86_64
|
||||
|
||||
def get_view_path(self):
|
||||
return self.app_root_dir + '/view'
|
||||
|
||||
@@ -60,6 +60,11 @@ class AppImageManager(SoftwareManager):
|
||||
manager_method='install_file',
|
||||
icon_path=resource.get_path('img/appimage.svg', ROOT_DIR),
|
||||
requires_root=False)]
|
||||
self.custom_app_actions = [CustomSoftwareAction(i18_label_key='appimage.custom_action.manual_update',
|
||||
i18n_status_key='appimage.custom_action.manual_update.status',
|
||||
manager_method='update_file',
|
||||
requires_root=False,
|
||||
icon_path=resource.get_path('img/upgrade.svg', ROOT_DIR))]
|
||||
|
||||
def install_file(self, root_password: str, watcher: ProcessWatcher) -> bool:
|
||||
file_chooser = FileChooserComponent(label=self.i18n['file'].capitalize(), allowed_extensions={'AppImage'})
|
||||
@@ -92,7 +97,7 @@ class AppImageManager(SoftwareManager):
|
||||
else:
|
||||
return False
|
||||
|
||||
appim = AppImage(i18n=self.i18n, imported=True)
|
||||
appim = AppImage(i18n=self.i18n, imported=True, custom_actions=self.custom_app_actions)
|
||||
appim.name = input_name.get_value().strip()
|
||||
appim.local_file_path = file_chooser.file_path
|
||||
appim.version = input_version.get_value()
|
||||
@@ -164,7 +169,7 @@ class AppImageManager(SoftwareManager):
|
||||
found_map = {}
|
||||
idx = 0
|
||||
for l in cursor.fetchall():
|
||||
app = AppImage(*l, i18n=self.i18n)
|
||||
app = AppImage(*l, i18n=self.i18n, custom_actions=self.custom_app_actions)
|
||||
res.new.append(app)
|
||||
found_map[self._gen_app_key(app)] = {'app': app, 'idx': idx}
|
||||
idx += 1
|
||||
@@ -200,7 +205,7 @@ class AppImageManager(SoftwareManager):
|
||||
for path in installed.split('\n'):
|
||||
if path:
|
||||
with open(path) as f:
|
||||
app = AppImage(installed=True, i18n=self.i18n, **json.loads(f.read()))
|
||||
app = AppImage(installed=True, i18n=self.i18n, custom_actions=self.custom_app_actions, **json.loads(f.read()))
|
||||
app.icon_url = app.icon_path
|
||||
|
||||
res.installed.append(app)
|
||||
@@ -576,7 +581,7 @@ class AppImageManager(SoftwareManager):
|
||||
cursor.execute(query.FIND_APPS_BY_NAME_FULL.format(','.join(["'{}'".format(s) for s in sugs_map.keys()])))
|
||||
|
||||
for t in cursor.fetchall():
|
||||
app = AppImage(*t, i18n=self.i18n)
|
||||
app = AppImage(*t, i18n=self.i18n, custom_actions=self.custom_app_actions)
|
||||
res.append(PackageSuggestion(app, sugs_map[app.name.lower()]))
|
||||
self.logger.info("Mapped {} suggestions".format(len(res)))
|
||||
except:
|
||||
|
||||
@@ -8,12 +8,6 @@ from bauh.view.util.translation import I18n
|
||||
CACHED_ATTRS = {'name', 'description', 'version', 'url_download', 'author', 'license', 'source',
|
||||
'icon_path', 'github', 'categories', 'imported', 'install_dir'}
|
||||
|
||||
CUSTOM_ACTIONS = [CustomSoftwareAction(i18_label_key='appimage.custom_action.manual_update',
|
||||
i18n_status_key='appimage.custom_action.manual_update.status',
|
||||
manager_method='update_file',
|
||||
requires_root=False,
|
||||
icon_path=resource.get_path('img/refresh.svg', ROOT_DIR))]
|
||||
|
||||
|
||||
class AppImage(SoftwarePackage):
|
||||
|
||||
@@ -21,7 +15,7 @@ class AppImage(SoftwarePackage):
|
||||
url_download: str = None, url_icon: str = None, url_screenshot: str = None, license: str = None, author: str = None,
|
||||
categories=None, icon_path: str = None, installed: bool = False,
|
||||
url_download_latest_version: str = None, local_file_path: str = None, imported: bool = False,
|
||||
i18n: I18n = None, install_dir: str = None, **kwargs):
|
||||
i18n: I18n = None, install_dir: str = None, custom_actions: List[CustomSoftwareAction] = None, **kwargs):
|
||||
super(AppImage, self).__init__(id=name, name=name, version=version, latest_version=version,
|
||||
icon_url=url_icon, license=license, description=description,
|
||||
installed=installed)
|
||||
@@ -37,6 +31,7 @@ class AppImage(SoftwarePackage):
|
||||
self.imported = imported
|
||||
self.i18n = i18n
|
||||
self.install_dir = install_dir
|
||||
self.custom_actions = custom_actions
|
||||
|
||||
def __repr__(self):
|
||||
return "{} (name={}, github={})".format(self.__class__.__name__, self.name, self.github)
|
||||
@@ -108,7 +103,7 @@ class AppImage(SoftwarePackage):
|
||||
|
||||
def get_custom_supported_actions(self) -> List[CustomSoftwareAction]:
|
||||
if self.imported:
|
||||
return CUSTOM_ACTIONS
|
||||
return self.custom_actions
|
||||
|
||||
def supports_backup(self) -> bool:
|
||||
return False
|
||||
|
||||
@@ -1,146 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
id="Capa_1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
width="48"
|
||||
height="48"
|
||||
viewBox="0 0 47.999999 47.999999"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="refresh_2.svg"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata
|
||||
id="metadata45"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs43"><linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient540"><stop
|
||||
style="stop-color:#0088aa;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop536" /><stop
|
||||
style="stop-color:#0088aa;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop538" /></linearGradient><linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient540"
|
||||
id="linearGradient542"
|
||||
x1="-130.74721"
|
||||
y1="-214.80638"
|
||||
x2="-556.49438"
|
||||
y2="110.01643"
|
||||
gradientUnits="userSpaceOnUse" /></defs><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="703"
|
||||
id="namedview41"
|
||||
showgrid="false"
|
||||
showborder="false"
|
||||
inkscape:zoom="1.9374833"
|
||||
inkscape:cx="165.58246"
|
||||
inkscape:cy="-10.288149"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="260"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Capa_1"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0" />
|
||||
<g
|
||||
id="g8"
|
||||
transform="matrix(0.10547014,0,0,0.0985161,-1.6940777,0)"
|
||||
style="fill:url(#linearGradient542);fill-opacity:1">
|
||||
<g
|
||||
id="g6"
|
||||
style="fill:url(#linearGradient542);fill-opacity:1">
|
||||
<path
|
||||
d="m 55.323,203.641 c 15.664,0 29.813,-9.405 35.872,-23.854 25.017,-59.604 83.842,-101.61 152.42,-101.61 37.797,0 72.449,12.955 100.23,34.442 l -21.775,3.371 c -7.438,1.153 -13.224,7.054 -14.232,14.512 -1.01,7.454 3.008,14.686 9.867,17.768 l 119.746,53.872 c 5.249,2.357 11.33,1.904 16.168,-1.205 4.83,-3.114 7.764,-8.458 7.796,-14.208 l 0.621,-131.943 c 0.042,-7.506 -4.851,-14.144 -12.024,-16.332 -7.185,-2.188 -14.947,0.589 -19.104,6.837 L 414.403,70.096 C 370.398,26.778 310.1,0 243.615,0 142.806,0 56.133,61.562 19.167,149.06 c -5.134,12.128 -3.84,26.015 3.429,36.987 7.269,10.976 19.556,17.594 32.727,17.594 z"
|
||||
id="path2"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:url(#linearGradient542);fill-opacity:1" />
|
||||
<path
|
||||
d="m 464.635,301.184 c -7.27,-10.977 -19.558,-17.594 -32.728,-17.594 -15.664,0 -29.813,9.405 -35.872,23.854 -25.018,59.604 -83.843,101.61 -152.42,101.61 -37.798,0 -72.45,-12.955 -100.232,-34.442 l 21.776,-3.369 c 7.437,-1.153 13.223,-7.055 14.233,-14.514 1.009,-7.453 -3.008,-14.686 -9.867,-17.768 L 49.779,285.089 c -5.25,-2.356 -11.33,-1.905 -16.169,1.205 -4.829,3.114 -7.764,8.458 -7.795,14.207 l -0.622,131.943 c -0.042,7.506 4.85,14.144 12.024,16.332 7.185,2.188 14.948,-0.59 19.104,-6.839 l 16.505,-24.805 c 44.004,43.32 104.303,70.098 170.788,70.098 100.811,0 187.481,-61.561 224.446,-149.059 5.137,-12.128 3.843,-26.014 -3.425,-36.987 z"
|
||||
id="path4"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:url(#linearGradient542);fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g10"
|
||||
transform="translate(-16.062155,-439.23)">
|
||||
</g>
|
||||
<g
|
||||
id="g12"
|
||||
transform="translate(-16.062155,-439.23)">
|
||||
</g>
|
||||
<g
|
||||
id="g14"
|
||||
transform="translate(-16.062155,-439.23)">
|
||||
</g>
|
||||
<g
|
||||
id="g16"
|
||||
transform="translate(-16.062155,-439.23)">
|
||||
</g>
|
||||
<g
|
||||
id="g18"
|
||||
transform="translate(-16.062155,-439.23)">
|
||||
</g>
|
||||
<g
|
||||
id="g20"
|
||||
transform="translate(-16.062155,-439.23)">
|
||||
</g>
|
||||
<g
|
||||
id="g22"
|
||||
transform="translate(-16.062155,-439.23)">
|
||||
</g>
|
||||
<g
|
||||
id="g24"
|
||||
transform="translate(-16.062155,-439.23)">
|
||||
</g>
|
||||
<g
|
||||
id="g26"
|
||||
transform="translate(-16.062155,-439.23)">
|
||||
</g>
|
||||
<g
|
||||
id="g28"
|
||||
transform="translate(-16.062155,-439.23)">
|
||||
</g>
|
||||
<g
|
||||
id="g30"
|
||||
transform="translate(-16.062155,-439.23)">
|
||||
</g>
|
||||
<g
|
||||
id="g32"
|
||||
transform="translate(-16.062155,-439.23)">
|
||||
</g>
|
||||
<g
|
||||
id="g34"
|
||||
transform="translate(-16.062155,-439.23)">
|
||||
</g>
|
||||
<g
|
||||
id="g36"
|
||||
transform="translate(-16.062155,-439.23)">
|
||||
</g>
|
||||
<g
|
||||
id="g38"
|
||||
transform="translate(-16.062155,-439.23)">
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 4.8 KiB |
76
bauh/gems/appimage/resources/img/upgrade.svg
Normal file
@@ -0,0 +1,76 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
viewBox="0 0 47.810421 48"
|
||||
enable-background="new 0 0 26 26"
|
||||
id="svg8"
|
||||
sodipodi:docname="upgrade.svg"
|
||||
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
|
||||
width="47.810421"
|
||||
height="48">
|
||||
<metadata
|
||||
id="metadata14">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs12" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="739"
|
||||
id="namedview10"
|
||||
showgrid="false"
|
||||
showborder="false"
|
||||
inkscape:zoom="3.2091769"
|
||||
inkscape:cx="-43.249858"
|
||||
inkscape:cy="-0.030460959"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg8"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0" />
|
||||
<g
|
||||
id="g6"
|
||||
transform="matrix(1.7476186,0,0,1.8929335,1.1861681,-0.60813528)"
|
||||
style="fill:none;fill-opacity:1;stroke:#44aa00;stroke-width:1.35746789;stroke-miterlimit:4;stroke-dasharray:none">
|
||||
<path
|
||||
d="m 25,17 h -2 c -0.6,0 -1,0.4 -1,1 v 2.5 C 22,20.8 21.8,21 21.5,21 H 4.5 C 4.2,21 4,20.8 4,20.5 V 18 C 4,17.4 3.6,17 3,17 H 1 c -0.6,0 -1,0.4 -1,1 v 6 c 0,0.6 0.4,1 1,1 h 24 c 0.6,0 1,-0.4 1,-1 v -6 c 0,-0.6 -0.4,-1 -1,-1 z"
|
||||
id="path2"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;fill-opacity:1;stroke:#44aa00;stroke-width:1.35746789;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
<path
|
||||
d="m 12.3,16.7 c 0.2,0.2 0.5,0.3 0.7,0.3 0.2,0 0.5,-0.1 0.7,-0.3 l 6,-6 C 19.9,10.5 20,10.3 20,10 20,9.7 19.9,9.5 19.7,9.3 L 18.3,7.9 C 18.1,7.7 17.9,7.6 17.6,7.6 c -0.3,0 -0.5,0.1 -0.7,0.3 l -1,1 C 15.6,9.2 15,9 15,8.5 V 2 C 15,1.4 14.6,1 14,1 H 12 C 11.4,1 11,1.4 11,2 V 8.6 C 11,9 10.5,9.3 10.1,9 L 9.1,8 C 8.9,7.8 8.7,7.7 8.4,7.7 8.1,7.7 7.9,7.8 7.7,8 L 6.3,9.4 C 6.1,9.6 6,9.8 6,10.1 c 0,0.3 0.1,0.5 0.3,0.7 z"
|
||||
id="path4"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;fill-opacity:1;stroke:#44aa00;stroke-width:1.35746789;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(3.7795276,0,0,3.7795276,669.63626,-482.15866)"
|
||||
id="layer1"
|
||||
inkscape:label="Layer 1" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.0 KiB |
@@ -8,8 +8,9 @@ from bauh.api.abstract.controller import SoftwareManager, SearchResult, Applicat
|
||||
from bauh.api.abstract.disk import DiskCacheLoader
|
||||
from bauh.api.abstract.handler import ProcessWatcher, TaskManager
|
||||
from bauh.api.abstract.model import SoftwarePackage, PackageHistory, PackageUpdate, PackageSuggestion, \
|
||||
SuggestionPriority
|
||||
SuggestionPriority, CustomSoftwareAction
|
||||
from bauh.api.abstract.view import SingleSelectComponent, SelectViewType, InputOption
|
||||
from bauh.commons import resource
|
||||
from bauh.commons.category import CategoriesDownloader
|
||||
from bauh.commons.html import bold
|
||||
from bauh.commons.system import SystemProcess, ProcessHandler, new_root_subprocess
|
||||
@@ -36,6 +37,13 @@ class SnapManager(SoftwareManager):
|
||||
self.categories = {}
|
||||
self.suggestions_cache = context.cache_factory.new()
|
||||
self.info_path = None
|
||||
self.custom_actions = [
|
||||
CustomSoftwareAction(i18n_status_key='snap.action.refresh.status',
|
||||
i18_label_key='snap.action.refresh.label',
|
||||
icon_path=resource.get_path('img/refresh.svg', context.get_view_path()),
|
||||
manager_method='refresh',
|
||||
requires_root=True)
|
||||
]
|
||||
|
||||
def get_info_path(self) -> str:
|
||||
if self.info_path is None:
|
||||
@@ -53,7 +61,8 @@ class SnapManager(SoftwareManager):
|
||||
version=app_json.get('version'),
|
||||
latest_version=app_json.get('version'),
|
||||
description=app_json.get('description', app_json.get('summary')),
|
||||
verified_publisher=app_json.get('developer_validation', '') == 'verified')
|
||||
verified_publisher=app_json.get('developer_validation', '') == 'verified',
|
||||
extra_actions=self.custom_actions)
|
||||
|
||||
if app.publisher and app.publisher.endswith('*'):
|
||||
app.verified_publisher = True
|
||||
|
||||
@@ -4,14 +4,6 @@ from bauh.api.abstract.model import SoftwarePackage, CustomSoftwareAction
|
||||
from bauh.commons import resource
|
||||
from bauh.gems.snap import ROOT_DIR
|
||||
|
||||
EXTRA_INSTALLED_ACTIONS = [
|
||||
CustomSoftwareAction(i18n_status_key='snap.action.refresh.status',
|
||||
i18_label_key='snap.action.refresh.label',
|
||||
icon_path=resource.get_path('img/refresh.svg', ROOT_DIR),
|
||||
manager_method='refresh',
|
||||
requires_root=True)
|
||||
]
|
||||
|
||||
KNOWN_RUNTIME_NAMES = {'snapd', 'snapcraft', 'multipass'}
|
||||
|
||||
|
||||
@@ -19,7 +11,7 @@ class SnapApplication(SoftwarePackage):
|
||||
|
||||
def __init__(self, id: str = None, name: str = None, version: str = None, latest_version: str = None,
|
||||
description: str = None, publisher: str = None, rev: str = None, notes: str = None,
|
||||
confinement: str = None, has_apps_field: bool = None, verified_publisher: bool = False):
|
||||
confinement: str = None, has_apps_field: bool = None, verified_publisher: bool = False, extra_actions: List[CustomSoftwareAction] = None):
|
||||
super(SnapApplication, self).__init__(id=id, name=name, version=version,
|
||||
latest_version=latest_version, description=description)
|
||||
self.publisher = publisher
|
||||
@@ -28,6 +20,7 @@ class SnapApplication(SoftwarePackage):
|
||||
self.confinement = confinement
|
||||
self.has_apps_field = has_apps_field
|
||||
self.verified_publisher = verified_publisher
|
||||
self.extra_actions = extra_actions
|
||||
|
||||
def supports_disk_cache(self):
|
||||
return self.installed
|
||||
@@ -81,7 +74,7 @@ class SnapApplication(SoftwarePackage):
|
||||
|
||||
def get_custom_supported_actions(self) -> List[CustomSoftwareAction]:
|
||||
if self.installed:
|
||||
return EXTRA_INSTALLED_ACTIONS
|
||||
return self.extra_actions
|
||||
|
||||
def supports_backup(self) -> bool:
|
||||
return True
|
||||
|
||||
@@ -1,146 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
id="Capa_1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
width="48"
|
||||
height="48"
|
||||
viewBox="0 0 47.999999 47.999999"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="refresh_2.svg"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata
|
||||
id="metadata45"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs43"><linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient540"><stop
|
||||
style="stop-color:#0088aa;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop536" /><stop
|
||||
style="stop-color:#0088aa;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop538" /></linearGradient><linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient540"
|
||||
id="linearGradient542"
|
||||
x1="-130.74721"
|
||||
y1="-214.80638"
|
||||
x2="-556.49438"
|
||||
y2="110.01643"
|
||||
gradientUnits="userSpaceOnUse" /></defs><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="703"
|
||||
id="namedview41"
|
||||
showgrid="false"
|
||||
showborder="false"
|
||||
inkscape:zoom="1.9374833"
|
||||
inkscape:cx="165.58246"
|
||||
inkscape:cy="-10.288149"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="260"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Capa_1"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0" />
|
||||
<g
|
||||
id="g8"
|
||||
transform="matrix(0.10547014,0,0,0.0985161,-1.6940777,0)"
|
||||
style="fill:url(#linearGradient542);fill-opacity:1">
|
||||
<g
|
||||
id="g6"
|
||||
style="fill:url(#linearGradient542);fill-opacity:1">
|
||||
<path
|
||||
d="m 55.323,203.641 c 15.664,0 29.813,-9.405 35.872,-23.854 25.017,-59.604 83.842,-101.61 152.42,-101.61 37.797,0 72.449,12.955 100.23,34.442 l -21.775,3.371 c -7.438,1.153 -13.224,7.054 -14.232,14.512 -1.01,7.454 3.008,14.686 9.867,17.768 l 119.746,53.872 c 5.249,2.357 11.33,1.904 16.168,-1.205 4.83,-3.114 7.764,-8.458 7.796,-14.208 l 0.621,-131.943 c 0.042,-7.506 -4.851,-14.144 -12.024,-16.332 -7.185,-2.188 -14.947,0.589 -19.104,6.837 L 414.403,70.096 C 370.398,26.778 310.1,0 243.615,0 142.806,0 56.133,61.562 19.167,149.06 c -5.134,12.128 -3.84,26.015 3.429,36.987 7.269,10.976 19.556,17.594 32.727,17.594 z"
|
||||
id="path2"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:url(#linearGradient542);fill-opacity:1" />
|
||||
<path
|
||||
d="m 464.635,301.184 c -7.27,-10.977 -19.558,-17.594 -32.728,-17.594 -15.664,0 -29.813,9.405 -35.872,23.854 -25.018,59.604 -83.843,101.61 -152.42,101.61 -37.798,0 -72.45,-12.955 -100.232,-34.442 l 21.776,-3.369 c 7.437,-1.153 13.223,-7.055 14.233,-14.514 1.009,-7.453 -3.008,-14.686 -9.867,-17.768 L 49.779,285.089 c -5.25,-2.356 -11.33,-1.905 -16.169,1.205 -4.829,3.114 -7.764,8.458 -7.795,14.207 l -0.622,131.943 c -0.042,7.506 4.85,14.144 12.024,16.332 7.185,2.188 14.948,-0.59 19.104,-6.839 l 16.505,-24.805 c 44.004,43.32 104.303,70.098 170.788,70.098 100.811,0 187.481,-61.561 224.446,-149.059 5.137,-12.128 3.843,-26.014 -3.425,-36.987 z"
|
||||
id="path4"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:url(#linearGradient542);fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g10"
|
||||
transform="translate(-16.062155,-439.23)">
|
||||
</g>
|
||||
<g
|
||||
id="g12"
|
||||
transform="translate(-16.062155,-439.23)">
|
||||
</g>
|
||||
<g
|
||||
id="g14"
|
||||
transform="translate(-16.062155,-439.23)">
|
||||
</g>
|
||||
<g
|
||||
id="g16"
|
||||
transform="translate(-16.062155,-439.23)">
|
||||
</g>
|
||||
<g
|
||||
id="g18"
|
||||
transform="translate(-16.062155,-439.23)">
|
||||
</g>
|
||||
<g
|
||||
id="g20"
|
||||
transform="translate(-16.062155,-439.23)">
|
||||
</g>
|
||||
<g
|
||||
id="g22"
|
||||
transform="translate(-16.062155,-439.23)">
|
||||
</g>
|
||||
<g
|
||||
id="g24"
|
||||
transform="translate(-16.062155,-439.23)">
|
||||
</g>
|
||||
<g
|
||||
id="g26"
|
||||
transform="translate(-16.062155,-439.23)">
|
||||
</g>
|
||||
<g
|
||||
id="g28"
|
||||
transform="translate(-16.062155,-439.23)">
|
||||
</g>
|
||||
<g
|
||||
id="g30"
|
||||
transform="translate(-16.062155,-439.23)">
|
||||
</g>
|
||||
<g
|
||||
id="g32"
|
||||
transform="translate(-16.062155,-439.23)">
|
||||
</g>
|
||||
<g
|
||||
id="g34"
|
||||
transform="translate(-16.062155,-439.23)">
|
||||
</g>
|
||||
<g
|
||||
id="g36"
|
||||
transform="translate(-16.062155,-439.23)">
|
||||
</g>
|
||||
<g
|
||||
id="g38"
|
||||
transform="translate(-16.062155,-439.23)">
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 4.8 KiB |
@@ -14,13 +14,12 @@ from bauh.api.abstract.cache import MemoryCache
|
||||
from bauh.api.abstract.model import PackageStatus
|
||||
from bauh.commons.html import strip_html
|
||||
from bauh.view.qt import dialog
|
||||
from bauh.view.qt.colors import DARK_GREEN, GREEN
|
||||
from bauh.view.qt.components import IconButton
|
||||
from bauh.view.qt.view_model import PackageView
|
||||
from bauh.view.util import resource
|
||||
from bauh.view.util.translation import I18n
|
||||
|
||||
INSTALL_BT_STYLE = 'background: {back}; color: white; font-size: 10px; font-weight: bold'
|
||||
|
||||
NAME_MAX_SIZE = 30
|
||||
DESC_MAX_SIZE = 40
|
||||
PUBLISHER_MAX_SIZE = 25
|
||||
@@ -46,7 +45,7 @@ class UpdateToggleButton(QWidget):
|
||||
if clickable:
|
||||
self.bt.clicked.connect(self.change_state)
|
||||
|
||||
self.bt.setStyleSheet('QToolButton { background: #20A435 } ' +
|
||||
self.bt.setStyleSheet('QToolButton { background: ' + GREEN + ' }' +
|
||||
'QToolButton:checked { background: gray } ' +
|
||||
('QToolButton:disabled { background: #d69003 }' if not clickable and not checked else ''))
|
||||
|
||||
@@ -302,7 +301,8 @@ class AppsTable(QTableWidget):
|
||||
def uninstall():
|
||||
self._uninstall_app(pkg)
|
||||
|
||||
item = self._gen_row_button(self.i18n['uninstall'].capitalize(), INSTALL_BT_STYLE.format(back='#ff1a1a'), uninstall)
|
||||
style = 'color: {c}; font-size: 10px; font-weight: bold;'.format(c='#996633')
|
||||
item = self._gen_row_button(self.i18n['uninstall'].capitalize(), style, uninstall)
|
||||
else:
|
||||
item = QLabel()
|
||||
item.setPixmap((QPixmap(resource.get_path('img/checked.svg'))))
|
||||
@@ -312,7 +312,8 @@ class AppsTable(QTableWidget):
|
||||
def install():
|
||||
self._install_app(pkg)
|
||||
|
||||
item = self._gen_row_button(self.i18n['install'].capitalize(), INSTALL_BT_STYLE.format(back='#088A08'), install)
|
||||
style = 'background: {b}; color: white; font-size: 10px; font-weight: bold'.format(b=GREEN)
|
||||
item = self._gen_row_button(self.i18n['install'].capitalize(), style, install)
|
||||
else:
|
||||
item = None
|
||||
|
||||
@@ -349,7 +350,7 @@ class AppsTable(QTableWidget):
|
||||
tooltip = self.i18n['version.unknown']
|
||||
|
||||
if pkg.model.update:
|
||||
label_version.setStyleSheet("color: #20A435; font-weight: bold")
|
||||
label_version.setStyleSheet("color: {}; font-weight: bold".format(DARK_GREEN))
|
||||
tooltip = self.i18n['version.installed_outdated']
|
||||
|
||||
if pkg.model.installed and pkg.model.update and pkg.model.version and pkg.model.latest_version and pkg.model.version != pkg.model.latest_version:
|
||||
@@ -458,34 +459,36 @@ class AppsTable(QTableWidget):
|
||||
def run():
|
||||
self.window.run_app(pkg)
|
||||
|
||||
bt = IconButton(QIcon(resource.get_path('img/app_play.svg')), i18n=self.i18n, action=run, background='#088A08', tooltip=self.i18n['action.run.tooltip'])
|
||||
bt = IconButton(QIcon(resource.get_path('img/app_play.svg')), i18n=self.i18n, action=run, tooltip=self.i18n['action.run.tooltip'])
|
||||
bt.setEnabled(pkg.model.can_be_run())
|
||||
item.addWidget(bt)
|
||||
|
||||
def get_info():
|
||||
self.window.get_app_info(pkg)
|
||||
|
||||
bt = IconButton(QIcon(resource.get_path('img/app_info.svg')), i18n=self.i18n, action=get_info, background='#2E68D3', tooltip=self.i18n['action.info.tooltip'])
|
||||
bt.setEnabled(bool(pkg.model.has_info()))
|
||||
item.addWidget(bt)
|
||||
|
||||
if not pkg.model.installed:
|
||||
def get_screenshots():
|
||||
self.window.get_screenshots(pkg)
|
||||
|
||||
bt = IconButton(QIcon(resource.get_path('img/camera.svg')), i18n=self.i18n, action=get_screenshots, background='#ac00e6', tooltip=self.i18n['action.screenshots.tooltip'])
|
||||
bt.setEnabled(bool(pkg.model.has_screenshots()))
|
||||
item.addWidget(bt)
|
||||
|
||||
def handle_click():
|
||||
self.show_pkg_settings(pkg)
|
||||
|
||||
settings = self.has_any_settings(pkg)
|
||||
if pkg.model.installed:
|
||||
bt = IconButton(QIcon(resource.get_path('img/app_settings.svg')), i18n=self.i18n, action=handle_click, background='#12ABAB', tooltip=self.i18n['action.settings.tooltip'])
|
||||
icon = QIcon(QIcon(resource.get_path('img/custom_actions.svg')).pixmap(12, 12))
|
||||
bt = IconButton(icon, i18n=self.i18n, action=handle_click, tooltip=self.i18n['action.settings.tooltip'])
|
||||
bt.setEnabled(bool(settings))
|
||||
item.addWidget(bt)
|
||||
|
||||
def get_info():
|
||||
self.window.get_app_info(pkg)
|
||||
|
||||
icon = QIcon(QIcon(resource.get_path('img/app_info.svg')).pixmap(14, 14))
|
||||
bt = IconButton(icon, i18n=self.i18n, action=get_info, tooltip=self.i18n['action.info.tooltip'])
|
||||
bt.setEnabled(bool(pkg.model.has_info()))
|
||||
item.addWidget(bt)
|
||||
|
||||
if not pkg.model.installed:
|
||||
def get_screenshots():
|
||||
self.window.get_screenshots(pkg)
|
||||
|
||||
bt = IconButton(QIcon(resource.get_path('img/camera.svg')), i18n=self.i18n, action=get_screenshots, tooltip=self.i18n['action.screenshots.tooltip'])
|
||||
bt.setEnabled(bool(pkg.model.has_screenshots()))
|
||||
item.addWidget(bt)
|
||||
|
||||
self.setCellWidget(pkg.table_index, col, item)
|
||||
|
||||
def change_headers_policy(self, policy: QHeaderView = QHeaderView.ResizeToContents):
|
||||
|
||||
2
bauh/view/qt/colors.py
Normal file
@@ -0,0 +1,2 @@
|
||||
GREEN = '#68A92E'
|
||||
DARK_GREEN = '#5EAA1A'
|
||||
@@ -401,7 +401,7 @@ class IconButton(QWidget):
|
||||
|
||||
if background:
|
||||
style = 'QToolButton { color: white; background: ' + background + '} '
|
||||
style += 'QToolButton:disabled { color: white; background: grey }'
|
||||
style += 'QToolButton:disabled { color: white; background: blue }'
|
||||
self.bt.setStyleSheet(style)
|
||||
|
||||
if tooltip:
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
from bauh.view.qt.colors import GREEN
|
||||
|
||||
OK_BUTTON = """QPushButton { background: green; color: white; font-weight: bold}
|
||||
QPushButton:disabled { background-color: gray; }
|
||||
"""
|
||||
OK_BUTTON = """QPushButton { background: %s; color: white; font-weight: bold}
|
||||
QPushButton:disabled { background-color: gray; }""" % GREEN
|
||||
|
||||
GROUP_BOX = """
|
||||
QGroupBox {
|
||||
|
||||
@@ -13,7 +13,7 @@ from bauh import __app_name__
|
||||
from bauh.api.abstract.context import ApplicationContext
|
||||
from bauh.api.abstract.controller import SoftwareManager
|
||||
from bauh.api.abstract.handler import TaskManager
|
||||
from bauh.view.qt import root
|
||||
from bauh.view.qt import root, styles
|
||||
from bauh.view.qt.components import new_spacer
|
||||
from bauh.view.qt.qt_utils import centralize
|
||||
from bauh.view.qt.thread import AnimateProgress
|
||||
@@ -121,7 +121,7 @@ class PreparePanel(QWidget, TaskManager):
|
||||
self.i18n = i18n
|
||||
self.context = context
|
||||
self.manage_window = manage_window
|
||||
self.setWindowTitle('{} ({})'.format(self.i18n['prepare_panel.title.start'].capitalize(), __app_name__))
|
||||
self.setWindowTitle('{} ({})'.format(__app_name__, self.i18n['prepare_panel.title.start'].lower()))
|
||||
self.setMinimumWidth(screen_size.width() * 0.5)
|
||||
self.setMinimumHeight(screen_size.height() * 0.35)
|
||||
self.setMaximumHeight(screen_size.height() * 0.95)
|
||||
@@ -177,6 +177,7 @@ class PreparePanel(QWidget, TaskManager):
|
||||
|
||||
toolbar.addWidget(new_spacer())
|
||||
self.progress_bar = QProgressBar()
|
||||
self.progress_bar.setStyleSheet(styles.PROGRESS_BAR)
|
||||
self.progress_bar.setMaximumHeight(10 if QApplication.instance().style().objectName().lower() == 'windows' else 4)
|
||||
self.progress_bar.setTextVisible(False)
|
||||
self.progress_bar.setVisible(False)
|
||||
@@ -245,7 +246,7 @@ class PreparePanel(QWidget, TaskManager):
|
||||
lb_status = QLabel(label)
|
||||
lb_status.setMinimumWidth(50)
|
||||
lb_status.setSizePolicy(QSizePolicy.Minimum, QSizePolicy.Preferred)
|
||||
lb_status.setStyleSheet("QLabel { color: blue; font-weight: bold; }")
|
||||
lb_status.setStyleSheet("QLabel { font-weight: bold; }")
|
||||
self.table.setCellWidget(task_row, 1, lb_status)
|
||||
|
||||
lb_sub = QLabel()
|
||||
@@ -256,7 +257,7 @@ class PreparePanel(QWidget, TaskManager):
|
||||
|
||||
lb_progress = QLabel('{0:.2f}'.format(0) + '%')
|
||||
lb_progress.setContentsMargins(10, 0, 10, 0)
|
||||
lb_progress.setStyleSheet("QLabel { color: blue; font-weight: bold; }")
|
||||
lb_progress.setStyleSheet("QLabel { font-weight: bold; }")
|
||||
lb_progress.setSizePolicy(QSizePolicy.Minimum, QSizePolicy.Preferred)
|
||||
|
||||
self.table.setCellWidget(task_row, 3, lb_progress)
|
||||
@@ -288,7 +289,7 @@ class PreparePanel(QWidget, TaskManager):
|
||||
task['lb_sub'].setText('')
|
||||
|
||||
for key in ('lb_prog', 'lb_status'):
|
||||
task[key].setStyleSheet('QLabel { color: green; text-decoration: line-through; }')
|
||||
task[key].setStyleSheet('QLabel { color: #68A92E; text-decoration: line-through; }')
|
||||
|
||||
task['finished'] = True
|
||||
self._resize_columns()
|
||||
|
||||
3
bauh/view/qt/styles.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from bauh.view.qt.colors import GREEN
|
||||
|
||||
PROGRESS_BAR = """QProgressBar::chunk { background-color: %s; }""" % GREEN
|
||||
@@ -20,9 +20,10 @@ from bauh.api.http import HttpClient
|
||||
from bauh.commons import user
|
||||
from bauh.commons.html import bold
|
||||
from bauh.view.core.tray_client import notify_tray
|
||||
from bauh.view.qt import dialog, commons, qt_utils, root
|
||||
from bauh.view.qt import dialog, commons, qt_utils, root, styles
|
||||
from bauh.view.qt.about import AboutDialog
|
||||
from bauh.view.qt.apps_table import AppsTable, UpdateToggleButton
|
||||
from bauh.view.qt.colors import GREEN
|
||||
from bauh.view.qt.components import new_spacer, InputFilter, IconButton
|
||||
from bauh.view.qt.confirmation import ConfirmationDialog
|
||||
from bauh.view.qt.history import HistoryDialog
|
||||
@@ -231,7 +232,7 @@ class ManageWindow(QWidget):
|
||||
self.bt_upgrade.setToolTip(i18n['manage_window.bt.upgrade.tooltip'])
|
||||
self.bt_upgrade.setIcon(QIcon(resource.get_path('img/app_update.svg')))
|
||||
self.bt_upgrade.setText(i18n['manage_window.bt.upgrade.text'])
|
||||
self.bt_upgrade.setStyleSheet(toolbar_button_style('#20A435', 'white'))
|
||||
self.bt_upgrade.setStyleSheet(toolbar_button_style(GREEN, 'white'))
|
||||
self.bt_upgrade.clicked.connect(self.update_selected)
|
||||
toolbar_bts.append(self.bt_upgrade)
|
||||
self.ref_bt_upgrade = self.toolbar.addWidget(self.bt_upgrade)
|
||||
@@ -319,6 +320,7 @@ class ManageWindow(QWidget):
|
||||
self.toolbar_bottom.addWidget(new_spacer())
|
||||
|
||||
self.progress_bar = QProgressBar()
|
||||
self.progress_bar.setStyleSheet(styles.PROGRESS_BAR)
|
||||
self.progress_bar.setMaximumHeight(10 if QApplication.instance().style().objectName().lower() == 'windows' else 4)
|
||||
|
||||
self.progress_bar.setTextVisible(False)
|
||||
@@ -334,16 +336,14 @@ class ManageWindow(QWidget):
|
||||
bt_custom_actions.setVisible(bool(self.custom_actions))
|
||||
self.ref_bt_custom_actions = self.toolbar_bottom.addWidget(bt_custom_actions)
|
||||
|
||||
bt_settings = IconButton(QIcon(resource.get_path('img/app_settings.svg')),
|
||||
bt_settings = IconButton(QIcon(resource.get_path('img/settings.svg')),
|
||||
action=self.show_settings,
|
||||
background='#12ABAB',
|
||||
i18n=self.i18n,
|
||||
tooltip=self.i18n['manage_window.bt_settings.tooltip'])
|
||||
self.ref_bt_settings = self.toolbar_bottom.addWidget(bt_settings)
|
||||
|
||||
bt_about = IconButton(QIcon(resource.get_path('img/question.svg')),
|
||||
bt_about = IconButton(QIcon(resource.get_path('img/app_info.svg')),
|
||||
action=self._show_about,
|
||||
background='#2E68D3',
|
||||
i18n=self.i18n,
|
||||
tooltip=self.i18n['manage_window.settings.about'])
|
||||
self.ref_bt_about = self.toolbar_bottom.addWidget(bt_about)
|
||||
|
||||
@@ -7,7 +7,6 @@
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
@@ -19,29 +18,13 @@
|
||||
viewBox="0 0 23.99629 24.016451"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="about.svg"
|
||||
inkscape:version="0.92.4 5da689c313, 2019-01-14"><metadata
|
||||
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"><metadata
|
||||
id="metadata933"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs931"><linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient1618"><stop
|
||||
style="stop-color:#0088aa;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop1614" /><stop
|
||||
style="stop-color:#0088aa;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop1616" /></linearGradient>
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs931">
|
||||
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient1618"
|
||||
id="linearGradient1620"
|
||||
x1="-22.25"
|
||||
y1="-4.4919429"
|
||||
x2="-28.25"
|
||||
y2="9.7580566"
|
||||
gradientUnits="userSpaceOnUse" /></defs><sodipodi:namedview
|
||||
</defs><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
@@ -59,11 +42,11 @@
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:zoom="0.50000001"
|
||||
inkscape:cx="-197.75436"
|
||||
inkscape:cy="-20.194417"
|
||||
inkscape:zoom="8.0000001"
|
||||
inkscape:cx="11.347615"
|
||||
inkscape:cy="21.17809"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="432"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Capa_1" />
|
||||
|
||||
@@ -128,15 +111,14 @@
|
||||
transform="translate(239.5083,-10.347359)">
|
||||
</g>
|
||||
<g
|
||||
id="g1624"
|
||||
transform="matrix(1.4998882,0,0,1.5002743,1.245458e-5,-1.4011516e-5)"><ellipse
|
||||
ry="7.9742656"
|
||||
rx="7.969605"
|
||||
cy="8.0040293"
|
||||
cx="7.999351"
|
||||
id="g3417"><ellipse
|
||||
ry="11.963586"
|
||||
rx="11.953516"
|
||||
cy="12.008225"
|
||||
cx="11.998145"
|
||||
id="path939"
|
||||
style="fill:url(#linearGradient1620);fill-opacity:1;stroke:#4d4d4d;stroke-width:0.05950872" /><path
|
||||
d="m 7.8854557,3.7948064 c 1.4552891,0 2.8880403,0.6706192 2.8880403,2.2746822 0,1.479228 -1.6940807,2.0480998 -2.057903,2.5826085 C 8.442458,9.04969 8.5336818,9.6083603 7.7832313,9.6083603 c -0.4888527,0 -0.7276446,-0.3978613 -0.7276446,-0.7618964 0,-1.3546614 1.9892172,-1.6612455 1.9892172,-2.7767069 0,-0.6139735 -0.408361,-0.9780086 -1.0909303,-0.9780086 -1.4552891,0 -0.887018,1.5012419 -1.9892171,1.5012419 -0.3978971,0 -0.73945,-0.2389316 -0.73945,-0.6937069 -2.683e-4,-1.1157299 1.2728414,-2.104477 2.6602492,-2.104477 z M 7.8288432,10.3469 c 0.5108538,0 0.9323617,0.420413 0.9323617,0.933176 0,0.512763 -0.420703,0.933175 -0.9323617,0.933175 -0.5116586,0 -0.9326299,-0.419875 -0.9326299,-0.933175 0,-0.512495 0.4209713,-0.933176 0.9326299,-0.933176 z"
|
||||
style="fill:#68a92e;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.08926791" /><path
|
||||
d="m 11.827314,5.6932365 c 2.182771,0 4.331738,1.0061128 4.331738,3.4126472 0,2.2192483 -2.540932,3.0727113 -3.086624,3.8746213 -0.409672,0.596498 -0.272847,1.434657 -1.398439,1.434657 -0.733224,0 -1.091385,-0.596901 -1.091385,-1.143054 0,-2.032363 2.983603,-2.492324 2.983603,-4.1658216 0,-0.9211286 -0.612496,-1.4672811 -1.636273,-1.4672811 -2.1827713,0 -1.330428,2.2522746 -2.9836036,2.2522746 -0.5968012,0 -1.1090924,-0.3584629 -1.1090924,-1.0407506 -4.024e-4,-1.6739009 1.9091198,-3.1572928 3.990076,-3.1572928 z m -0.08491,9.8299375 c 0.766224,0 1.398438,0.630735 1.398438,1.40002 0,0.769285 -0.631007,1.400019 -1.398438,1.400019 -0.767431,0 -1.398841,-0.629928 -1.398841,-1.400019 0,-0.768883 0.63141,-1.40002 1.398841,-1.40002 z"
|
||||
id="path894"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffffff;stroke-width:0.26838395" /></g></svg>
|
||||
style="fill:#ffffff;stroke-width:0.40259773" /></g></svg>
|
||||
|
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 3.7 KiB |
141
bauh/view/resources/img/app_info.svg
Executable file → Normal file
@@ -1,6 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
@@ -9,20 +7,29 @@
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="Capa_1"
|
||||
enable-background="new 0 0 512 512"
|
||||
height="23.967955"
|
||||
viewBox="0 0 15.215549 23.967955"
|
||||
width="15.215549"
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 10.048382 24.046875"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="info3.svg"
|
||||
width="10.048382"
|
||||
height="24.046875"
|
||||
inkscape:version="0.92.4 5da689c313, 2019-01-14"><metadata
|
||||
id="metadata856"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs854" /><sodipodi:namedview
|
||||
sodipodi:docname="app_info.svg"
|
||||
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
|
||||
<metadata
|
||||
id="metadata877">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs875" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
@@ -33,94 +40,34 @@
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="739"
|
||||
id="namedview852"
|
||||
id="namedview873"
|
||||
showgrid="false"
|
||||
showborder="false"
|
||||
inkscape:zoom="5.6679028"
|
||||
inkscape:cx="-55.088551"
|
||||
inkscape:cy="9.6513721"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Capa_1"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:zoom="4.2578125"
|
||||
inkscape:cx="72.471146"
|
||||
inkscape:cy="14.340367"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="432"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Layer_1" />
|
||||
<g
|
||||
id="g819"
|
||||
transform="matrix(0.04838117,0,0,0.046875,-7.3613885,0.0234375)"
|
||||
style="fill:#ffffff;stroke:#333333">
|
||||
fit-margin-bottom="0" />
|
||||
<g
|
||||
id="g7850"
|
||||
transform="matrix(0.99933549,0,0,0.95376796,-1.4864898e-4,0.06801321)"
|
||||
style="stroke:#5eaa1a;stroke-width:1.53208435;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">
|
||||
<circle
|
||||
style="fill:#ffffff;stroke:#333333"
|
||||
cx="255.99899"
|
||||
cy="75.469002"
|
||||
r="75.469002"
|
||||
id="circle815" />
|
||||
cx="7.5912747"
|
||||
cy="21.699696"
|
||||
r="2.6452355"
|
||||
id="circle866"
|
||||
style="fill:none;stroke:#5eaa1a;stroke-width:1.53208435;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:#ffffff;stroke:#333333"
|
||||
d="M 359.345,230.952 V 185.078 H 152.654 v 45.874 c 15.395,0 27.874,12.479 27.874,27.873 v 179.426 c 0,15.394 -12.48,27.874 -27.874,27.874 V 512 h 206.692 v -45.873 c -15.395,0 -27.874,-12.48 -27.874,-27.874 V 258.825 c -10e-4,-15.394 12.479,-27.873 27.873,-27.873 z"
|
||||
id="path817"
|
||||
d="m 7.591275,0.71366244 c -3.7923421,0 -6.8776126,3.08527056 -6.8776126,6.87761256 V 8.2525839 H 6.0041336 V 7.591275 c 0,-0.8751762 0.7119652,-1.5871414 1.5871414,-1.5871414 0.8751762,0 1.5871413,0.7119652 1.5871413,1.5871414 0,0.466355 -0.2046971,0.9077567 -0.5616717,1.2111211 L 4.9460394,11.923201 v 4.75005 h 5.2904716 v -2.303912 l 1.806519,-1.535868 c 1.541643,-1.310009 2.425858,-3.2206629 2.425858,-5.242196 0,-3.792342 -3.085271,-6.87761256 -6.877613,-6.87761256 z"
|
||||
id="path868"
|
||||
style="fill:none;stroke:#5eaa1a;stroke-width:1.53208435;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g821"
|
||||
transform="translate(-152.62981,-487.97656)">
|
||||
</g>
|
||||
<g
|
||||
id="g823"
|
||||
transform="translate(-152.62981,-487.97656)">
|
||||
</g>
|
||||
<g
|
||||
id="g825"
|
||||
transform="translate(-152.62981,-487.97656)">
|
||||
</g>
|
||||
<g
|
||||
id="g827"
|
||||
transform="translate(-152.62981,-487.97656)">
|
||||
</g>
|
||||
<g
|
||||
id="g829"
|
||||
transform="translate(-152.62981,-487.97656)">
|
||||
</g>
|
||||
<g
|
||||
id="g831"
|
||||
transform="translate(-152.62981,-487.97656)">
|
||||
</g>
|
||||
<g
|
||||
id="g833"
|
||||
transform="translate(-152.62981,-487.97656)">
|
||||
</g>
|
||||
<g
|
||||
id="g835"
|
||||
transform="translate(-152.62981,-487.97656)">
|
||||
</g>
|
||||
<g
|
||||
id="g837"
|
||||
transform="translate(-152.62981,-487.97656)">
|
||||
</g>
|
||||
<g
|
||||
id="g839"
|
||||
transform="translate(-152.62981,-487.97656)">
|
||||
</g>
|
||||
<g
|
||||
id="g841"
|
||||
transform="translate(-152.62981,-487.97656)">
|
||||
</g>
|
||||
<g
|
||||
id="g843"
|
||||
transform="translate(-152.62981,-487.97656)">
|
||||
</g>
|
||||
<g
|
||||
id="g845"
|
||||
transform="translate(-152.62981,-487.97656)">
|
||||
</g>
|
||||
<g
|
||||
id="g847"
|
||||
transform="translate(-152.62981,-487.97656)">
|
||||
</g>
|
||||
<g
|
||||
id="g849"
|
||||
transform="translate(-152.62981,-487.97656)">
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 2.7 KiB |
@@ -15,13 +15,13 @@
|
||||
y="0px"
|
||||
viewBox="0 0 24 24"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="app_play_s.svg"
|
||||
sodipodi:docname="app_play.svg"
|
||||
width="24"
|
||||
height="24"
|
||||
inkscape:version="0.92.4 5da689c313, 2019-01-14"><metadata
|
||||
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"><metadata
|
||||
id="metadata856"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs854" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
@@ -31,8 +31,8 @@
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="3840"
|
||||
inkscape:window-height="2051"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="739"
|
||||
id="namedview852"
|
||||
showgrid="false"
|
||||
showborder="false"
|
||||
@@ -40,9 +40,9 @@
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:zoom="34.0625"
|
||||
inkscape:cx="-8.9291475"
|
||||
inkscape:cy="7.3386416"
|
||||
inkscape:zoom="3.0107281"
|
||||
inkscape:cx="-68.084877"
|
||||
inkscape:cy="34.885592"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
@@ -84,10 +84,10 @@
|
||||
<g
|
||||
id="g819"
|
||||
transform="matrix(0.03104434,0,0,0.03104584,0.64059904,4.1014743)"
|
||||
style="fill:#ffffff;stroke:#333333">
|
||||
style="fill:#5eaa1a;stroke:#5eaa1a;stroke-width:64.42242432;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1">
|
||||
|
||||
<path
|
||||
style="fill:#ffffff;stroke:#333333"
|
||||
style="fill:#5eaa1a;stroke:#5eaa1a;stroke-width:64.42242432;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1"
|
||||
d="M 557.49784,206.99848 C 556.02332,209.32745 299.06055,50.553292 184.31451,-1.6920377 154.70662,-15.172888 152.32141,8.7631987 152.154,44.419264 c -0.8137,173.309056 -0.17793,416.751146 0,425.492356 0.73587,36.15214 -4.3986,60.9816 32.16051,42.58838 96.93285,-48.76779 383.3103,-210.32654 375.2762,-204.82682 68.97152,-41.77019 82.39599,-46.93515 -2.09287,-100.6747 z"
|
||||
id="path817"
|
||||
inkscape:connector-curvature="0"
|
||||
|
||||
|
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.5 KiB |
@@ -1,63 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
id="svg1069"
|
||||
width="23.995125"
|
||||
height="24.004246"
|
||||
viewBox="0 0 23.995125 24.004246"
|
||||
sodipodi:docname="settings_3svg.svg"
|
||||
inkscape:version="0.92.4 5da689c313, 2019-01-14">
|
||||
<metadata
|
||||
id="metadata1075">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs1073" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="739"
|
||||
id="namedview1071"
|
||||
showgrid="false"
|
||||
showborder="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:zoom="3.6875"
|
||||
inkscape:cx="-9.476931"
|
||||
inkscape:cy="-2.2075679"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg1069" />
|
||||
<path
|
||||
style="opacity:0.95;fill:#ffffff;fill-opacity:1;stroke:#333333;stroke-width:0.18215948;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 12.037667,0.09769312 c -0.72043,0.0637 -1.845694,-0.17097 -2.124115,0.73052 -0.08137,0.50962998 0.01515,1.11913998 -0.387221,1.48686998 -0.15736,0.21026 -0.218698,0.60361 -0.5623,0.63599 -0.231156,0.1825 -0.482289,0.4504 -0.805519,0.37943 -0.33519,0.2264 -0.769547,0.14283 -1.104717,-0.0131 -0.637006,0.0746 -1.03032,-0.57076 -1.534985,-0.83449 -0.885643,-0.28862 -1.407803,0.72336 -2.066783,1.10551 -0.25976,0.24133 -0.32452,0.57765 -0.62658,0.79417 -0.43543,0.45528 -0.40057,1.2532 0.17952,1.56982 0.43169,0.5212 0.62511,1.299 0.50516,1.9344 -0.16048,0.28253 -0.0479,0.67728 -0.35903,0.91801 -0.26574,0.43697 -0.71175,0.56803 -1.12615,0.76234 -0.49764,0.39004 -1.38447003,0.0415 -1.77627003,0.5985699 -0.25861,0.96381 -0.12396,2.0252 -0.10444,3.02506 0.0509,0.34442 0.16638,0.76134 0.54628,0.8123 0.39988003,0.23671 0.91536003,0.015 1.32806003,0.27835 1.07706,0.33161 1.66943,1.62912 1.41067,2.66993 -0.16334,0.19954 -0.0658,0.46544 -0.29147,0.64159 -0.17812,0.26318 -0.30377,0.55768 -0.54204,0.80265 -0.47979,0.64849 0.33827,1.30054 0.7343,1.74015 0.54098,0.48923 1.03633,1.14605 1.70793,1.42206 0.23833,-0.12983 0.561824,-0.003 0.682754,-0.29128 0.406567,-0.31367 0.790035,-0.72877 1.343883,-0.71643 0.670515,-0.32887 1.506075,0.0717 2.058292,0.51022 0.156853,0.14124 0.119739,0.39965 0.359038,0.4728 0.497527,0.61075 0.0069,1.60837 0.705143,2.08371 0.874823,0.43838 1.919873,0.26337 2.864969,0.24421 0.659557,0.0141 1.164474,-0.57496 1.060705,-1.22434 0.136064,-0.91849 0.774338,-1.93921 1.77666,-2.0214 0.363739,-0.22429 0.812774,-0.0589 1.166487,0.0473 0.759153,0.0202 1.164413,1.0138 1.994591,0.87519 0.4616,-0.16783 0.782731,-0.57119 1.168225,-0.87538 0.50432,-0.48329 1.01909,-0.97579 1.28636,-1.62094 0.144599,-0.71118 -0.730744,-1.06353 -0.890067,-1.70137 -0.100989,-0.22757 -0.0049,-0.49343 -0.179905,-0.69117 -0.04673,-0.84613 0.412368,-1.65862 1.11958,-2.10125 0.305264,0.0339 0.411929,-0.37354 0.763246,-0.3152 0.591382,0.0245 1.440793,-0.10369 1.514329,-0.83661 0.05748,-1.0154 0.169703,-2.08796 -0.111765,-3.07367 -0.246291,-0.5252799 -0.897473,-0.31832 -1.285587,-0.5717499 -0.232806,0.0157 -0.388499,-0.16382 -0.634686,-0.13137 -0.42064,-0.20941 -0.754834,-0.56503 -0.952802,-0.96218 -0.424334,-0.53524 -0.424871,-1.41725 -0.12354,-1.9942 0.231967,-0.27004 0.338997,-0.6292 0.631791,-0.88078 0.499512,-0.69929 -0.151216,-1.47883 -0.657434,-1.94804 -0.499489,-0.48119 -0.952777,-1.06089 -1.592345,-1.33975 -0.659633,-0.16168 -0.98362,0.57179 -1.534211,0.74575 -0.125378,0.13168 -0.358502,0.0285 -0.45652,0.20544 -0.334935,-0.0571 -0.579653,0.23864 -0.92597,0.071 -0.681696,-0.0739 -1.347245,-0.54339 -1.630535,-1.13561 -0.102377,-0.27247 -0.348146,-0.49327 -0.331433,-0.83892 0.03397,-0.5178 -0.09363,-1.33088998 -0.748962,-1.35222998 -0.449202,-0.1603 -0.970143,-0.0669 -1.440591,-0.0918 z m 7.358542,2.90314998 c 0.09152,-0.13657 0.180927,-0.13633 0,0 z m -7.380163,5.3821 c 0.391366,-0.0266 0.744155,0.13023 1.08889,0.2282 0.620271,0.0714 1.143014,0.59122 1.609108,0.96643 0.332946,0.16294 0.165699,0.5772199 0.500916,0.7067799 0.221257,0.23884 0.09768,0.58093 0.319466,0.79533 0.07607,1.0594 0.150917,2.20776 -0.611329,3.06518 -0.47404,0.62985 -1.178494,1.1764 -1.950002,1.33815 -0.35881,3e-5 -0.689909,0.20436 -1.078465,0.1302 -0.307061,0.0394 -0.57734,-0.14573 -0.847792,-0.16049 -0.201682,-0.11921 -0.435966,-0.0458 -0.596853,-0.26311 -0.569432,-0.0889 -0.972318,-0.61227 -1.328054,-1.03395 -0.01774,-0.31189 -0.432129,-0.39167 -0.438374,-0.75366 -0.338183,-0.85301 -0.406908,-1.899 0.01158,-2.72529 0.246346,-0.36263 0.317564,-0.8099699 0.679663,-1.1234499 0.674731,-0.73941 1.661428,-1.11848 2.641244,-1.17032 z m -1.846149,6.8379199 c 6.6e-4,-0.004 0.01304,-0.006 0,0 z m -0.08223,0.13213 c -0.0079,-0.0194 0.04552,-0.0747 0,0 z m 1.435381,0.35725 c 0.0025,0.0119 -0.0022,-0.007 0,0 z m -8.415191,2.52892 c -0.003,0.003 -0.0212,-0.009 0,0 z m 17.973515,1.20852 c 0.08741,0.13502 -0.194278,-0.16337 0,0 z m -5.019582,0.98456 c -0.01137,0.0188 0.01702,-0.0484 0,0 z"
|
||||
id="path1626"
|
||||
inkscape:connector-curvature="0" />
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 5.8 KiB |
@@ -13,12 +13,12 @@
|
||||
id="Capa_1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 47.999996 44"
|
||||
viewBox="0 0 26.545199 24.006175"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="camera_2.svg"
|
||||
width="47.999996"
|
||||
height="44"
|
||||
inkscape:version="0.92.4 5da689c313, 2019-01-14"><metadata
|
||||
sodipodi:docname="camera.svg"
|
||||
width="26.545198"
|
||||
height="24.006176"
|
||||
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"><metadata
|
||||
id="metadata945"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
||||
@@ -43,84 +43,92 @@
|
||||
showgrid="false"
|
||||
showborder="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-left="-0.3"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:zoom="0.78647591"
|
||||
inkscape:cx="-389.13442"
|
||||
inkscape:cy="-153.68157"
|
||||
inkscape:zoom="4"
|
||||
inkscape:cx="46.244958"
|
||||
inkscape:cy="38.39102"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="432"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Capa_1" />
|
||||
inkscape:current-layer="Capa_1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"><sodipodi:guide
|
||||
position="-51.953545,91.021149"
|
||||
orientation="-0.70710678,0.70710678"
|
||||
id="guide2797"
|
||||
inkscape:locked="false" /></sodipodi:namedview>
|
||||
<g
|
||||
id="g903"><path
|
||||
style="fill:#ffffff;stroke-width:1.88976378;stroke:#ffffff;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="g3423"
|
||||
style="stroke-width:0.85000002;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
transform="matrix(0.99977169,0,0,1.0142481,-0.06185977,-0.08981398)"><path
|
||||
style="fill:none;stroke:#5eaa1a;stroke-width:0.85000002;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path900"
|
||||
d="M 0,13.46442 V 37.38396 C 0,41.03495 2.625306,44 5.857959,44 h 36.28408 c 3.232653,0 5.857959,-2.96505 5.857959,-6.61604 V 13.46442 c 0,-3.47398 -2.497959,-6.2952 -5.573877,-6.2952 H 34.62857 L 34.442448,6.25094 C 33.688162,2.56676 30.817958,0 27.467754,0 H 20.522448 C 17.18204,0 14.311836,2.56676 13.547755,6.25094 L 13.361632,7.16922 H 5.5738773 C 2.4979591,7.16922 0,10.00151 0,13.46442 Z M 14.321632,9.87981 c 0.558367,0 1.038367,-0.43148 1.165714,-1.05105 l 0.401633,-1.96932 c 0.509388,-2.44506 2.409796,-4.14886 4.633469,-4.14886 h 6.945306 c 2.223673,0 4.124082,1.7038 4.633469,4.14886 l 0.401633,1.96932 c 0.127347,0.6085 0.607347,1.05105 1.165714,1.05105 h 8.747755 c 1.753469,0 3.173877,1.60422 3.173877,3.58461 v 23.91954 c 0,2.1574 -1.547755,3.90545 -3.457959,3.90545 H 5.857959 c -1.910204,0 -3.4579591,-1.74805 -3.4579591,-3.90545 V 13.46442 c 0,-1.98039 1.4204081,-3.58461 3.1738774,-3.58461 z" /><path
|
||||
style="fill:#ffffff;stroke-width:1.88976378;stroke:#ffffff;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
d="m 0.1868054,7.496365 v 12.404966 c 0,1.893448 1.4221135,3.431159 3.1732235,3.431159 H 23.014911 c 1.751111,0 3.173223,-1.537711 3.173223,-3.431159 V 7.496365 c 0,-1.8016485 -1.353129,-3.2647676 -3.019337,-3.2647676 h -4.22389 L 18.844086,3.7553661 C 18.435494,1.8447054 16.88072,0.51355229 15.065934,0.51355229 H 11.3037 c -1.8094799,0 -3.3642534,1.33115311 -3.7781518,3.24181381 L 7.4247264,4.2315974 h -4.218583 c -1.6662076,0 -3.019338,1.4688602 -3.019338,3.2647676 z M 7.9447531,5.6373425 c 0.3024642,0 0.5624775,-0.2237709 0.6314606,-0.5450874 L 8.7937761,4.0709417 C 9.0697087,2.8029037 10.099149,1.9192922 11.3037,1.9192922 h 3.762234 c 1.20455,0 2.233991,0.8836115 2.509924,2.1516495 l 0.217562,1.0213134 c 0.06898,0.3155756 0.328997,0.5450874 0.631461,0.5450874 h 4.73861 c 0.949843,0 1.719271,0.831968 1.719271,1.8590225 v 12.404966 c 0,1.118854 -0.838411,2.025413 -1.873157,2.025413 H 3.3600289 c -1.0347468,0 -1.8731571,-0.906559 -1.8731571,-2.025413 V 7.496365 c 0,-1.0270545 0.7694271,-1.8590225 1.7192716,-1.8590225 z" /><path
|
||||
style="fill:none;stroke:#5eaa1a;stroke-width:0.85000002;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path904"
|
||||
d="m 23.999999,37.04099 c 5.554286,0 10.08,-5.1114 10.08,-11.38447 0,-6.27307 -4.525714,-11.38446 -10.08,-11.38446 -5.554285,0 -10.08,5.10033 -10.08,11.38446 0,6.28414 4.525715,11.38447 10.08,11.38447 z m 0,-20.05834 c 4.231837,0 7.68,3.89439 7.68,8.67387 0,4.77949 -3.448163,8.67388 -7.68,8.67388 -4.231836,0 -7.68,-3.89439 -7.68,-8.67388 0,-4.77948 3.448164,-8.67387 7.68,-8.67387 z" /></g>
|
||||
d="m 13.18747,19.762222 c 3.410675,0 6.189744,-3.004972 6.189744,-6.692885 0,-3.687913 -2.779069,-6.69288 -6.189744,-6.69288 -3.4106757,0 -6.1897442,2.998464 -6.1897442,6.69288 0,3.694422 2.7790685,6.692885 6.1897442,6.692885 z m 0,-11.7922197 c 2.59861,0 4.715995,2.2894957 4.715995,5.0993347 0,2.809844 -2.117385,5.099341 -4.715995,5.099341 -2.59861,0 -4.7159952,-2.289497 -4.7159952,-5.099341 0,-2.809839 2.1173852,-5.0993347 4.7159952,-5.0993347 z" /></g>
|
||||
<g
|
||||
id="g910"
|
||||
transform="translate(0,-410.99999)">
|
||||
transform="matrix(1.1013612,0,0,1.1013612,-0.37597036,-474.86373)">
|
||||
</g>
|
||||
<g
|
||||
id="g912"
|
||||
transform="translate(0,-410.99999)">
|
||||
transform="matrix(1.1013612,0,0,1.1013612,-0.37597036,-474.86373)">
|
||||
</g>
|
||||
<g
|
||||
id="g914"
|
||||
transform="translate(0,-410.99999)">
|
||||
transform="matrix(1.1013612,0,0,1.1013612,-0.37597036,-474.86373)">
|
||||
</g>
|
||||
<g
|
||||
id="g916"
|
||||
transform="translate(0,-410.99999)">
|
||||
transform="matrix(1.1013612,0,0,1.1013612,-0.37597036,-474.86373)">
|
||||
</g>
|
||||
<g
|
||||
id="g918"
|
||||
transform="translate(0,-410.99999)">
|
||||
transform="matrix(1.1013612,0,0,1.1013612,-0.37597036,-474.86373)">
|
||||
</g>
|
||||
<g
|
||||
id="g920"
|
||||
transform="translate(0,-410.99999)">
|
||||
transform="matrix(1.1013612,0,0,1.1013612,-0.37597036,-474.86373)">
|
||||
</g>
|
||||
<g
|
||||
id="g922"
|
||||
transform="translate(0,-410.99999)">
|
||||
transform="matrix(1.1013612,0,0,1.1013612,-0.37597036,-474.86373)">
|
||||
</g>
|
||||
<g
|
||||
id="g924"
|
||||
transform="translate(0,-410.99999)">
|
||||
transform="matrix(1.1013612,0,0,1.1013612,-0.37597036,-474.86373)">
|
||||
</g>
|
||||
<g
|
||||
id="g926"
|
||||
transform="translate(0,-410.99999)">
|
||||
transform="matrix(1.1013612,0,0,1.1013612,-0.37597036,-474.86373)">
|
||||
</g>
|
||||
<g
|
||||
id="g928"
|
||||
transform="translate(0,-410.99999)">
|
||||
transform="matrix(1.1013612,0,0,1.1013612,-0.37597036,-474.86373)">
|
||||
</g>
|
||||
<g
|
||||
id="g930"
|
||||
transform="translate(0,-410.99999)">
|
||||
transform="matrix(1.1013612,0,0,1.1013612,-0.37597036,-474.86373)">
|
||||
</g>
|
||||
<g
|
||||
id="g932"
|
||||
transform="translate(0,-410.99999)">
|
||||
transform="matrix(1.1013612,0,0,1.1013612,-0.37597036,-474.86373)">
|
||||
</g>
|
||||
<g
|
||||
id="g934"
|
||||
transform="translate(0,-410.99999)">
|
||||
transform="matrix(1.1013612,0,0,1.1013612,-0.37597036,-474.86373)">
|
||||
</g>
|
||||
<g
|
||||
id="g936"
|
||||
transform="translate(0,-410.99999)">
|
||||
transform="matrix(1.1013612,0,0,1.1013612,-0.37597036,-474.86373)">
|
||||
</g>
|
||||
<g
|
||||
id="g938"
|
||||
transform="translate(0,-410.99999)">
|
||||
transform="matrix(1.1013612,0,0,1.1013612,-0.37597036,-474.86373)">
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 5.2 KiB |
@@ -14,7 +14,7 @@
|
||||
sodipodi:docname="checked.svg"
|
||||
width="11.999997"
|
||||
height="12"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)">
|
||||
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
|
||||
<metadata
|
||||
id="metadata823">
|
||||
<rdf:RDF>
|
||||
@@ -23,7 +23,7 @@
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
@@ -39,7 +39,7 @@
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="703"
|
||||
inkscape:window-height="739"
|
||||
id="namedview819"
|
||||
showgrid="false"
|
||||
showborder="false"
|
||||
@@ -47,16 +47,16 @@
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:zoom="4.7692308"
|
||||
inkscape:cx="-42.8741"
|
||||
inkscape:cy="25.96043"
|
||||
inkscape:zoom="9.5384616"
|
||||
inkscape:cx="-12.641135"
|
||||
inkscape:cy="14.456686"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="260"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg817" />
|
||||
<path
|
||||
d="M 0.13846154,6.6 C 0.04615385,6.48 0,6.3 0,6.18 0,6.06 0.04615385,5.88 0.13846154,5.76 L 0.78461536,4.92 c 0.1846154,-0.24 0.46153844,-0.24 0.64615384,0 l 0.046153,0.06 2.5384614,3.54 c 0.092308,0.12 0.2307693,0.12 0.323077,0 L 10.523077,0.18 h 0.04615 v 0 c 0.184616,-0.24 0.461539,-0.24 0.646154,0 l 0.646154,0.84 c 0.184616,0.24 0.184616,0.6 0,0.84 v 0 L 4.4769229,11.82 C 4.3846154,11.94 4.2923076,12 4.1538462,12 4.0153844,12 3.923077,11.94 3.8307691,11.82 L 0.23076922,6.78 Z"
|
||||
id="path815"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#00ff00;stroke-width:0.52623481" />
|
||||
style="fill:#68a92e;stroke-width:0.52623481;fill-opacity:1" />
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
@@ -22,7 +22,7 @@
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
@@ -46,9 +46,9 @@
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:zoom="3.1607143"
|
||||
inkscape:cx="64.104382"
|
||||
inkscape:cy="34.001197"
|
||||
inkscape:zoom="8.9398501"
|
||||
inkscape:cx="21.953042"
|
||||
inkscape:cy="22.538918"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
@@ -57,6 +57,6 @@
|
||||
<path
|
||||
d="m 16.392858,7.39286 h -5.464286 c -0.177508,0 -0.321429,-0.14392 -0.321429,-0.32143 V 1.60714 C 10.607143,0.7196 9.8875387,0 9.0000003,0 8.1124619,0 7.3928574,0.7196 7.3928574,1.60714 v 5.46429 c 0,0.17751 -0.1439209,0.32143 -0.3214286,0.32143 H 1.6071429 C 0.71960451,7.39286 0,8.11246 0,9 c 0,0.88754 0.71960451,1.60714 1.6071429,1.60714 h 5.4642859 c 0.1775077,0 0.3214286,0.14392 0.3214286,0.32143 v 5.46429 C 7.3928574,17.2804 8.1124619,18 9.0000003,18 9.8875387,18 10.607143,17.2804 10.607143,16.39286 v -5.46429 c 0,-0.17751 0.143921,-0.32143 0.321429,-0.32143 h 5.464286 c 0.887538,0 1.607143,-0.7196 1.607143,-1.60714 0,-0.88754 -0.719605,-1.60714 -1.607143,-1.60714 z m 0,0"
|
||||
id="path5739"
|
||||
style="fill:none;stroke-width:1.41732284;stroke:#669900;fill-opacity:1;stroke-opacity:1"
|
||||
style="fill:#000000;stroke-width:1.41732284;stroke:#5eaa1a;fill-opacity:0;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 2.4 KiB |
@@ -47,7 +47,7 @@
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="-0.3"
|
||||
inkscape:zoom="4.5416668"
|
||||
inkscape:cx="-23.902643"
|
||||
inkscape:cx="81.555444"
|
||||
inkscape:cy="1.3146742"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
@@ -117,14 +117,14 @@
|
||||
<g
|
||||
id="g1005"
|
||||
transform="translate(1.3061933e-4,1.3061933e-4)"
|
||||
style="fill:none;stroke:#6600ff;stroke-width:1.5"><path
|
||||
style="fill:none;stroke:#8d5fd3;stroke-width:1.5"><path
|
||||
id="path920"
|
||||
d="M 12,0.27929688 A 11.720572,11.720572 0 0 0 0.27929688,12 11.720572,11.720572 0 0 0 12,23.720703 11.720572,11.720572 0 0 0 23.720703,12 11.720572,11.720572 0 0 0 12,0.27929688 Z M 12,8.59375 A 3.4069197,3.4069195 0 0 1 15.40625,12 3.4069197,3.4069195 0 0 1 12,15.40625 3.4069197,3.4069195 0 0 1 8.59375,12 3.4069197,3.4069195 0 0 1 12,8.59375 Z"
|
||||
style="fill:none;stroke:#6600ff;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.94117647"
|
||||
style="fill:none;stroke:#8d5fd3;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.94117647"
|
||||
inkscape:connector-curvature="0" /><ellipse
|
||||
cy="12"
|
||||
cx="12"
|
||||
id="ellipse998"
|
||||
style="fill:none;fill-opacity:0;stroke:#6600ff;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.94117647"
|
||||
style="fill:none;fill-opacity:0;stroke:#8d5fd3;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.94117647"
|
||||
rx="3.4069197"
|
||||
ry="3.4069195" /></g></svg>
|
||||
|
Before Width: | Height: | Size: 3.6 KiB After Width: | Height: | Size: 3.6 KiB |
@@ -8,12 +8,12 @@
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
viewBox="0 0 24 24"
|
||||
viewBox="0 0 23.882839 24"
|
||||
enable-background="new 0 0 26 26"
|
||||
id="svg8"
|
||||
sodipodi:docname="downgrade.svg"
|
||||
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
|
||||
width="24"
|
||||
width="23.882839"
|
||||
height="24">
|
||||
<metadata
|
||||
id="metadata14">
|
||||
@@ -23,7 +23,7 @@
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
@@ -43,9 +43,9 @@
|
||||
id="namedview10"
|
||||
showgrid="false"
|
||||
showborder="false"
|
||||
inkscape:zoom="4.5384616"
|
||||
inkscape:cx="-59.821151"
|
||||
inkscape:cy="12.13426"
|
||||
inkscape:zoom="9.0769232"
|
||||
inkscape:cx="10.512667"
|
||||
inkscape:cy="4.4534573"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
@@ -56,17 +56,17 @@
|
||||
fit-margin-bottom="0" />
|
||||
<g
|
||||
id="g6"
|
||||
transform="matrix(0.92307692,0,0,1,0,-1)"
|
||||
style="fill:#ff7f2a">
|
||||
transform="matrix(0.86449642,0,0,0.9365378,0.70296592,-0.17499137)"
|
||||
style="fill:none;stroke:#ff7f2a;stroke-width:1.62630153">
|
||||
<path
|
||||
d="m 25,17 h -2 c -0.6,0 -1,0.4 -1,1 v 2.5 C 22,20.8 21.8,21 21.5,21 H 4.5 C 4.2,21 4,20.8 4,20.5 V 18 C 4,17.4 3.6,17 3,17 H 1 c -0.6,0 -1,0.4 -1,1 v 6 c 0,0.6 0.4,1 1,1 h 24 c 0.6,0 1,-0.4 1,-1 v -6 c 0,-0.6 -0.4,-1 -1,-1 z"
|
||||
id="path2"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ff7f2a" />
|
||||
style="fill:none;stroke:#ff7f2a;stroke-width:1.62630153" />
|
||||
<path
|
||||
d="m 12.3,16.7 c 0.2,0.2 0.5,0.3 0.7,0.3 0.2,0 0.5,-0.1 0.7,-0.3 l 6,-6 C 19.9,10.5 20,10.3 20,10 20,9.7 19.9,9.5 19.7,9.3 L 18.3,7.9 C 18.1,7.7 17.9,7.6 17.6,7.6 c -0.3,0 -0.5,0.1 -0.7,0.3 l -1,1 C 15.6,9.2 15,9 15,8.5 V 2 C 15,1.4 14.6,1 14,1 H 12 C 11.4,1 11,1.4 11,2 V 8.6 C 11,9 10.5,9.3 10.1,9 L 9.1,8 C 8.9,7.8 8.7,7.7 8.4,7.7 8.1,7.7 7.9,7.8 7.7,8 L 6.3,9.4 C 6.1,9.6 6,9.8 6,10.1 c 0,0.3 0.1,0.5 0.3,0.7 z"
|
||||
id="path4"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ff7f2a" />
|
||||
style="fill:none;stroke:#ff7f2a;stroke-width:1.62630153" />
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 2.7 KiB |
|
Before Width: | Height: | Size: 40 KiB After Width: | Height: | Size: 40 KiB |
@@ -9,12 +9,12 @@
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="Capa_1"
|
||||
enable-background="new 0 0 512 512"
|
||||
height="512"
|
||||
viewBox="0 0 512 512"
|
||||
width="512"
|
||||
height="23.967955"
|
||||
viewBox="0 0 15.215549 23.967955"
|
||||
width="15.215549"
|
||||
version="1.1"
|
||||
sodipodi:docname="question.svg"
|
||||
inkscape:version="0.92.4 5da689c313, 2019-01-14">
|
||||
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
|
||||
<metadata
|
||||
id="metadata877">
|
||||
<rdf:RDF>
|
||||
@@ -23,7 +23,7 @@
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
@@ -38,30 +38,36 @@
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1360"
|
||||
inkscape:window-height="703"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="739"
|
||||
id="namedview873"
|
||||
showgrid="false"
|
||||
showborder="false"
|
||||
inkscape:zoom="0.17712196"
|
||||
inkscape:cx="-1248.9069"
|
||||
inkscape:cy="793.31938"
|
||||
inkscape:zoom="5.6679028"
|
||||
inkscape:cx="-23.418989"
|
||||
inkscape:cy="9.6513721"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Capa_1" />
|
||||
inkscape:current-layer="Capa_1"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0" />
|
||||
<g
|
||||
id="g870"
|
||||
style="fill:#ffffff">
|
||||
id="g7850"
|
||||
transform="scale(1.0021734,0.95647647)"
|
||||
style="stroke:#0088aa">
|
||||
<circle
|
||||
cx="256"
|
||||
cy="452"
|
||||
r="60"
|
||||
cx="7.5912747"
|
||||
cy="21.699696"
|
||||
r="2.6452355"
|
||||
id="circle866"
|
||||
style="fill:#ffffff" />
|
||||
style="fill:none;stroke:#0088aa;stroke-width:1.42732489" />
|
||||
<path
|
||||
d="m256 0c-86.019 0-156 69.981-156 156v15h120v-15c0-19.851 16.149-36 36-36s36 16.149 36 36c0 10.578-4.643 20.59-12.74 27.471l-83.26 70.787v107.742h120v-52.258l40.976-34.837c34.968-29.714 55.024-73.052 55.024-118.905 0-86.019-69.981-156-156-156z"
|
||||
d="m 7.591275,0.71366244 c -3.7923421,0 -6.8776126,3.08527056 -6.8776126,6.87761256 V 8.2525839 H 6.0041336 V 7.591275 c 0,-0.8751762 0.7119652,-1.5871414 1.5871414,-1.5871414 0.8751762,0 1.5871413,0.7119652 1.5871413,1.5871414 0,0.466355 -0.2046971,0.9077567 -0.5616717,1.2111211 L 4.9460394,11.923201 v 4.75005 h 5.2904716 v -2.303912 l 1.806519,-1.535868 c 1.541643,-1.310009 2.425858,-3.2206629 2.425858,-5.242196 0,-3.792342 -3.085271,-6.87761256 -6.877613,-6.87761256 z"
|
||||
id="path868"
|
||||
style="fill:#ffffff" />
|
||||
style="fill:none;stroke:#0088aa;stroke-width:1.42732489"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.5 KiB |
@@ -13,15 +13,15 @@
|
||||
id="Capa_1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
width="24.052713"
|
||||
height="24.049257"
|
||||
viewBox="0 0 24.052713 24.049257"
|
||||
width="48.250984"
|
||||
height="48"
|
||||
viewBox="0 0 48.250983 47.999999"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="refresh.svg"
|
||||
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"><metadata
|
||||
id="metadata45"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs43" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
@@ -37,8 +37,8 @@
|
||||
showgrid="false"
|
||||
showborder="false"
|
||||
inkscape:zoom="5.4800303"
|
||||
inkscape:cx="36.583657"
|
||||
inkscape:cy="3.135095"
|
||||
inkscape:cx="4.8362855"
|
||||
inkscape:cy="25.974628"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
@@ -49,81 +49,81 @@
|
||||
fit-margin-bottom="0" />
|
||||
<g
|
||||
id="g8"
|
||||
transform="matrix(0.05273507,0,0,0.04925805,-0.82068209,0.02462902)"
|
||||
style="fill:none;fill-opacity:1;stroke:#2c89a0;stroke-width:29.43085561">
|
||||
transform="matrix(0.0976088,0,0,0.09117309,0.34656718,1.7888681)"
|
||||
style="fill:none;fill-opacity:1;stroke:#37abc8;stroke-width:39.24114227">
|
||||
<g
|
||||
id="g6"
|
||||
style="fill:none;fill-opacity:1;stroke:#2c89a0;stroke-width:29.43085561">
|
||||
style="fill:none;fill-opacity:1;stroke:#37abc8;stroke-width:39.24114227">
|
||||
<path
|
||||
d="m 55.323,203.641 c 15.664,0 29.813,-9.405 35.872,-23.854 25.017,-59.604 83.842,-101.61 152.42,-101.61 37.797,0 72.449,12.955 100.23,34.442 l -21.775,3.371 c -7.438,1.153 -13.224,7.054 -14.232,14.512 -1.01,7.454 3.008,14.686 9.867,17.768 l 119.746,53.872 c 5.249,2.357 11.33,1.904 16.168,-1.205 4.83,-3.114 7.764,-8.458 7.796,-14.208 l 0.621,-131.943 c 0.042,-7.506 -4.851,-14.144 -12.024,-16.332 -7.185,-2.188 -14.947,0.589 -19.104,6.837 L 414.403,70.096 C 370.398,26.778 310.1,0 243.615,0 142.806,0 56.133,61.562 19.167,149.06 c -5.134,12.128 -3.84,26.015 3.429,36.987 7.269,10.976 19.556,17.594 32.727,17.594 z"
|
||||
id="path2"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;fill-opacity:1;stroke:#2c89a0;stroke-width:29.43085561" />
|
||||
style="fill:none;fill-opacity:1;stroke:#37abc8;stroke-width:39.24114227" />
|
||||
<path
|
||||
d="m 464.635,301.184 c -7.27,-10.977 -19.558,-17.594 -32.728,-17.594 -15.664,0 -29.813,9.405 -35.872,23.854 -25.018,59.604 -83.843,101.61 -152.42,101.61 -37.798,0 -72.45,-12.955 -100.232,-34.442 l 21.776,-3.369 c 7.437,-1.153 13.223,-7.055 14.233,-14.514 1.009,-7.453 -3.008,-14.686 -9.867,-17.768 L 49.779,285.089 c -5.25,-2.356 -11.33,-1.905 -16.169,1.205 -4.829,3.114 -7.764,8.458 -7.795,14.207 l -0.622,131.943 c -0.042,7.506 4.85,14.144 12.024,16.332 7.185,2.188 14.948,-0.59 19.104,-6.839 l 16.505,-24.805 c 44.004,43.32 104.303,70.098 170.788,70.098 100.811,0 187.481,-61.561 224.446,-149.059 5.137,-12.128 3.843,-26.014 -3.425,-36.987 z"
|
||||
id="path4"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;fill-opacity:1;stroke:#2c89a0;stroke-width:29.43085561" />
|
||||
style="fill:none;fill-opacity:1;stroke:#37abc8;stroke-width:39.24114227" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g10"
|
||||
transform="translate(-16.035798,-463.20537)">
|
||||
transform="translate(-15.027876,-440.19647)">
|
||||
</g>
|
||||
<g
|
||||
id="g12"
|
||||
transform="translate(-16.035798,-463.20537)">
|
||||
transform="translate(-15.027876,-440.19647)">
|
||||
</g>
|
||||
<g
|
||||
id="g14"
|
||||
transform="translate(-16.035798,-463.20537)">
|
||||
transform="translate(-15.027876,-440.19647)">
|
||||
</g>
|
||||
<g
|
||||
id="g16"
|
||||
transform="translate(-16.035798,-463.20537)">
|
||||
transform="translate(-15.027876,-440.19647)">
|
||||
</g>
|
||||
<g
|
||||
id="g18"
|
||||
transform="translate(-16.035798,-463.20537)">
|
||||
transform="translate(-15.027876,-440.19647)">
|
||||
</g>
|
||||
<g
|
||||
id="g20"
|
||||
transform="translate(-16.035798,-463.20537)">
|
||||
transform="translate(-15.027876,-440.19647)">
|
||||
</g>
|
||||
<g
|
||||
id="g22"
|
||||
transform="translate(-16.035798,-463.20537)">
|
||||
transform="translate(-15.027876,-440.19647)">
|
||||
</g>
|
||||
<g
|
||||
id="g24"
|
||||
transform="translate(-16.035798,-463.20537)">
|
||||
transform="translate(-15.027876,-440.19647)">
|
||||
</g>
|
||||
<g
|
||||
id="g26"
|
||||
transform="translate(-16.035798,-463.20537)">
|
||||
transform="translate(-15.027876,-440.19647)">
|
||||
</g>
|
||||
<g
|
||||
id="g28"
|
||||
transform="translate(-16.035798,-463.20537)">
|
||||
transform="translate(-15.027876,-440.19647)">
|
||||
</g>
|
||||
<g
|
||||
id="g30"
|
||||
transform="translate(-16.035798,-463.20537)">
|
||||
transform="translate(-15.027876,-440.19647)">
|
||||
</g>
|
||||
<g
|
||||
id="g32"
|
||||
transform="translate(-16.035798,-463.20537)">
|
||||
transform="translate(-15.027876,-440.19647)">
|
||||
</g>
|
||||
<g
|
||||
id="g34"
|
||||
transform="translate(-16.035798,-463.20537)">
|
||||
transform="translate(-15.027876,-440.19647)">
|
||||
</g>
|
||||
<g
|
||||
id="g36"
|
||||
transform="translate(-16.035798,-463.20537)">
|
||||
transform="translate(-15.027876,-440.19647)">
|
||||
</g>
|
||||
<g
|
||||
id="g38"
|
||||
transform="translate(-16.035798,-463.20537)">
|
||||
transform="translate(-15.027876,-440.19647)">
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 4.4 KiB After Width: | Height: | Size: 4.4 KiB |
63
bauh/view/resources/img/settings.svg
Executable file
@@ -0,0 +1,63 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
id="svg1069"
|
||||
width="23.970758"
|
||||
height="24"
|
||||
viewBox="0 0 23.970758 24"
|
||||
sodipodi:docname="settings.svg"
|
||||
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
|
||||
<metadata
|
||||
id="metadata1075">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs1073" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="739"
|
||||
id="namedview1071"
|
||||
showgrid="false"
|
||||
showborder="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:zoom="5.2149125"
|
||||
inkscape:cx="-67.119176"
|
||||
inkscape:cy="16.928124"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg1069" />
|
||||
<path
|
||||
style="opacity:0.95;fill:none;fill-opacity:1;stroke:#5eaa1a;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 12.023452,1.0181918 C 11.358796,1.0769604 10.320647,0.86045797 10.06378,1.6921566 9.98871,2.1623322 10.077758,2.7246554 9.7065373,3.0639166 9.5613597,3.2578987 9.5047704,3.6207965 9.1877693,3.6506697 8.9745088,3.8190409 8.742818,4.0662008 8.4446117,4.0007251 8.1353713,4.2095977 7.7346413,4.1324974 7.4254194,3.9886392 6.8377289,4.0574638 6.4748644,3.4620662 6.0092694,3.2187535 5.1921909,2.9524778 4.7104554,3.8861127 4.1024921,4.2386775 3.8628421,4.4613243 3.8030956,4.7716071 3.5244204,4.9713647 3.1227004,5.3913979 3.1548617,6.1275448 3.6900425,6.4196527 4.088312,6.9005027 4.2667579,7.6180871 4.1560941,8.2042959 4.0080381,8.464953 4.1119021,8.8291424 3.8248594,9.0512356 3.5796924,9.4543759 3.1682114,9.5752899 2.7858934,9.7545572 2.3267795,10.114401 1.5086059,9.7928442 1.1471381,10.306787 c -0.238589,0.889194 -0.1143633,1.868414 -0.096355,2.790867 0.046959,0.317755 0.1534993,0.702399 0.5039882,0.749413 0.3689222,0.218385 0.8444949,0.01384 1.2252447,0.256801 0.9936764,0.305938 1.5401865,1.502997 1.3014591,2.46323 -0.1506946,0.184093 -0.060706,0.429407 -0.2689051,0.59192 -0.1643303,0.242805 -0.2802528,0.514506 -0.5000764,0.740511 -0.4426458,0.598285 0.3120819,1.199855 0.6774521,1.605431 0.4990985,0.451355 0.9560997,1.057326 1.575706,1.311968 0.219879,-0.119779 0.5183288,-0.0028 0.6298967,-0.26873 0.3750915,-0.289387 0.7288723,-0.672351 1.2398427,-0.660966 0.6186052,-0.30341 1.389478,0.06615 1.8989436,0.470719 0.1447098,0.130306 0.1104691,0.368711 0.3312421,0.436198 0.4590097,0.563467 0.00636,1.483854 0.6505527,1.922393 0.807096,0.404442 1.77124,0.242981 2.64317,0.225304 0.608495,0.01301 1.074323,-0.530448 0.978588,-1.129554 0.125529,-0.847382 0.71439,-1.78908 1.639114,-1.864908 0.33558,-0.206926 0.749851,-0.05434 1.07618,0.04363 0.700382,0.01864 1.074268,0.935315 1.840175,0.807435 0.425864,-0.154837 0.722133,-0.52697 1.077784,-0.80761 0.465276,-0.445875 0.940194,-0.900246 1.186773,-1.49545 0.133404,-0.656123 -0.674172,-0.981194 -0.82116,-1.569654 -0.09317,-0.209953 -0.0045,-0.455229 -0.165977,-0.637661 -0.04312,-0.780625 0.380443,-1.530214 1.032905,-1.938577 0.28163,0.03128 0.380037,-0.344621 0.704156,-0.290797 0.545599,0.0226 1.329251,-0.09567 1.397093,-0.771842 0.05303,-0.93679 0.156565,-1.926314 -0.103112,-2.835713 C 22.574595,9.9665352 21.973826,10.157472 21.61576,9.9236624 21.400977,9.9381442 21.257337,9.7725246 21.030209,9.8024631 20.642134,9.6092688 20.333813,9.2811797 20.151171,8.9147765 19.759688,8.4209736 19.759192,7.6072468 20.037195,7.0749629 20.251204,6.8258288 20.349947,6.4944741 20.620075,6.2623709 21.080916,5.6172183 20.480565,4.8980286 20.013537,4.4651438 19.552718,4.0212064 19.134522,3.4863855 18.544468,3.2291142 17.935902,3.079951 17.636997,3.7566374 17.129033,3.9171298 17.013361,4.0386155 16.798285,3.9434235 16.707855,4.1066652 16.39885,4.0539857 16.173078,4.3268302 15.853571,4.1721685 15.224651,4.1039897 14.610627,3.6708466 14.349269,3.1244748 14.254818,2.8730989 14.028076,2.6693927 14.043495,2.3505021 14.074834,1.8727891 13.957111,1.1226466 13.352516,1.1029587 12.93809,0.95506871 12.457479,1.0412379 12.023452,1.0182657 Z m 6.78886,2.6783948 c 0.08443,-0.1259971 0.166921,-0.1257757 0,0 z m -6.808807,4.96543 c 0.361067,-0.02454 0.686544,0.120148 1.00459,0.2105333 0.572251,0.065873 1.054524,0.5454488 1.484535,0.8916107 0.30717,0.1503257 0.15287,0.5325334 0.462136,0.6520634 0.204128,0.22035 0.09012,0.535955 0.294734,0.733757 0.07018,0.977384 0.139233,2.036841 -0.564002,2.827881 -0.437341,0.581089 -1.087257,1.085326 -1.799037,1.234553 -0.331032,2.8e-5 -0.636498,0.188539 -0.994972,0.12012 -0.28329,0.03635 -0.532645,-0.134447 -0.782159,-0.148064 -0.186068,-0.109982 -0.402214,-0.04225 -0.550645,-0.242742 C 10.033336,14.859712 9.6616407,14.376861 9.333445,13.987826 9.3170784,13.700082 8.9347704,13.626478 8.929009,13.292512 8.6170073,12.50554 8.5536028,11.540529 8.9396924,10.778208 9.1669669,10.443652 9.2326714,10.030944 9.5667374,9.7417333 10.189233,9.0595665 11.099542,8.7098433 12.003503,8.6620166 Z M 10.30028,14.970561 c 6.09e-4,-0.0037 0.01203,-0.0056 0,0 z m -0.07587,0.121901 c -0.0073,-0.0179 0.04199,-0.06892 0,0 z m 1.324257,0.329592 c 0.0023,0.01098 -0.002,-0.0065 0,0 z m -7.7637056,2.333137 c -0.00276,0.0028 -0.019559,-0.0083 0,0 z m 16.5820456,1.114958 c 0.08064,0.124568 -0.179237,-0.150722 0,0 z m -4.630977,0.908339 c -0.01049,0.01734 0.0157,-0.04466 0,0 z"
|
||||
id="path1626"
|
||||
inkscape:connector-curvature="0" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 6.2 KiB |
@@ -13,16 +13,30 @@
|
||||
id="Capa_1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 48.000001 48.000001"
|
||||
viewBox="0 0 21.962843 24.000001"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="suggestions.svg"
|
||||
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
|
||||
width="48"
|
||||
height="48"><metadata
|
||||
width="21.962843"
|
||||
height="24"><metadata
|
||||
id="metadata3871"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs3869" /><sodipodi:namedview
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs3869">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</defs><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
@@ -36,9 +50,9 @@
|
||||
id="namedview3867"
|
||||
showgrid="false"
|
||||
showborder="false"
|
||||
inkscape:zoom="1.1933395"
|
||||
inkscape:cx="-107.04065"
|
||||
inkscape:cy="-23.859998"
|
||||
inkscape:zoom="3.3752738"
|
||||
inkscape:cx="-10.034104"
|
||||
inkscape:cy="43.494145"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
@@ -48,121 +62,99 @@
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0" />
|
||||
<g
|
||||
id="g3834"
|
||||
transform="matrix(0.13315982,0,0,0.11100833,-4.7891638,0)"
|
||||
style="fill:#aa8800">
|
||||
<g
|
||||
id="g3832"
|
||||
style="fill:#aa8800">
|
||||
<g
|
||||
id="g3830"
|
||||
style="fill:#aa8800">
|
||||
<path
|
||||
style="fill:#aa8800"
|
||||
d="m 216.529,93.2 c -61.2,0 -111.2,50 -111.2,111.2 0,32 14,62.8 37.6,83.6 17.6,17.6 16,55.2 15.6,55.6 0,2 0.4,3.6 2,5.2 1.2,1.2 3.2,2 4.8,2 h 102 c 2,0 3.6,-0.8 4.8,-2 1.2,-1.2 2,-3.2 2,-5.2 0,-0.4 -2,-38 15.6,-55.6 0.4,-0.4 0.8,-0.8 1.2,-1.2 23.2,-21.2 36.8,-51.2 36.8,-82.4 0,-61.2 -50,-111.2 -111.2,-111.2 z m 64,184.4 c -0.4,0.4 -1.2,1.2 -1.2,1.6 -15.6,16.8 -18.4,44.4 -18.8,57.6 h -88.4 c -0.4,-13.2 -3.2,-42 -20,-59.2 -21.2,-18.4 -33.6,-45.2 -33.6,-73.6 0,-54 43.6,-97.6 97.6,-97.6 54,0 97.6,43.6 97.6,97.6 0,28.4 -12,55.2 -33.2,73.6 z"
|
||||
id="g10054"
|
||||
transform="matrix(0.5189189,0,0,0.5189189,-0.00218031,0.00160743)"
|
||||
style="fill:#aa8800;stroke:#aa8800"><path
|
||||
style="fill:#aa8800;stroke:#aa8800;stroke-width:0.25"
|
||||
d="m 21.203142,10.467879 c -7.143366,0 -12.9794492,5.550416 -12.9794492,12.344126 0,3.552267 1.6341034,6.971323 4.3887352,9.280296 2.054301,1.953747 1.867546,6.12766 1.820858,6.172064 0,0.222016 0.04669,0.39963 0.233443,0.577243 0.140066,0.13321 0.373509,0.222017 0.560264,0.222017 h 11.90561 c 0.233444,0 0.420198,-0.08881 0.560264,-0.222017 0.140066,-0.13321 0.233444,-0.355227 0.233444,-0.577243 0,-0.0444 -0.233444,-4.218317 1.820858,-6.172064 0.04669,-0.0444 0.09338,-0.08881 0.140066,-0.13321 2.707942,-2.353376 4.295357,-5.683626 4.295357,-9.147086 0,-6.79371 -5.836083,-12.344126 -12.97945,-12.344126 z m 7.470187,20.469936 c -0.04669,0.0444 -0.140066,0.13321 -0.140066,0.177613 -1.820858,1.86494 -2.147678,4.92877 -2.194367,6.39408 H 16.0207 c -0.04669,-1.46531 -0.373509,-4.66235 -2.334433,-6.571693 -2.474499,-2.042554 -3.9218482,-5.017577 -3.9218482,-8.170213 0,-5.99445 5.0890652,-10.834413 11.3920352,-10.834413 6.30297,0 11.392035,4.839963 11.392035,10.834413 0,3.152636 -1.40066,6.127659 -3.87516,8.170213 z"
|
||||
id="path3812"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#aa8800"
|
||||
d="m 216.129,121.6 c -3.6,0 -6.8,3.2 -6.8,6.8 0,3.6 3.2,6.8 6.8,6.8 40.4,0 72.8,32.8 72.8,72.8 0,3.6 3.2,6.8 6.8,6.8 3.6,0 6.8,-3.2 6.8,-6.8 0.4,-47.6 -38.4,-86.4 -86.4,-86.4 z"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:#aa8800;stroke:#aa8800;stroke-width:0.25"
|
||||
d="m 21.156454,13.620515 c -0.420198,0 -0.793708,0.355227 -0.793708,0.754857 0,0.39963 0.37351,0.754857 0.793708,0.754857 4.715555,0 8.497337,3.641073 8.497337,8.081406 0,0.39963 0.37351,0.754857 0.793708,0.754857 0.420198,0 0.793707,-0.355227 0.793707,-0.754857 0.04669,-5.283997 -4.482112,-9.59112 -10.084752,-9.59112 z"
|
||||
id="path3814"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#aa8800"
|
||||
d="m 260.529,358.4 h -88.8 c -9.2,0 -16.8,7.6 -16.8,16.8 0,9.2 7.6,16.8 16.8,16.8 h 88.4 c 9.6,-0.4 17.2,-7.6 17.2,-16.8 0,-9.2 -7.6,-16.8 -16.8,-16.8 z m 0,19.6 h -88.8 c -1.6,0 -3.2,-1.2 -3.2,-3.2 0,-2 1.2,-3.2 3.2,-3.2 h 88.4 c 1.6,0 3.2,1.2 3.2,3.2 0,2 -1.2,3.2 -2.8,3.2 z"
|
||||
id="path3816"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#aa8800"
|
||||
d="m 247.329,398.8 h -62.4 c -9.2,0 -16.8,7.6 -16.8,16.8 0,9.2 7.6,16.8 16.8,16.8 h 62.4 c 9.2,0 16.8,-7.6 16.8,-16.8 0,-9.6 -7.6,-16.8 -16.8,-16.8 z m 0,19.6 h -62.4 c -1.6,0 -3.2,-1.2 -3.2,-3.2 0,-2 1.2,-3.2 3.2,-3.2 h 62.4 c 1.6,0 3.2,1.2 3.2,3.2 0,2 -1.6,3.2 -3.2,3.2 z"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:#aa8800;stroke:#aa8800;stroke-width:0.25"
|
||||
d="m 24.79817,42.392024 h -7.283432 c -1.07384,0 -1.960924,0.843664 -1.960924,1.86494 0,1.021277 0.887084,1.86494 1.960924,1.86494 h 7.283432 c 1.073839,0 1.960924,-0.843663 1.960924,-1.86494 0,-1.06568 -0.887085,-1.86494 -1.960924,-1.86494 z m 0,2.175764 h -7.283432 c -0.186755,0 -0.37351,-0.13321 -0.37351,-0.355227 0,-0.222017 0.140066,-0.355227 0.37351,-0.355227 h 7.283432 c 0.186755,0 0.373509,0.13321 0.373509,0.355227 0,0.222017 -0.186754,0.355227 -0.373509,0.355227 z"
|
||||
id="path3818"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#aa8800"
|
||||
d="m 216.129,60 c 4,0 6.8,-3.2 6.8,-6.8 V 6.8 c 0,-3.6 -3.2,-6.8 -6.8,-6.8 -3.6,0 -6.8,3.2 -6.8,6.8 v 46.4 c 0,3.6 3.2,6.8 6.8,6.8 z"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:#aa8800;stroke:#aa8800;stroke-width:0.25"
|
||||
d="m 21.156454,6.7824021 c 0.466886,0 0.793707,-0.3552266 0.793707,-0.7548566 V 0.87675898 c 0,-0.39962998 -0.373509,-0.75485664 -0.793707,-0.75485664 -0.420198,0 -0.793708,0.35522666 -0.793708,0.75485664 V 6.0275455 c 0,0.39963 0.37351,0.7548566 0.793708,0.7548566 z"
|
||||
id="path3820"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#aa8800"
|
||||
d="m 329.329,34.4 c -3.2,-2.4 -7.2,-1.2 -9.2,1.6 l -25.6,38.4 c -2.4,3.2 -1.6,7.6 1.6,9.6 1.2,0.8 2.4,1.2 3.6,1.2 2.4,0 4.4,-1.2 5.6,-3.2 l 25.6,-38.4 c 2.4,-2.8 1.6,-7.2 -1.6,-9.2 z"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:#aa8800;stroke:#aa8800;stroke-width:0.25"
|
||||
d="m 34.369347,3.9405889 c -0.373509,-0.26642 -0.840396,-0.13321 -1.07384,0.1776133 l -2.988074,4.2627199 c -0.280132,0.3552266 -0.186755,0.8436633 0.186754,1.06568 0.140066,0.088807 0.280132,0.13321 0.420198,0.13321 0.280132,0 0.513576,-0.13321 0.653642,-0.3552267 L 34.556102,4.9618655 C 34.836234,4.6510422 34.742856,4.1626056 34.369347,3.9405889 Z"
|
||||
id="path3822"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#aa8800"
|
||||
d="m 134.929,83.6 c 1.2,0 2.4,-0.4 3.6,-1.2 3.2,-2 4,-6.4 2,-9.6 L 115.729,34 c -2,-3.2 -6.4,-4 -9.6,-2 -3.2,2 -4,6.4 -2,9.6 l 24.8,38.8 c 1.6,2.4 3.6,3.2 6,3.2 z"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:#aa8800;stroke:#aa8800;stroke-width:0.25"
|
||||
d="m 11.678654,9.4021987 c 0.140066,0 0.280132,-0.044403 0.420198,-0.13321 0.37351,-0.2220166 0.466887,-0.7104533 0.233444,-1.0656799 L 9.4375981,3.8961856 C 9.2041548,3.5409589 8.6905795,3.4521522 8.3170701,3.6741689 7.9435608,3.8961856 7.8501834,4.3846222 8.0836268,4.7398489 l 2.8946972,4.3071232 c 0.186755,0.26642 0.420198,0.3552266 0.70033,0.3552266 z"
|
||||
id="path3824"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#aa8800"
|
||||
d="m 86.529,126 -40.4,-22 c -3.2,-1.6 -7.6,-0.4 -9.2,2.8 -2,3.2 -0.8,7.6 2.8,9.2 l 40.4,22 c 1.2,0.4 2,0.8 3.2,0.8 2.4,0 4.8,-1.2 6,-3.6 1.6,-3.2 0.4,-7.6 -2.8,-9.2 z"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:#aa8800;stroke:#aa8800;stroke-width:0.25"
|
||||
d="M 6.0293254,14.108952 1.3137699,11.666769 c -0.37350933,-0.177614 -0.88708468,-0.0444 -1.07383935,0.310823 -0.23344334,0.355227 -0.0933773,0.843663 0.32682068,1.021277 l 4.71555547,2.442183 c 0.140066,0.0444 0.2334433,0.08881 0.3735093,0.08881 0.280132,0 0.5602641,-0.13321 0.7003301,-0.39963 0.1867546,-0.355227 0.046689,-0.843664 -0.3268207,-1.021277 z"
|
||||
id="path3826"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#aa8800"
|
||||
d="m 395.729,106.8 c -1.6,-3.2 -6,-4.4 -9.2,-2.8 l -40.8,22 c -3.2,1.6 -4.4,6 -2.8,9.2 1.2,2.4 3.6,3.6 6,3.6 1.2,0 2.4,-0.4 3.2,-0.8 l 40.8,-22 c 3.2,-1.6 4.4,-6 2.8,-9.2 z"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:#aa8800;stroke:#aa8800;stroke-width:0.25"
|
||||
d="m 42.119666,11.977592 c -0.186755,-0.355227 -0.70033,-0.488437 -1.07384,-0.310823 l -4.762244,2.442183 c -0.373509,0.177613 -0.513575,0.66605 -0.32682,1.021277 0.140066,0.26642 0.420198,0.39963 0.70033,0.39963 0.140066,0 0.280132,-0.0444 0.373509,-0.08881 l 4.762244,-2.442183 c 0.373509,-0.177614 0.513575,-0.66605 0.326821,-1.021277 z"
|
||||
id="path3828"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
inkscape:connector-curvature="0" /></g>
|
||||
<g
|
||||
id="g3836"
|
||||
transform="translate(-35.965532,-384.4)">
|
||||
transform="translate(-38.804984,-406.525)">
|
||||
</g>
|
||||
<g
|
||||
id="g3838"
|
||||
transform="translate(-35.965532,-384.4)">
|
||||
transform="translate(-38.804984,-406.525)">
|
||||
</g>
|
||||
<g
|
||||
id="g3840"
|
||||
transform="translate(-35.965532,-384.4)">
|
||||
transform="translate(-38.804984,-406.525)">
|
||||
</g>
|
||||
<g
|
||||
id="g3842"
|
||||
transform="translate(-35.965532,-384.4)">
|
||||
transform="translate(-38.804984,-406.525)">
|
||||
</g>
|
||||
<g
|
||||
id="g3844"
|
||||
transform="translate(-35.965532,-384.4)">
|
||||
transform="translate(-38.804984,-406.525)">
|
||||
</g>
|
||||
<g
|
||||
id="g3846"
|
||||
transform="translate(-35.965532,-384.4)">
|
||||
transform="translate(-38.804984,-406.525)">
|
||||
</g>
|
||||
<g
|
||||
id="g3848"
|
||||
transform="translate(-35.965532,-384.4)">
|
||||
transform="translate(-38.804984,-406.525)">
|
||||
</g>
|
||||
<g
|
||||
id="g3850"
|
||||
transform="translate(-35.965532,-384.4)">
|
||||
transform="translate(-38.804984,-406.525)">
|
||||
</g>
|
||||
<g
|
||||
id="g3852"
|
||||
transform="translate(-35.965532,-384.4)">
|
||||
transform="translate(-38.804984,-406.525)">
|
||||
</g>
|
||||
<g
|
||||
id="g3854"
|
||||
transform="translate(-35.965532,-384.4)">
|
||||
transform="translate(-38.804984,-406.525)">
|
||||
</g>
|
||||
<g
|
||||
id="g3856"
|
||||
transform="translate(-35.965532,-384.4)">
|
||||
transform="translate(-38.804984,-406.525)">
|
||||
</g>
|
||||
<g
|
||||
id="g3858"
|
||||
transform="translate(-35.965532,-384.4)">
|
||||
transform="translate(-38.804984,-406.525)">
|
||||
</g>
|
||||
<g
|
||||
id="g3860"
|
||||
transform="translate(-35.965532,-384.4)">
|
||||
transform="translate(-38.804984,-406.525)">
|
||||
</g>
|
||||
<g
|
||||
id="g3862"
|
||||
transform="translate(-35.965532,-384.4)">
|
||||
transform="translate(-38.804984,-406.525)">
|
||||
</g>
|
||||
<g
|
||||
id="g3864"
|
||||
transform="translate(-35.965532,-384.4)">
|
||||
transform="translate(-38.804984,-406.525)">
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 5.7 KiB After Width: | Height: | Size: 7.3 KiB |
@@ -14,7 +14,7 @@
|
||||
sodipodi:docname="verified.svg"
|
||||
width="8"
|
||||
height="8"
|
||||
inkscape:version="0.92.4 5da689c313, 2019-01-14">
|
||||
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
|
||||
<metadata
|
||||
id="metadata823">
|
||||
<rdf:RDF>
|
||||
@@ -23,7 +23,7 @@
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
@@ -38,8 +38,8 @@
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1019"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="739"
|
||||
id="namedview819"
|
||||
showgrid="false"
|
||||
showborder="false"
|
||||
@@ -47,9 +47,9 @@
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:zoom="1.1923077"
|
||||
inkscape:cx="-358.68351"
|
||||
inkscape:cy="156.16568"
|
||||
inkscape:zoom="13.489422"
|
||||
inkscape:cx="24.427128"
|
||||
inkscape:cy="5.0927218"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
@@ -58,5 +58,5 @@
|
||||
d="M 0.09230771,4.4 C 0.03076924,4.32 0,4.2 0,4.12 0,4.04 0.03076924,3.92 0.09230771,3.84 l 0.4307693,-0.56 c 0.12307694,-0.16 0.30769231,-0.16 0.43076928,0 l 0.0307687,0.04 1.69230781,2.36 c 0.061539,0.08 0.1538463,0.08 0.2153848,0 L 7.0153863,0.12 h 0.030767 v 0 c 0.1230774,-0.16 0.3076932,-0.16 0.4307692,0 L 7.907692,0.68 c 0.1230773,0.16 0.1230773,0.4 0,0.56 v 0 L 2.9846157,7.88 C 2.9230775,7.96 2.8615389,8 2.7692313,8 2.6769233,8 2.6153851,7.96 2.5538465,7.88 L 0.15384617,4.52 Z"
|
||||
id="path815"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#00aa00;stroke-width:0.35082322" />
|
||||
style="fill:#68a92e;stroke-width:0.35082322;fill-opacity:1" />
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |