Icons, Splashscreen und Pokemonlst

This commit is contained in:
Carsten Hilmer 2016-08-26 01:22:24 +02:00
parent 60f1e835df
commit 6a0a74191e
35 changed files with 525 additions and 496 deletions

View File

@ -1,11 +1,11 @@
<?xml version='1.0' encoding='utf-8'?> <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<widget id="com.raataar.pokedexhelper" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0"> <widget id="com.raataar.pokedexhelper" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>Pokedex Helper</name> <name>Pokedex Helper</name>
<description> <description>&#xD;
Pokedex Helper - Das Trainertool Deluxe Pokedex Helper - Das Trainertool Deluxe&#xD;
</description> </description>
<author email="info@raataar.de" href="http://www.raataar.de"> <author email="info@raataar.de" href="http://www.raataar.de">&#xD;
Ionic Up Team Ionic Up Team&#xD;
</author> </author>
<content src="index.html"/> <content src="index.html"/>
<allow-navigation href="tel:*"/> <allow-navigation href="tel:*"/>
@ -21,6 +21,10 @@
<preference name="android-minSdkVersion" value="16"/> <preference name="android-minSdkVersion" value="16"/>
<preference name="BackupWebStorage" value="none"/> <preference name="BackupWebStorage" value="none"/>
<preference name="SplashScreen" value="screen"/> <preference name="SplashScreen" value="screen"/>
<preference name="xwalkVersion" value="19+"/>
<preference name="xwalkCommandLine" value="--disable-pull-to-refresh-effect"/>
<preference name="xwalkMode" value="embedded"/>
<preference name="xwalkMultipleApk" value="true"/>
<feature name="StatusBar"> <feature name="StatusBar">
<param name="ios-package" onload="true" value="CDVStatusBar"/> <param name="ios-package" onload="true" value="CDVStatusBar"/>
</feature> </feature>
@ -57,28 +61,24 @@
<splash height="480" src="resources/ios/splash/Default~iphone.png" width="320"/> <splash height="480" src="resources/ios/splash/Default~iphone.png" width="320"/>
</platform> </platform>
<platform name="android"> <platform name="android">
<icon density="ldpi" src="resources/android/icon/drawable-ldpi-icon.png" /> <icon src="resources\android\icon\drawable-ldpi-icon.png" density="ldpi"/>
<icon density="mdpi" src="resources/android/icon/drawable-mdpi-icon.png" /> <icon src="resources\android\icon\drawable-mdpi-icon.png" density="mdpi"/>
<icon density="hdpi" src="resources/android/icon/drawable-hdpi-icon.png" /> <icon src="resources\android\icon\drawable-hdpi-icon.png" density="hdpi"/>
<icon density="xhdpi" src="resources/android/icon/drawable-xhdpi-icon.png" /> <icon src="resources\android\icon\drawable-xhdpi-icon.png" density="xhdpi"/>
<icon density="xxhdpi" src="resources/android/icon/drawable-xxhdpi-icon.png" /> <icon src="resources\android\icon\drawable-xxhdpi-icon.png" density="xxhdpi"/>
<icon density="xxxhdpi" src="resources/android/icon/drawable-xxxhdpi-icon.png" /> <icon src="resources\android\icon\drawable-xxxhdpi-icon.png" density="xxxhdpi"/>
<splash density="land-ldpi" src="resources/android/splash/drawable-land-ldpi-screen.png" /> <splash src="resources\android\splash\drawable-land-ldpi-screen.png" density="land-ldpi"/>
<splash density="land-mdpi" src="resources/android/splash/drawable-land-mdpi-screen.png" /> <splash src="resources\android\splash\drawable-land-mdpi-screen.png" density="land-mdpi"/>
<splash density="land-hdpi" src="resources/android/splash/drawable-land-hdpi-screen.png" /> <splash src="resources\android\splash\drawable-land-hdpi-screen.png" density="land-hdpi"/>
<splash density="land-xhdpi" src="resources/android/splash/drawable-land-xhdpi-screen.png" /> <splash src="resources\android\splash\drawable-land-xhdpi-screen.png" density="land-xhdpi"/>
<splash density="land-xxhdpi" src="resources/android/splash/drawable-land-xxhdpi-screen.png" /> <splash src="resources\android\splash\drawable-land-xxhdpi-screen.png" density="land-xxhdpi"/>
<splash density="land-xxxhdpi" src="resources/android/splash/drawable-land-xxxhdpi-screen.png" /> <splash src="resources\android\splash\drawable-land-xxxhdpi-screen.png" density="land-xxxhdpi"/>
<splash density="port-ldpi" src="resources/android/splash/drawable-port-ldpi-screen.png" /> <splash src="resources\android\splash\drawable-port-ldpi-screen.png" density="port-ldpi"/>
<splash density="port-mdpi" src="resources/android/splash/drawable-port-mdpi-screen.png" /> <splash src="resources\android\splash\drawable-port-mdpi-screen.png" density="port-mdpi"/>
<splash density="port-hdpi" src="resources/android/splash/drawable-port-hdpi-screen.png" /> <splash src="resources\android\splash\drawable-port-hdpi-screen.png" density="port-hdpi"/>
<splash density="port-xhdpi" src="resources/android/splash/drawable-port-xhdpi-screen.png" /> <splash src="resources\android\splash\drawable-port-xhdpi-screen.png" density="port-xhdpi"/>
<splash density="port-xxhdpi" src="resources/android/splash/drawable-port-xxhdpi-screen.png" /> <splash src="resources\android\splash\drawable-port-xxhdpi-screen.png" density="port-xxhdpi"/>
<splash density="port-xxxhdpi" src="resources/android/splash/drawable-port-xxxhdpi-screen.png" /> <splash src="resources\android\splash\drawable-port-xxxhdpi-screen.png" density="port-xxxhdpi"/>
</platform> </platform>
<icon src="resources/android/icon/drawable-xhdpi-icon.png" /> <icon src="resources\android\icon\drawable-xhdpi-icon.png"/>
<preference name="xwalkVersion" value="19+" />
<preference name="xwalkCommandLine" value="--disable-pull-to-refresh-effect" />
<preference name="xwalkMode" value="embedded" />
<preference name="xwalkMultipleApk" value="true" />
</widget> </widget>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.4 KiB

After

Width:  |  Height:  |  Size: 8.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.2 KiB

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 74 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.7 KiB

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 58 KiB

After

Width:  |  Height:  |  Size: 144 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 80 KiB

After

Width:  |  Height:  |  Size: 204 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 108 KiB

After

Width:  |  Height:  |  Size: 267 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 72 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.7 KiB

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 58 KiB

After

Width:  |  Height:  |  Size: 140 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 79 KiB

After

Width:  |  Height:  |  Size: 197 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 107 KiB

After

Width:  |  Height:  |  Size: 260 KiB

BIN
resources/icon.psd Normal file

Binary file not shown.

BIN
resources/splash.psd Normal file

Binary file not shown.

View File

@ -484,29 +484,29 @@ md-sidenav {
overflow-x: hidden; overflow-x: hidden;
text-overflow: ellipsis; } text-overflow: ellipsis; }
#contract-list-content { #pokemon-list-content {
margin-top: 84px; } margin-top: 84px; }
#contract-list-content .contract-list-item { #pokemon-list-content .pokemon-list-item {
padding: 14px 5px 14px 5px; } padding: 14px 5px 14px 5px; }
#contract-list-content .contract-list-item .col-25.icon-user { #pokemon-list-content .pokemon-list-item .col-25.icon-user {
text-align: center; text-align: center;
margin-left: -2px; } margin-left: -2px; }
#contract-list-content .contract-list-item .col-25.icon-user i { #pokemon-list-content .pokemon-list-item .col-25.icon-user i {
font-size: 22px; font-size: 22px;
color: gray; } color: gray; }
#contract-list-content .contract-list-item .col-50 { #pokemon-list-content .pokemon-list-item .col-50 {
margin-left: -5px; margin-left: -5px;
font-size: 15px; font-size: 15px;
white-space: nowrap; white-space: nowrap;
overflow-x: hidden; overflow-x: hidden;
text-overflow: ellipsis; } text-overflow: ellipsis; }
#contract-list-content .contract-list-item .col-25.status-button md-menu { #pokemon-list-content .pokemon-list-item .col-25.status-button md-menu {
padding: 0 20px 0 0; padding: 0 20px 0 0;
float: right; } float: right; }
#contract-list-content .contract-list-item .col-25.status-button md-menu p { #pokemon-list-content .pokemon-list-item .col-25.status-button md-menu p {
margin: 0; } margin: 0; }
#contract-list-loading-progress { #pokemon-list-loading-progress {
top: 56% !important; } top: 56% !important; }
#contract-details-content { #contract-details-content {
@ -784,7 +784,7 @@ md-sidenav {
#product-detail-tab-product div.pin a { #product-detail-tab-product div.pin a {
width: 92%; } width: 92%; }
#mobile-contract-list-content { #mobile-pokemon-list-content {
margin-top: 164px; } margin-top: 164px; }
#mobile-contract-detail-content { #mobile-contract-detail-content {

BIN
www/img/icons/action.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@ -12,12 +12,12 @@
width="210mm" width="210mm"
height="297mm" height="297mm"
viewBox="0 0 744.09448819 1052.3622047" viewBox="0 0 744.09448819 1052.3622047"
id="svg9591" id="svg2"
version="1.1" version="1.1"
inkscape:version="0.91 r13725" inkscape:version="0.91 r13725"
sodipodi:docname="action.svg"> sodipodi:docname="action.svg">
<defs <defs
id="defs9593" /> id="defs4" />
<sodipodi:namedview <sodipodi:namedview
id="base" id="base"
pagecolor="#ffffff" pagecolor="#ffffff"
@ -26,18 +26,18 @@
inkscape:pageopacity="0.0" inkscape:pageopacity="0.0"
inkscape:pageshadow="2" inkscape:pageshadow="2"
inkscape:zoom="0.35" inkscape:zoom="0.35"
inkscape:cx="-249.28571" inkscape:cx="-275"
inkscape:cy="520" inkscape:cy="520"
inkscape:document-units="px" inkscape:document-units="px"
inkscape:current-layer="layer1" inkscape:current-layer="g11245"
showgrid="false" showgrid="false"
inkscape:window-width="1680" inkscape:window-width="1920"
inkscape:window-height="987" inkscape:window-height="1137"
inkscape:window-x="-8" inkscape:window-x="-8"
inkscape:window-y="-8" inkscape:window-y="-8"
inkscape:window-maximized="1" /> inkscape:window-maximized="1" />
<metadata <metadata
id="metadata9596"> id="metadata7">
<rdf:RDF> <rdf:RDF>
<cc:Work <cc:Work
rdf:about=""> rdf:about="">
@ -53,14 +53,25 @@
inkscape:groupmode="layer" inkscape:groupmode="layer"
id="layer1"> id="layer1">
<g <g
id="g11245" id="layer1-8"
transform="translate(42.857143,8.5714286)"> inkscape:label="Ebene 1"
transform="matrix(1.3271031,0,0,1.3981022,-94.486153,-42.612342)">
<g <g
transform="matrix(0.39116815,0,0,0.29510598,249.05408,7.43675)" transform="translate(42.857143,8.5714286)"
id="g9338"> id="g11245">
<g <g
id="g4139" id="g3532"
transform="matrix(8.0238236,0,0,8.5196074,-554.8861,-1.1236718)"> inkscape:export-xdpi="3.1858134"
inkscape:export-ydpi="3.1858134">
<g
id="g4443"
transform="matrix(1.8255092,0,0,1.949149,-478.52913,-33.514928)">
<g
id="g9338"
transform="matrix(0.39116815,0,0,0.29510598,249.05408,7.43675)">
<g
transform="matrix(8.0238236,0,0,8.5196074,-554.8861,-1.1236718)"
id="g4139">
<g <g
id="g4141"> id="g4141">
<g <g
@ -68,42 +79,42 @@
<g <g
id="g4145"> id="g4145">
<path <path
id="path4147" inkscape:connector-curvature="0"
d="m 125.414,74.633 c 0,6.701 -5.434,12.137 -12.135,12.137 l -99.644,0 C 6.934,86.77 1.5,81.334 1.5,74.633 l 0,-29.078 c 0,-6.703 5.434,-12.137 12.135,-12.137 l 99.645,0 c 6.701,0 12.135,5.434 12.135,12.137 l 0,29.078 z"
style="fill:#7bc7ff" style="fill:#7bc7ff"
inkscape:connector-curvature="0" /> d="m 125.414,74.633 c 0,6.701 -5.434,12.137 -12.135,12.137 l -99.644,0 C 6.934,86.77 1.5,81.334 1.5,74.633 l 0,-29.078 c 0,-6.703 5.434,-12.137 12.135,-12.137 l 99.645,0 c 6.701,0 12.135,5.434 12.135,12.137 l 0,29.078 z"
id="path4147" />
</g> </g>
<g <g
id="g4149"> id="g4149">
<path <path
id="path4151" inkscape:connector-curvature="0"
d="m 113.279,33.418 -99.644,0 C 6.934,33.418 1.5,38.852 1.5,45.555 l 0,23.828 c 0,6.701 5.434,12.137 12.135,12.137 l 99.645,0 c 6.701,0 12.135,-5.436 12.135,-12.137 l 0,-23.828 C 125.414,38.852 119.98,33.418 113.279,33.418 Z"
style="fill:#0086ff" style="fill:#0086ff"
inkscape:connector-curvature="0" /> d="m 113.279,33.418 -99.644,0 C 6.934,33.418 1.5,38.852 1.5,45.555 l 0,23.828 c 0,6.701 5.434,12.137 12.135,12.137 l 99.645,0 c 6.701,0 12.135,-5.436 12.135,-12.137 l 0,-23.828 C 125.414,38.852 119.98,33.418 113.279,33.418 Z"
id="path4151" />
</g> </g>
<g <g
id="g4153"> id="g4153">
<path <path
id="path4155" inkscape:connector-curvature="0"
d="m 113.279,88.27 -99.644,0 C 6.116,88.27 0,82.152 0,74.633 L 0,45.555 C 0,38.035 6.116,31.918 13.635,31.918 l 99.645,0 c 7.519,0 13.635,6.117 13.635,13.637 l 0,29.078 c -0.001,7.519 -6.117,13.637 -13.636,13.637 z M 13.635,34.918 C 7.771,34.918 3,39.689 3,45.555 L 3,74.633 C 3,80.498 7.771,85.27 13.635,85.27 l 99.645,0 c 5.864,0 10.635,-4.771 10.635,-10.637 l 0,-29.078 c 0,-5.865 -4.771,-10.637 -10.635,-10.637 l -99.645,0 z"
style="fill:#33363a" style="fill:#33363a"
inkscape:connector-curvature="0" /> d="m 113.279,88.27 -99.644,0 C 6.116,88.27 0,82.152 0,74.633 L 0,45.555 C 0,38.035 6.116,31.918 13.635,31.918 l 99.645,0 c 7.519,0 13.635,6.117 13.635,13.637 l 0,29.078 c -0.001,7.519 -6.117,13.637 -13.636,13.637 z M 13.635,34.918 C 7.771,34.918 3,39.689 3,45.555 L 3,74.633 C 3,80.498 7.771,85.27 13.635,85.27 l 99.645,0 c 5.864,0 10.635,-4.771 10.635,-10.637 l 0,-29.078 c 0,-5.865 -4.771,-10.637 -10.635,-10.637 l -99.645,0 z"
id="path4155" />
</g> </g>
</g> </g>
<g <g
id="g4157"> id="g4157">
<polyline <polyline
id="polyline4159" style="fill:#7bc7ff"
points="76.715,82.922 63.457,96.18 50.199,82.922 " points="76.715,82.922 63.457,96.18 50.199,82.922 "
style="fill:#7bc7ff" /> id="polyline4159" />
</g> </g>
<g <g
id="g4161"> id="g4161">
<path <path
id="path4163" inkscape:connector-curvature="0"
d="m 63.457,97.68 c -0.384,0 -0.768,-0.146 -1.061,-0.439 L 49.139,83.982 c -0.586,-0.586 -0.586,-1.535 0,-2.121 0.586,-0.586 1.535,-0.586 2.121,0 L 63.457,94.058 75.654,81.861 c 0.586,-0.586 1.535,-0.586 2.121,0 0.586,0.586 0.586,1.535 0,2.121 L 64.518,97.24 c -0.293,0.293 -0.677,0.44 -1.061,0.44 z"
style="fill:#33363a" style="fill:#33363a"
inkscape:connector-curvature="0" /> d="m 63.457,97.68 c -0.384,0 -0.768,-0.146 -1.061,-0.439 L 49.139,83.982 c -0.586,-0.586 -0.586,-1.535 0,-2.121 0.586,-0.586 1.535,-0.586 2.121,0 L 63.457,94.058 75.654,81.861 c 0.586,-0.586 1.535,-0.586 2.121,0 0.586,0.586 0.586,1.535 0,2.121 L 64.518,97.24 c -0.293,0.293 -0.677,0.44 -1.061,0.44 z"
id="path4163" />
</g> </g>
</g> </g>
<g <g
@ -115,18 +126,18 @@
<g <g
id="g4171"> id="g4171">
<path <path
id="path4173" inkscape:connector-curvature="0"
d="m 63.459,11.785 c -0.828,0 -1.5,-0.672 -1.5,-1.5 l 0,-0.992 c 0,-0.828 0.672,-1.5 1.5,-1.5 0.828,0 1.5,0.672 1.5,1.5 l 0,0.992 c 0,0.828 -0.672,1.5 -1.5,1.5 z"
style="fill:#33363a" style="fill:#33363a"
inkscape:connector-curvature="0" /> d="m 63.459,11.785 c -0.828,0 -1.5,-0.672 -1.5,-1.5 l 0,-0.992 c 0,-0.828 0.672,-1.5 1.5,-1.5 0.828,0 1.5,0.672 1.5,1.5 l 0,0.992 c 0,0.828 -0.672,1.5 -1.5,1.5 z"
id="path4173" />
</g> </g>
<g <g
id="g4175"> id="g4175">
<path <path
id="path4177" inkscape:connector-curvature="0"
d="m 63.459,26.65 c -0.828,0 -1.5,-0.672 -1.5,-1.5 l 0,-5.824 c 0,-0.828 0.672,-1.5 1.5,-1.5 0.828,0 1.5,0.672 1.5,1.5 l 0,5.824 c 0,0.829 -0.672,1.5 -1.5,1.5 z"
style="fill:#33363a" style="fill:#33363a"
inkscape:connector-curvature="0" /> d="m 63.459,26.65 c -0.828,0 -1.5,-0.672 -1.5,-1.5 l 0,-5.824 c 0,-0.828 0.672,-1.5 1.5,-1.5 0.828,0 1.5,0.672 1.5,1.5 l 0,5.824 c 0,0.829 -0.672,1.5 -1.5,1.5 z"
id="path4177" />
</g> </g>
</g> </g>
<g <g
@ -136,18 +147,18 @@
<g <g
id="g4183"> id="g4183">
<path <path
id="path4185" inkscape:connector-curvature="0"
d="m 36.1,17.119 c -0.381,0 -0.763,-0.145 -1.055,-0.434 l -0.709,-0.701 c -0.589,-0.582 -0.595,-1.532 -0.012,-2.121 0.582,-0.589 1.533,-0.595 2.121,-0.012 l 0.709,0.701 c 0.589,0.582 0.595,1.532 0.012,2.121 -0.293,0.298 -0.68,0.446 -1.066,0.446 z"
style="fill:#33363a" style="fill:#33363a"
inkscape:connector-curvature="0" /> d="m 36.1,17.119 c -0.381,0 -0.763,-0.145 -1.055,-0.434 l -0.709,-0.701 c -0.589,-0.582 -0.595,-1.532 -0.012,-2.121 0.582,-0.589 1.533,-0.595 2.121,-0.012 l 0.709,0.701 c 0.589,0.582 0.595,1.532 0.012,2.121 -0.293,0.298 -0.68,0.446 -1.066,0.446 z"
id="path4185" />
</g> </g>
<g <g
id="g4187"> id="g4187">
<path <path
id="path4189" inkscape:connector-curvature="0"
d="m 46.611,27.635 c -0.384,0 -0.769,-0.146 -1.062,-0.439 l -4.123,-4.127 c -0.585,-0.587 -0.585,-1.536 10e-4,-2.122 0.586,-0.584 1.536,-0.585 2.122,0.001 l 4.123,4.127 c 0.585,0.587 0.585,1.536 -10e-4,2.122 -0.292,0.291 -0.676,0.438 -1.06,0.438 z"
style="fill:#33363a" style="fill:#33363a"
inkscape:connector-curvature="0" /> d="m 46.611,27.635 c -0.384,0 -0.769,-0.146 -1.062,-0.439 l -4.123,-4.127 c -0.585,-0.587 -0.585,-1.536 10e-4,-2.122 0.586,-0.584 1.536,-0.585 2.122,0.001 l 4.123,4.127 c 0.585,0.587 0.585,1.536 -10e-4,2.122 -0.292,0.291 -0.676,0.438 -1.06,0.438 z"
id="path4189" />
</g> </g>
</g> </g>
<g <g
@ -155,18 +166,18 @@
<g <g
id="g4193"> id="g4193">
<path <path
id="path4195" inkscape:connector-curvature="0"
d="m 90.818,17.123 c -0.384,0 -0.768,-0.146 -1.061,-0.439 -0.586,-0.586 -0.586,-1.535 0,-2.121 l 0.705,-0.705 c 0.586,-0.586 1.535,-0.586 2.121,0 0.586,0.586 0.586,1.535 0,2.121 l -0.705,0.705 c -0.292,0.293 -0.676,0.439 -1.06,0.439 z"
style="fill:#33363a" style="fill:#33363a"
inkscape:connector-curvature="0" /> d="m 90.818,17.123 c -0.384,0 -0.768,-0.146 -1.061,-0.439 -0.586,-0.586 -0.586,-1.535 0,-2.121 l 0.705,-0.705 c 0.586,-0.586 1.535,-0.586 2.121,0 0.586,0.586 0.586,1.535 0,2.121 l -0.705,0.705 c -0.292,0.293 -0.676,0.439 -1.06,0.439 z"
id="path4195" />
</g> </g>
<g <g
id="g4197"> id="g4197">
<path <path
id="path4199" inkscape:connector-curvature="0"
d="m 80.309,27.635 c -0.384,0 -0.767,-0.146 -1.06,-0.438 -0.587,-0.586 -0.587,-1.535 -0.002,-2.121 l 4.119,-4.125 c 0.586,-0.588 1.535,-0.586 2.121,-0.002 0.587,0.586 0.587,1.535 0.002,2.121 l -4.119,4.125 c -0.293,0.293 -0.678,0.44 -1.061,0.44 z"
style="fill:#33363a" style="fill:#33363a"
inkscape:connector-curvature="0" /> d="m 80.309,27.635 c -0.384,0 -0.767,-0.146 -1.06,-0.438 -0.587,-0.586 -0.587,-1.535 -0.002,-2.121 l 4.119,-4.125 c 0.586,-0.588 1.535,-0.586 2.121,-0.002 0.587,0.586 0.587,1.535 0.002,2.121 l -4.119,4.125 c -0.293,0.293 -0.678,0.44 -1.061,0.44 z"
id="path4199" />
</g> </g>
</g> </g>
</g> </g>
@ -178,18 +189,18 @@
<g <g
id="g4205"> id="g4205">
<path <path
id="path4207" inkscape:connector-curvature="0"
d="m 63.453,119.121 c -0.828,0 -1.5,-0.672 -1.5,-1.5 l 0,-0.992 c 0,-0.828 0.672,-1.5 1.5,-1.5 0.828,0 1.5,0.672 1.5,1.5 l 0,0.992 c 0,0.828 -0.672,1.5 -1.5,1.5 z"
style="fill:#33363a" style="fill:#33363a"
inkscape:connector-curvature="0" /> d="m 63.453,119.121 c -0.828,0 -1.5,-0.672 -1.5,-1.5 l 0,-0.992 c 0,-0.828 0.672,-1.5 1.5,-1.5 0.828,0 1.5,0.672 1.5,1.5 l 0,0.992 c 0,0.828 -0.672,1.5 -1.5,1.5 z"
id="path4207" />
</g> </g>
<g <g
id="g4209"> id="g4209">
<path <path
id="path4211" inkscape:connector-curvature="0"
d="m 63.453,109.088 c 0,0 0,0 0,0 -0.829,0 -1.5,-0.672 -1.5,-1.501 l 0.002,-5.824 c 0,-0.828 0.672,-1.499 1.5,-1.499 0,0 0,0 0.001,0 0.828,0 1.499,0.672 1.499,1.501 l -0.002,5.824 c 0,0.828 -0.672,1.499 -1.5,1.499 z"
style="fill:#33363a" style="fill:#33363a"
inkscape:connector-curvature="0" /> d="m 63.453,109.088 c 0,0 0,0 0,0 -0.829,0 -1.5,-0.672 -1.5,-1.501 l 0.002,-5.824 c 0,-0.828 0.672,-1.499 1.5,-1.499 0,0 0,0 0.001,0 0.828,0 1.499,0.672 1.499,1.501 l -0.002,5.824 c 0,0.828 -0.672,1.499 -1.5,1.499 z"
id="path4211" />
</g> </g>
</g> </g>
<g <g
@ -199,18 +210,18 @@
<g <g
id="g4217"> id="g4217">
<path <path
id="path4219" inkscape:connector-curvature="0"
d="m 91.523,113.496 c -0.381,0 -0.763,-0.145 -1.055,-0.434 l -0.709,-0.701 c -0.589,-0.582 -0.595,-1.532 -0.012,-2.121 0.581,-0.59 1.532,-0.594 2.121,-0.012 l 0.709,0.701 c 0.589,0.582 0.595,1.532 0.012,2.121 -0.292,0.298 -0.679,0.446 -1.066,0.446 z"
style="fill:#33363a" style="fill:#33363a"
inkscape:connector-curvature="0" /> d="m 91.523,113.496 c -0.381,0 -0.763,-0.145 -1.055,-0.434 l -0.709,-0.701 c -0.589,-0.582 -0.595,-1.532 -0.012,-2.121 0.581,-0.59 1.532,-0.594 2.121,-0.012 l 0.709,0.701 c 0.589,0.582 0.595,1.532 0.012,2.121 -0.292,0.298 -0.679,0.446 -1.066,0.446 z"
id="path4219" />
</g> </g>
<g <g
id="g4221"> id="g4221">
<path <path
id="path4223" inkscape:connector-curvature="0"
d="m 84.426,106.408 c -0.384,0 -0.769,-0.146 -1.062,-0.439 l -4.123,-4.127 c -0.585,-0.587 -0.585,-1.536 0.001,-2.122 0.586,-0.584 1.536,-0.585 2.122,0.001 l 4.123,4.127 c 0.585,0.587 0.585,1.536 -10e-4,2.122 -0.293,0.292 -0.676,0.438 -1.06,0.438 z"
style="fill:#33363a" style="fill:#33363a"
inkscape:connector-curvature="0" /> d="m 84.426,106.408 c -0.384,0 -0.769,-0.146 -1.062,-0.439 l -4.123,-4.127 c -0.585,-0.587 -0.585,-1.536 0.001,-2.122 0.586,-0.584 1.536,-0.585 2.122,0.001 l 4.123,4.127 c 0.585,0.587 0.585,1.536 -10e-4,2.122 -0.293,0.292 -0.676,0.438 -1.06,0.438 z"
id="path4223" />
</g> </g>
</g> </g>
<g <g
@ -218,141 +229,154 @@
<g <g
id="g4227"> id="g4227">
<path <path
id="path4229" inkscape:connector-curvature="0"
d="m 35.391,113.496 c -0.384,0 -0.768,-0.146 -1.061,-0.439 -0.586,-0.586 -0.586,-1.535 0,-2.121 l 0.705,-0.705 c 0.586,-0.586 1.535,-0.586 2.121,0 0.586,0.586 0.586,1.535 0,2.121 l -0.705,0.705 c -0.293,0.293 -0.677,0.439 -1.06,0.439 z"
style="fill:#33363a" style="fill:#33363a"
inkscape:connector-curvature="0" /> d="m 35.391,113.496 c -0.384,0 -0.768,-0.146 -1.061,-0.439 -0.586,-0.586 -0.586,-1.535 0,-2.121 l 0.705,-0.705 c 0.586,-0.586 1.535,-0.586 2.121,0 0.586,0.586 0.586,1.535 0,2.121 l -0.705,0.705 c -0.293,0.293 -0.677,0.439 -1.06,0.439 z"
id="path4229" />
</g> </g>
<g <g
id="g4231"> id="g4231">
<path <path
id="path4233" inkscape:connector-curvature="0"
d="m 42.486,106.404 c -0.384,0 -0.767,-0.146 -1.06,-0.438 -0.587,-0.586 -0.587,-1.535 -0.002,-2.121 l 4.119,-4.125 c 0.586,-0.588 1.535,-0.586 2.121,-0.002 0.587,0.586 0.587,1.535 0.002,2.121 l -4.119,4.125 c -0.292,0.294 -0.677,0.44 -1.061,0.44 z"
style="fill:#33363a" style="fill:#33363a"
d="m 42.486,106.404 c -0.384,0 -0.767,-0.146 -1.06,-0.438 -0.587,-0.586 -0.587,-1.535 -0.002,-2.121 l 4.119,-4.125 c 0.586,-0.588 1.535,-0.586 2.121,-0.002 0.587,0.586 0.587,1.535 0.002,2.121 l -4.119,4.125 c -0.292,0.294 -0.677,0.44 -1.061,0.44 z"
id="path4233" />
</g>
</g>
</g>
</g>
</g>
</g>
<g
id="text3628"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:261.0692749px;line-height:125%;font-family:'Bauhaus 93';-inkscape-font-specification:'Bauhaus 93, ';letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
transform="scale(0.94317084,1.0602533)">
<path
id="path4435"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Segoe Print';-inkscape-font-specification:'Segoe Print Bold';fill:#ffffff;stroke:#000000;stroke-opacity:1"
d="m -301.07541,436.51458 -42.44925,57.36385 q -29.44678,41.1745 -45.38118,41.1745 -7.39356,0 -13.12995,-8.41336 -5.73638,-8.54084 -11.72772,-25.87748 -5.99134,-17.33663 -8.41337,-26.25989 -5.48143,-20.65099 -7.39356,-23.45545 l -6.50124,33.14356 q -3.0594,16.06188 -6.24628,29.57426 -3.18688,13.3849 -7.01114,32.25123 -3.69678,18.86634 -4.58911,28.42698 -0.25495,3.18688 -6.11881,6.88366 -5.73638,3.69678 -8.79579,3.69678 -6.11881,0 -11.47277,-5.73638 -5.22649,-5.60891 -5.22649,-10.8354 0,-12.23762 5.09901,-31.10395 21.03342,-77.25 23.96535,-97.26361 3.0594,-20.01361 3.0594,-33.27103 0,-6.88366 5.99134,-10.58045 5.99133,-3.69678 15.67945,-3.69678 5.22649,0 10.45297,6.88366 5.22649,6.88367 6.88366,12.74753 l -0.12747,-0.25495 17.71906,49.58786 q 10.58044,29.70173 14.14975,37.73267 13.76732,-14.9146 40.79207,-51.88242 27.02475,-36.84034 36.96782,-47.42078 9.94307,-10.58045 14.02227,-10.58045 6.24629,0 13.8948,5.22649 7.64852,5.22648 7.64852,8.92326 0,2.80446 -4.97154,38.37005 -3.44183,25.11262 -6.24628,56.21657 -2.80446,31.10396 -2.80446,36.71287 0,6.88366 1.78466,14.14975 1.27475,5.60891 1.27475,10.58045 0,12.62004 -4.46164,17.20915 -4.33415,4.58911 -13.51237,4.58911 -16.69926,0 -16.69926,-25.11262 0,-23.71039 4.33416,-57.87376 4.33416,-34.29083 7.90347,-52.64727 1.27475,-6.62871 1.65717,-9.17821 z"
inkscape:connector-curvature="0" />
<path
id="path4437"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Segoe Print';-inkscape-font-specification:'Segoe Print Bold';fill:#ffffff;stroke:#000000;stroke-opacity:1"
d="m -123.5024,533.01333 q 0,13.25742 -22.30817,31.74133 -22.30816,18.35643 -50.35271,18.35643 -21.54332,0 -33.90842,-13.51237 -12.36509,-13.63985 -12.36509,-37.86014 0,-35.69307 25.24009,-66.9245 25.2401,-31.23143 53.92202,-31.23143 14.27723,0 22.94555,9.05074 8.66831,9.05074 8.66831,21.54331 0,22.18069 -21.28836,42.32178 -21.28837,20.01361 -54.5594,27.66212 -3.82426,0.89233 -3.82426,4.58911 0,6.11881 5.35396,11.72772 5.48144,5.48144 14.53218,5.48144 25.62252,0 50.86262,-26.38737 4.84405,-5.09901 9.43316,-5.09901 7.64852,0 7.64852,8.54084 z m -85.53588,-22.56312 q 20.14108,-4.07921 35.43811,-17.20915 15.4245,-13.12995 15.4245,-23.83787 0,-4.20669 -2.42203,-7.01114 -2.29455,-2.93193 -5.99133,-2.93193 -11.09035,0 -24.60272,16.31683 -13.51238,16.31683 -17.84653,34.67326 z"
inkscape:connector-curvature="0" />
<path
id="path4439"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Segoe Print';-inkscape-font-specification:'Segoe Print Bold';fill:#ffffff;stroke:#000000;stroke-opacity:1"
d="m -73.532109,518.09873 q 21.160889,-39.6448 36.457916,-53.92203 15.424503,-14.4047 31.103957,-14.4047 10.8353947,0 17.974008,7.52104 7.266088,7.39356 10.580444,38.75247 1.402227,14.9146 3.569306,24.09282 2.167079,9.17822 4.844059,16.31683 2.67698,7.01114 7.648514,13.25742 3.824257,4.97154 3.824257,9.56065 0,4.5891 -4.461633,8.41336 -4.334158,3.82426 -10.070543,3.82426 -11.345296,0 -20.141087,-12.3651 -8.79579096,-12.3651 -10.452969,-34.16336 -2.0396037,-26.64233 -4.4616331,-34.03589 -2.2945542,-7.39356 -7.7759889,-7.39356 -7.393564,0 -28.809403,29.57425 -21.288363,29.44678 -30.721531,47.16584 -5.86386,13.3849 -9.050741,17.33663 -3.186881,3.95173 -7.903464,3.95173 -7.77599,0 -12.620049,-3.82426 -4.84406,-3.82425 -4.84406,-10.83539 0,-3.44183 3.44183,-21.54332 13.002477,-68.45419 21.288367,-145.70419 2.039604,-18.61138 7.775989,-25.62252 5.863861,-7.13861 10.707919,-7.13861 6.756188,0 11.727722,5.22648 4.971534,5.22649 4.971534,14.53218 0,14.27723 -3.441831,32.88861 -3.441832,18.61138 -12.874999,59.40346 -5.736385,24.60272 -8.28589,39.1349 z"
inkscape:connector-curvature="0" />
<path
id="path4441"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Segoe Print';-inkscape-font-specification:'Segoe Print Bold';fill:#ffffff;stroke:#000000;stroke-opacity:1"
d="m 92.568126,513.63709 2.167079,-4.07921 q 15.424505,-30.97648 33.143565,-50.22524 17.84653,-19.37623 34.80073,-19.37623 13.00248,0 21.16089,7.13861 8.28589,7.13861 8.28589,16.95421 0,6.11881 -2.80445,10.58044 -2.80446,4.33416 -7.77599,4.33416 -7.90347,0 -14.4047,-6.50124 -4.58911,-4.20668 -7.26609,-4.20668 -9.56064,0 -31.99628,29.70173 -22.43565,29.70173 -27.02475,66.79702 -1.402232,10.70792 -6.24629,14.9146 -4.844059,4.33416 -13.129949,4.33416 -8.795791,0 -12.492573,-9.94307 -3.696782,-10.07054 -3.696782,-32.76113 0,-9.30569 0.509901,-25.11262 0.509901,-14.91461 2.931931,-36.45792 0.637376,-5.60891 0.892326,-8.79579 1.147277,-12.49257 2.549505,-17.08168 1.529703,-4.71659 6.883662,-8.79579 5.35396,-4.07921 11.855197,-4.07921 6.883662,0 10.452972,3.95173 3.5693,3.95173 3.5693,8.66832 0,5.99133 -5.736382,24.85767 -2.039604,6.50123 -3.441831,15.55198 l -3.186881,19.63118 z"
inkscape:connector-curvature="0" /> inkscape:connector-curvature="0" />
</g> </g>
</g> </g>
</g>
</g>
</g>
</g>
<flowRoot
xml:space="preserve"
id="flowRoot9322"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:50px;line-height:125%;font-family:'Bauhaus 93';-inkscape-font-specification:'Bauhaus 93, ';letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
transform="matrix(4.9246584,0,0,5.5359911,1583.841,-1963.2064)"><flowRegion
id="flowRegion9324"><rect
id="rect9326"
width="725.71429"
height="180"
x="-417.14285"
y="420.93362"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:50px;font-family:'Bauhaus 93';-inkscape-font-specification:'Bauhaus 93, ';fill:#ffffff" /></flowRegion><flowPara
id="flowPara9328">Mehr</flowPara></flowRoot> </g>
<g <g
transform="matrix(2.2282447,0,0,2.1166385,297.20164,26.964033)" id="g5837"
id="g5837"> transform="matrix(2.2282447,0,0,2.1166385,297.20164,26.964033)">
<g <g
id="g5751"> id="g5751">
<g <g
id="g5753"> id="g5753">
<path <path
inkscape:connector-curvature="0" id="path5755"
style="fill:#ffffff"
d="m 114.67,52.203 -14.988,0 C 99.094,50.421 98.366,48.705 97.528,47.05 l 10.613,-10.611 c 4.595,-4.596 4.595,-12.046 0,-16.642 -4.597,-4.594 -12.047,-4.594 -16.643,0 L 80.889,30.409 c -1.656,-0.836 -3.371,-1.565 -5.154,-2.155 l 0,-14.986 c 0,-6.5 -5.268,-11.767 -11.766,-11.767 -6.5,0 -11.768,5.267 -11.768,11.767 l 0,14.985 c -1.781,0.59 -3.496,1.319 -5.15,2.155 L 36.439,19.795 c -4.597,-4.594 -12.048,-4.594 -16.643,0 -4.595,4.597 -4.595,12.047 0,16.642 L 30.41,47.049 c -0.838,1.652 -1.565,3.369 -2.156,5.153 l -14.988,0 C 6.769,52.203 1.5,57.469 1.5,63.97 c 0,6.497 5.268,11.765 11.768,11.765 l 14.986,0 c 0.589,1.783 1.316,3.498 2.154,5.15 L 19.797,91.499 c -4.595,4.598 -4.595,12.049 0,16.641 2.299,2.299 5.311,3.448 8.322,3.448 3.01,0 6.022,-1.149 8.32,-3.448 L 47.048,97.529 c 1.654,0.839 3.371,1.563 5.152,2.156 l 0,14.986 c 0,6.497 5.268,11.766 11.768,11.766 6.498,0 11.766,-5.269 11.766,-11.766 l 0,-14.987 c 1.783,-0.594 3.498,-1.317 5.154,-2.156 L 91.5,108.139 c 2.299,2.299 5.308,3.448 8.32,3.448 3.012,0 6.023,-1.149 8.32,-3.448 4.597,-4.596 4.595,-12.048 0,-16.641 L 97.527,80.889 c 0.838,-1.656 1.566,-3.371 2.154,-5.154 l 14.99,-0.002 c 6.497,0 11.766,-5.27 11.766,-11.765 -10e-4,-6.499 -5.27,-11.767 -11.767,-11.765 z M 78.059,63.968 c 0,7.769 -6.32,14.091 -14.09,14.091 -7.77,0 -14.092,-6.322 -14.092,-14.091 0,-7.771 6.322,-14.092 14.092,-14.092 7.77,0 14.09,6.322 14.09,14.092 z" d="m 114.67,52.203 -14.988,0 C 99.094,50.421 98.366,48.705 97.528,47.05 l 10.613,-10.611 c 4.595,-4.596 4.595,-12.046 0,-16.642 -4.597,-4.594 -12.047,-4.594 -16.643,0 L 80.889,30.409 c -1.656,-0.836 -3.371,-1.565 -5.154,-2.155 l 0,-14.986 c 0,-6.5 -5.268,-11.767 -11.766,-11.767 -6.5,0 -11.768,5.267 -11.768,11.767 l 0,14.985 c -1.781,0.59 -3.496,1.319 -5.15,2.155 L 36.439,19.795 c -4.597,-4.594 -12.048,-4.594 -16.643,0 -4.595,4.597 -4.595,12.047 0,16.642 L 30.41,47.049 c -0.838,1.652 -1.565,3.369 -2.156,5.153 l -14.988,0 C 6.769,52.203 1.5,57.469 1.5,63.97 c 0,6.497 5.268,11.765 11.768,11.765 l 14.986,0 c 0.589,1.783 1.316,3.498 2.154,5.15 L 19.797,91.499 c -4.595,4.598 -4.595,12.049 0,16.641 2.299,2.299 5.311,3.448 8.322,3.448 3.01,0 6.022,-1.149 8.32,-3.448 L 47.048,97.529 c 1.654,0.839 3.371,1.563 5.152,2.156 l 0,14.986 c 0,6.497 5.268,11.766 11.768,11.766 6.498,0 11.766,-5.269 11.766,-11.766 l 0,-14.987 c 1.783,-0.594 3.498,-1.317 5.154,-2.156 L 91.5,108.139 c 2.299,2.299 5.308,3.448 8.32,3.448 3.012,0 6.023,-1.149 8.32,-3.448 4.597,-4.596 4.595,-12.048 0,-16.641 L 97.527,80.889 c 0.838,-1.656 1.566,-3.371 2.154,-5.154 l 14.99,-0.002 c 6.497,0 11.766,-5.27 11.766,-11.765 -10e-4,-6.499 -5.27,-11.767 -11.767,-11.765 z M 78.059,63.968 c 0,7.769 -6.32,14.091 -14.09,14.091 -7.77,0 -14.092,-6.322 -14.092,-14.091 0,-7.771 6.322,-14.092 14.092,-14.092 7.77,0 14.09,6.322 14.09,14.092 z"
id="path5755" /> style="fill:#ffffff"
inkscape:connector-curvature="0" />
</g> </g>
<g <g
id="g5757"> id="g5757">
<path <path
inkscape:connector-curvature="0" id="path5759"
style="fill:#d8e5ea"
d="M 80.889,97.528 91.5,108.139 c 2.299,2.299 5.308,3.448 8.32,3.448 3.012,0 6.023,-1.149 8.32,-3.448 0.876,-0.875 1.581,-1.854 2.123,-2.898 -0.542,-1.041 -1.247,-2.023 -2.123,-2.899 L 97.527,91.732 c 0.838,-1.655 1.566,-3.371 2.154,-5.153 l 3.537,0 -5.691,-5.69 c 0.838,-1.656 1.566,-3.371 2.154,-5.154 l 14.99,-0.002 c 4.539,0 8.473,-2.576 10.435,-6.342 -1.962,-3.771 -5.896,-6.347 -10.437,-6.347 l -14.987,0 c -0.588,-1.782 -1.316,-3.497 -2.154,-5.153 l 5.691,-5.688 -3.537,0 C 99.094,50.421 98.366,48.705 97.528,47.05 l 10.613,-10.611 c 0.875,-0.875 1.581,-1.855 2.123,-2.899 -0.542,-1.042 -1.248,-2.021 -2.123,-2.897 -4.597,-4.598 -12.047,-4.598 -16.643,0 L 80.889,41.25 c -1.656,-0.836 -3.371,-1.563 -5.154,-2.153 l 0,-10.844 0,-4.143 c 0,-6.498 -5.268,-11.766 -11.766,-11.766 -6.5,0 -11.768,5.268 -11.768,11.766 l 0,4.144 0,10.844 c -1.781,0.591 -3.496,1.317 -5.15,2.153 L 36.439,30.641 c -4.597,-4.598 -12.048,-4.598 -16.643,0 -0.875,0.876 -1.581,1.855 -2.123,2.897 0.542,1.044 1.248,2.024 2.123,2.899 L 30.41,47.049 c -0.838,1.652 -1.565,3.369 -2.156,5.153 l -3.536,0 5.692,5.688 c -0.838,1.654 -1.565,3.369 -2.156,5.153 l -14.988,0 c -4.541,0 -8.475,2.579 -10.436,6.347 1.961,3.766 5.897,6.344 10.438,6.344 l 14.986,0 c 0.589,1.783 1.316,3.498 2.154,5.15 l -5.692,5.693 3.538,0 c 0.589,1.782 1.316,3.498 2.154,5.151 l -10.611,10.611 c -0.875,0.876 -1.581,1.858 -2.123,2.899 0.542,1.044 1.248,2.023 2.123,2.898 2.299,2.299 5.311,3.448 8.322,3.448 3.01,0 6.022,-1.149 8.32,-3.448 L 47.048,97.525 c 1.654,0.839 3.371,1.563 5.152,2.156 l 0,10.842 0,4.145 c 0,6.497 5.268,11.766 11.768,11.766 6.498,0 11.766,-5.269 11.766,-11.766 l 0,-4.145 0,-10.839 c 1.784,-0.594 3.498,-1.317 5.155,-2.156 z M 63.969,85.899 c -7.77,0 -14.092,-3.318 -14.092,-11.088 0,-1.921 0.389,-3.75 1.088,-5.42 -0.699,-1.67 -1.088,-3.502 -1.088,-5.423 0,-7.771 6.322,-14.092 14.092,-14.092 7.77,0 14.09,6.321 14.09,14.092 0,1.921 -0.389,3.753 -1.088,5.423 0.699,1.67 1.088,3.499 1.088,5.42 0,7.77 -6.321,11.088 -14.09,11.088 z" d="M 80.889,97.528 91.5,108.139 c 2.299,2.299 5.308,3.448 8.32,3.448 3.012,0 6.023,-1.149 8.32,-3.448 0.876,-0.875 1.581,-1.854 2.123,-2.898 -0.542,-1.041 -1.247,-2.023 -2.123,-2.899 L 97.527,91.732 c 0.838,-1.655 1.566,-3.371 2.154,-5.153 l 3.537,0 -5.691,-5.69 c 0.838,-1.656 1.566,-3.371 2.154,-5.154 l 14.99,-0.002 c 4.539,0 8.473,-2.576 10.435,-6.342 -1.962,-3.771 -5.896,-6.347 -10.437,-6.347 l -14.987,0 c -0.588,-1.782 -1.316,-3.497 -2.154,-5.153 l 5.691,-5.688 -3.537,0 C 99.094,50.421 98.366,48.705 97.528,47.05 l 10.613,-10.611 c 0.875,-0.875 1.581,-1.855 2.123,-2.899 -0.542,-1.042 -1.248,-2.021 -2.123,-2.897 -4.597,-4.598 -12.047,-4.598 -16.643,0 L 80.889,41.25 c -1.656,-0.836 -3.371,-1.563 -5.154,-2.153 l 0,-10.844 0,-4.143 c 0,-6.498 -5.268,-11.766 -11.766,-11.766 -6.5,0 -11.768,5.268 -11.768,11.766 l 0,4.144 0,10.844 c -1.781,0.591 -3.496,1.317 -5.15,2.153 L 36.439,30.641 c -4.597,-4.598 -12.048,-4.598 -16.643,0 -0.875,0.876 -1.581,1.855 -2.123,2.897 0.542,1.044 1.248,2.024 2.123,2.899 L 30.41,47.049 c -0.838,1.652 -1.565,3.369 -2.156,5.153 l -3.536,0 5.692,5.688 c -0.838,1.654 -1.565,3.369 -2.156,5.153 l -14.988,0 c -4.541,0 -8.475,2.579 -10.436,6.347 1.961,3.766 5.897,6.344 10.438,6.344 l 14.986,0 c 0.589,1.783 1.316,3.498 2.154,5.15 l -5.692,5.693 3.538,0 c 0.589,1.782 1.316,3.498 2.154,5.151 l -10.611,10.611 c -0.875,0.876 -1.581,1.858 -2.123,2.899 0.542,1.044 1.248,2.023 2.123,2.898 2.299,2.299 5.311,3.448 8.322,3.448 3.01,0 6.022,-1.149 8.32,-3.448 L 47.048,97.525 c 1.654,0.839 3.371,1.563 5.152,2.156 l 0,10.842 0,4.145 c 0,6.497 5.268,11.766 11.768,11.766 6.498,0 11.766,-5.269 11.766,-11.766 l 0,-4.145 0,-10.839 c 1.784,-0.594 3.498,-1.317 5.155,-2.156 z M 63.969,85.899 c -7.77,0 -14.092,-3.318 -14.092,-11.088 0,-1.921 0.389,-3.75 1.088,-5.42 -0.699,-1.67 -1.088,-3.502 -1.088,-5.423 0,-7.771 6.322,-14.092 14.092,-14.092 7.77,0 14.09,6.321 14.09,14.092 0,1.921 -0.389,3.753 -1.088,5.423 0.699,1.67 1.088,3.499 1.088,5.42 0,7.77 -6.321,11.088 -14.09,11.088 z"
id="path5759" /> style="fill:#d8e5ea"
inkscape:connector-curvature="0" />
</g> </g>
<g <g
id="g5761"> id="g5761">
<path <path
inkscape:connector-curvature="0" id="path5763"
style="fill:#33363a"
d="m 63.969,127.936 c -7.315,0 -13.268,-5.951 -13.268,-13.266 l 0,-13.921 c -1.129,-0.413 -2.249,-0.881 -3.35,-1.402 L 37.5,109.2 c -2.507,2.507 -5.839,3.888 -9.381,3.888 -3.544,0 -6.876,-1.381 -9.383,-3.888 -2.506,-2.504 -3.886,-5.834 -3.886,-9.378 0,-3.544 1.38,-6.876 3.886,-9.383 l 9.853,-9.855 c -0.525,-1.11 -0.995,-2.23 -1.401,-3.348 l -13.92,0 C 5.952,77.235 0,71.284 0,63.97 0,56.654 5.951,50.702 13.266,50.702 l 13.922,0 c 0.409,-1.121 0.878,-2.242 1.403,-3.351 l -9.854,-9.854 c -5.172,-5.172 -5.172,-13.59 0,-18.764 5.173,-5.171 13.591,-5.17 18.764,0 l 9.854,9.856 c 1.114,-0.527 2.234,-0.997 3.347,-1.403 l 0,-13.918 c 0,-7.315 5.952,-13.267 13.268,-13.267 7.314,0 13.266,5.951 13.266,13.267 l 0,13.919 c 1.112,0.406 2.233,0.875 3.351,1.404 l 9.853,-9.856 c 5.172,-5.171 13.59,-5.17 18.764,0 5.172,5.174 5.172,13.592 0,18.764 l -9.855,9.854 c 0.527,1.114 0.997,2.235 1.403,3.351 l 13.921,0 c 0.001,0 0.002,0 0.004,0 3.541,0 6.871,1.379 9.376,3.884 2.506,2.505 3.887,5.837 3.888,9.381 0,7.314 -5.951,13.265 -13.266,13.265 l -13.923,0.002 c -0.406,1.115 -0.875,2.236 -1.403,3.351 l 9.855,9.852 c 2.506,2.505 3.886,5.836 3.887,9.38 0,3.544 -1.38,6.876 -3.887,9.382 -2.505,2.507 -5.836,3.888 -9.381,3.888 -3.542,0 -6.874,-1.381 -9.381,-3.888 l -9.854,-9.854 c -1.104,0.522 -2.225,0.992 -3.352,1.403 l 0,13.921 c -0.002,7.314 -5.953,13.265 -13.267,13.265 z M 47.049,96.028 c 0.23,0 0.463,0.053 0.679,0.162 1.609,0.816 3.274,1.513 4.948,2.071 0.612,0.204 1.025,0.777 1.025,1.423 l 0,14.986 c 0,5.661 4.606,10.266 10.268,10.266 5.66,0 10.266,-4.605 10.266,-10.266 l 0,-14.986 c 0,-0.646 0.413,-1.219 1.026,-1.423 1.667,-0.555 3.333,-1.252 4.95,-2.071 0.578,-0.292 1.28,-0.181 1.738,0.278 l 10.611,10.611 c 1.94,1.94 4.519,3.009 7.26,3.009 2.743,0 5.321,-1.068 7.259,-3.008 1.94,-1.94 3.009,-4.519 3.009,-7.261 -10e-4,-2.743 -1.068,-5.32 -3.008,-7.258 L 96.467,81.95 c -0.458,-0.458 -0.57,-1.16 -0.278,-1.738 0.833,-1.646 1.529,-3.311 2.068,-4.947 0.203,-0.615 0.777,-1.03 1.425,-1.03 l 14.99,-0.002 c 5.66,0 10.266,-4.604 10.266,-10.265 -0.001,-2.742 -1.069,-5.321 -3.009,-7.26 -1.938,-1.938 -4.515,-3.006 -7.255,-3.006 -0.002,0 -0.002,0 -0.004,0 l 0,0 -14.988,0 c -0.647,0 -1.222,-0.416 -1.425,-1.03 -0.54,-1.638 -1.236,-3.302 -2.067,-4.946 -0.293,-0.578 -0.182,-1.279 0.277,-1.738 L 107.08,35.377 c 4.002,-4.003 4.002,-10.518 0,-14.521 -4.005,-4.002 -10.519,-4.001 -14.521,0 l -10.61,10.613 c -0.458,0.459 -1.158,0.57 -1.736,0.278 -1.652,-0.833 -3.317,-1.53 -4.949,-2.07 C 74.65,29.474 74.235,28.9 74.235,28.253 l 0,-14.985 c 0,-5.661 -4.605,-10.267 -10.266,-10.267 -5.661,0 -10.268,4.605 -10.268,10.267 l 0,14.985 c 0,0.647 -0.414,1.221 -1.028,1.424 -1.634,0.541 -3.298,1.238 -4.945,2.07 -0.576,0.292 -1.278,0.181 -1.737,-0.278 L 35.379,20.856 c -4.003,-4 -10.517,-4.003 -14.521,0 -4.002,4.004 -4.002,10.519 0,14.521 l 10.613,10.611 c 0.459,0.458 0.57,1.16 0.277,1.739 -0.826,1.63 -1.523,3.294 -2.07,4.947 -0.203,0.614 -0.777,1.028 -1.424,1.028 l -14.988,0 C 7.605,53.703 3,58.309 3,63.97 3,69.63 7.606,74.235 13.268,74.235 l 14.986,0 c 0.647,0 1.222,0.415 1.425,1.03 0.543,1.645 1.238,3.308 2.067,4.942 0.293,0.579 0.182,1.28 -0.277,1.739 L 20.857,92.559 c -1.938,1.94 -3.007,4.519 -3.007,7.262 0,2.742 1.068,5.319 3.007,7.257 1.94,1.941 4.52,3.009 7.262,3.009 2.741,0 5.319,-1.068 7.26,-3.009 L 45.988,96.467 c 0.288,-0.288 0.672,-0.439 1.061,-0.439 z m 16.92,-16.469 c -8.598,0 -15.592,-6.994 -15.592,-15.591 0,-8.597 6.994,-15.592 15.592,-15.592 8.597,0 15.59,6.995 15.59,15.592 0,8.597 -6.994,15.591 -15.59,15.591 z m 0,-28.183 c -6.943,0 -12.592,5.648 -12.592,12.592 0,6.942 5.648,12.591 12.592,12.591 6.942,0 12.59,-5.648 12.59,-12.591 0,-6.943 -5.648,-12.592 -12.59,-12.592 z" d="m 63.969,127.936 c -7.315,0 -13.268,-5.951 -13.268,-13.266 l 0,-13.921 c -1.129,-0.413 -2.249,-0.881 -3.35,-1.402 L 37.5,109.2 c -2.507,2.507 -5.839,3.888 -9.381,3.888 -3.544,0 -6.876,-1.381 -9.383,-3.888 -2.506,-2.504 -3.886,-5.834 -3.886,-9.378 0,-3.544 1.38,-6.876 3.886,-9.383 l 9.853,-9.855 c -0.525,-1.11 -0.995,-2.23 -1.401,-3.348 l -13.92,0 C 5.952,77.235 0,71.284 0,63.97 0,56.654 5.951,50.702 13.266,50.702 l 13.922,0 c 0.409,-1.121 0.878,-2.242 1.403,-3.351 l -9.854,-9.854 c -5.172,-5.172 -5.172,-13.59 0,-18.764 5.173,-5.171 13.591,-5.17 18.764,0 l 9.854,9.856 c 1.114,-0.527 2.234,-0.997 3.347,-1.403 l 0,-13.918 c 0,-7.315 5.952,-13.267 13.268,-13.267 7.314,0 13.266,5.951 13.266,13.267 l 0,13.919 c 1.112,0.406 2.233,0.875 3.351,1.404 l 9.853,-9.856 c 5.172,-5.171 13.59,-5.17 18.764,0 5.172,5.174 5.172,13.592 0,18.764 l -9.855,9.854 c 0.527,1.114 0.997,2.235 1.403,3.351 l 13.921,0 c 0.001,0 0.002,0 0.004,0 3.541,0 6.871,1.379 9.376,3.884 2.506,2.505 3.887,5.837 3.888,9.381 0,7.314 -5.951,13.265 -13.266,13.265 l -13.923,0.002 c -0.406,1.115 -0.875,2.236 -1.403,3.351 l 9.855,9.852 c 2.506,2.505 3.886,5.836 3.887,9.38 0,3.544 -1.38,6.876 -3.887,9.382 -2.505,2.507 -5.836,3.888 -9.381,3.888 -3.542,0 -6.874,-1.381 -9.381,-3.888 l -9.854,-9.854 c -1.104,0.522 -2.225,0.992 -3.352,1.403 l 0,13.921 c -0.002,7.314 -5.953,13.265 -13.267,13.265 z M 47.049,96.028 c 0.23,0 0.463,0.053 0.679,0.162 1.609,0.816 3.274,1.513 4.948,2.071 0.612,0.204 1.025,0.777 1.025,1.423 l 0,14.986 c 0,5.661 4.606,10.266 10.268,10.266 5.66,0 10.266,-4.605 10.266,-10.266 l 0,-14.986 c 0,-0.646 0.413,-1.219 1.026,-1.423 1.667,-0.555 3.333,-1.252 4.95,-2.071 0.578,-0.292 1.28,-0.181 1.738,0.278 l 10.611,10.611 c 1.94,1.94 4.519,3.009 7.26,3.009 2.743,0 5.321,-1.068 7.259,-3.008 1.94,-1.94 3.009,-4.519 3.009,-7.261 -10e-4,-2.743 -1.068,-5.32 -3.008,-7.258 L 96.467,81.95 c -0.458,-0.458 -0.57,-1.16 -0.278,-1.738 0.833,-1.646 1.529,-3.311 2.068,-4.947 0.203,-0.615 0.777,-1.03 1.425,-1.03 l 14.99,-0.002 c 5.66,0 10.266,-4.604 10.266,-10.265 -0.001,-2.742 -1.069,-5.321 -3.009,-7.26 -1.938,-1.938 -4.515,-3.006 -7.255,-3.006 -0.002,0 -0.002,0 -0.004,0 l 0,0 -14.988,0 c -0.647,0 -1.222,-0.416 -1.425,-1.03 -0.54,-1.638 -1.236,-3.302 -2.067,-4.946 -0.293,-0.578 -0.182,-1.279 0.277,-1.738 L 107.08,35.377 c 4.002,-4.003 4.002,-10.518 0,-14.521 -4.005,-4.002 -10.519,-4.001 -14.521,0 l -10.61,10.613 c -0.458,0.459 -1.158,0.57 -1.736,0.278 -1.652,-0.833 -3.317,-1.53 -4.949,-2.07 C 74.65,29.474 74.235,28.9 74.235,28.253 l 0,-14.985 c 0,-5.661 -4.605,-10.267 -10.266,-10.267 -5.661,0 -10.268,4.605 -10.268,10.267 l 0,14.985 c 0,0.647 -0.414,1.221 -1.028,1.424 -1.634,0.541 -3.298,1.238 -4.945,2.07 -0.576,0.292 -1.278,0.181 -1.737,-0.278 L 35.379,20.856 c -4.003,-4 -10.517,-4.003 -14.521,0 -4.002,4.004 -4.002,10.519 0,14.521 l 10.613,10.611 c 0.459,0.458 0.57,1.16 0.277,1.739 -0.826,1.63 -1.523,3.294 -2.07,4.947 -0.203,0.614 -0.777,1.028 -1.424,1.028 l -14.988,0 C 7.605,53.703 3,58.309 3,63.97 3,69.63 7.606,74.235 13.268,74.235 l 14.986,0 c 0.647,0 1.222,0.415 1.425,1.03 0.543,1.645 1.238,3.308 2.067,4.942 0.293,0.579 0.182,1.28 -0.277,1.739 L 20.857,92.559 c -1.938,1.94 -3.007,4.519 -3.007,7.262 0,2.742 1.068,5.319 3.007,7.257 1.94,1.941 4.52,3.009 7.262,3.009 2.741,0 5.319,-1.068 7.26,-3.009 L 45.988,96.467 c 0.288,-0.288 0.672,-0.439 1.061,-0.439 z m 16.92,-16.469 c -8.598,0 -15.592,-6.994 -15.592,-15.591 0,-8.597 6.994,-15.592 15.592,-15.592 8.597,0 15.59,6.995 15.59,15.592 0,8.597 -6.994,15.591 -15.59,15.591 z m 0,-28.183 c -6.943,0 -12.592,5.648 -12.592,12.592 0,6.942 5.648,12.591 12.592,12.591 6.942,0 12.59,-5.648 12.59,-12.591 0,-6.943 -5.648,-12.592 -12.59,-12.592 z"
id="path5763" /> style="fill:#33363a"
inkscape:connector-curvature="0" />
</g> </g>
<g <g
id="g5765"> id="g5765">
<circle <circle
style="fill:#95a2a5" id="circle5767"
cx="63.969002"
cy="63.966999"
r="21.931" r="21.931"
id="circle5767" /> cy="63.966999"
cx="63.969002"
style="fill:#95a2a5" />
</g> </g>
<g <g
id="g5769"> id="g5769">
<ellipse <ellipse
style="fill:#808e93" id="ellipse5771"
cx="63.969002"
cy="63.966999"
rx="21.931"
ry="16.799" ry="16.799"
id="ellipse5771" /> rx="21.931"
cy="63.966999"
cx="63.969002"
style="fill:#808e93" />
</g> </g>
<g <g
id="g5773"> id="g5773">
<path <path
inkscape:connector-curvature="0" id="path5775"
style="fill:#ffffff"
d="m 42.038,63.967 c 0,12.113 9.819,21.932 21.931,21.932 12.112,0 21.931,-9.818 21.931,-21.932 l -43.862,0 z" d="m 42.038,63.967 c 0,12.113 9.819,21.932 21.931,21.932 12.112,0 21.931,-9.818 21.931,-21.932 l -43.862,0 z"
id="path5775" /> style="fill:#ffffff"
inkscape:connector-curvature="0" />
</g> </g>
<g <g
id="g5777"> id="g5777">
<path <path
inkscape:connector-curvature="0" id="path5779"
style="fill:#d8e5ea"
d="M 63.969,80.766 C 76.08,80.766 85.9,73.244 85.9,63.967 l -43.862,0 c 0,9.278 9.819,16.799 21.931,16.799 z" d="M 63.969,80.766 C 76.08,80.766 85.9,73.244 85.9,63.967 l -43.862,0 c 0,9.278 9.819,16.799 21.931,16.799 z"
id="path5779" /> style="fill:#d8e5ea"
inkscape:connector-curvature="0" />
</g> </g>
<path <path
inkscape:connector-curvature="0" id="path5781"
style="fill:#33363a"
d="m 63.969,40.538 c -12.92,0 -23.431,10.511 -23.431,23.43 0,12.92 10.511,23.432 23.431,23.432 C 76.889,87.4 87.4,76.889 87.4,63.968 87.399,51.048 76.889,40.538 63.969,40.538 Z m 0,3 c 10.759,0 19.582,8.365 20.355,18.93 l -40.71,0 c 0.773,-10.566 9.595,-18.93 20.355,-18.93 z m 0,40.861 c -10.759,0 -19.582,-8.366 -20.355,-18.932 l 40.709,0 C 83.55,76.033 74.728,84.399 63.969,84.399 Z" d="m 63.969,40.538 c -12.92,0 -23.431,10.511 -23.431,23.43 0,12.92 10.511,23.432 23.431,23.432 C 76.889,87.4 87.4,76.889 87.4,63.968 87.399,51.048 76.889,40.538 63.969,40.538 Z m 0,3 c 10.759,0 19.582,8.365 20.355,18.93 l -40.71,0 c 0.773,-10.566 9.595,-18.93 20.355,-18.93 z m 0,40.861 c -10.759,0 -19.582,-8.366 -20.355,-18.932 l 40.709,0 C 83.55,76.033 74.728,84.399 63.969,84.399 Z"
id="path5781" /> style="fill:#33363a"
inkscape:connector-curvature="0" />
<g <g
id="g5783"> id="g5783">
<g <g
id="g5785"> id="g5785">
<circle <circle
style="fill:#a7bbc1" id="circle5787"
cx="63.969002"
cy="66.480003"
r="7.2509999" r="7.2509999"
id="circle5787" /> cy="66.480003"
cx="63.969002"
style="fill:#a7bbc1" />
</g> </g>
<g <g
id="g5789"> id="g5789">
<circle <circle
style="fill:#ffffff" id="circle5791"
cx="63.969002"
cy="64.014999"
r="7.2509999" r="7.2509999"
id="circle5791" /> cy="64.014999"
cx="63.969002"
style="fill:#ffffff" />
</g> </g>
<g <g
id="g5793"> id="g5793">
<path <path
inkscape:connector-curvature="0" id="path5795"
style="fill:#d8e5ea"
d="m 58.842,69.143 c -2.832,-2.832 -2.832,-7.424 0,-10.256 2.832,-2.832 7.423,-2.832 10.254,0" d="m 58.842,69.143 c -2.832,-2.832 -2.832,-7.424 0,-10.256 2.832,-2.832 7.423,-2.832 10.254,0"
id="path5795" /> style="fill:#d8e5ea"
inkscape:connector-curvature="0" />
</g> </g>
<g <g
id="g5797"> id="g5797">
<path <path
inkscape:connector-curvature="0" id="path5799"
style="fill:#33363a"
d="m 63.969,72.761 c -2.24,0 -4.481,-0.852 -6.188,-2.557 -3.412,-3.413 -3.412,-8.965 0,-12.377 1.653,-1.653 3.851,-2.563 6.188,-2.563 2.338,0 4.535,0.911 6.188,2.563 3.412,3.412 3.412,8.965 0,12.377 -1.706,1.705 -3.947,2.557 -6.188,2.557 z m 0,-14.498 c -1.536,0 -2.979,0.598 -4.066,1.685 -2.242,2.243 -2.242,5.892 0,8.135 2.243,2.241 5.892,2.242 8.133,0 2.242,-2.242 2.242,-5.892 0,-8.134 l 0,0 c -1.087,-1.088 -2.531,-1.686 -4.067,-1.686 z" d="m 63.969,72.761 c -2.24,0 -4.481,-0.852 -6.188,-2.557 -3.412,-3.413 -3.412,-8.965 0,-12.377 1.653,-1.653 3.851,-2.563 6.188,-2.563 2.338,0 4.535,0.911 6.188,2.563 3.412,3.412 3.412,8.965 0,12.377 -1.706,1.705 -3.947,2.557 -6.188,2.557 z m 0,-14.498 c -1.536,0 -2.979,0.598 -4.066,1.685 -2.242,2.243 -2.242,5.892 0,8.135 2.243,2.241 5.892,2.242 8.133,0 2.242,-2.242 2.242,-5.892 0,-8.134 l 0,0 c -1.087,-1.088 -2.531,-1.686 -4.067,-1.686 z"
id="path5799" /> style="fill:#33363a"
inkscape:connector-curvature="0" />
</g> </g>
</g> </g>
</g> </g>
@ -389,4 +413,7 @@
</g> </g>
</g> </g>
</g> </g>
</g>
</g>
</g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 23 KiB

After

Width:  |  Height:  |  Size: 30 KiB

BIN
www/img/icons/action1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -56,8 +56,8 @@
<script src="js/shared/controllers.js"></script> <script src="js/shared/controllers.js"></script>
<script src="templates/menu/js/controllers.js"></script> <script src="templates/menu/js/controllers.js"></script>
<script src="templates/material-user-interface/dashboard/js/controllers.js"></script> <script src="templates/material-user-interface/dashboard/js/controllers.js"></script>
<script src="templates/application-storage/sqLite/js/controllers.js"></script> <script src="templates/pokemonliste/js/controllers.js"></script>
<script src="templates/application-storage/sqLite/js/services.js"></script> <script src="templates/pokemonliste/js/services.js"></script>
<script src="templates/imagedownload/js/controllers.js"></script> <script src="templates/imagedownload/js/controllers.js"></script>
<script src="templates/hardware-connect/device-information/js/controllers.js"></script> <script src="templates/hardware-connect/device-information/js/controllers.js"></script>
<script src="templates/hardware-connect/mobile-contract/js/controllers.js"></script> <script src="templates/hardware-connect/mobile-contract/js/controllers.js"></script>

View File

@ -22,8 +22,8 @@ window.globalVariable = {
wordpressColor: "#0087BE" wordpressColor: "#0087BE"
},// End custom color style variable },// End custom color style variable
startPage: { startPage: {
url: "/app/contractlist",//Url of start page. url: "/app/pokemonlist",//Url of start page.
state: "app.contractlist"//State name of start page. state: "app.pokemonlist"//State name of start page.
}, },
message: { message: {
errorMessage: "Technical error please try again later." //Default error message. errorMessage: "Technical error please try again later." //Default error message.
@ -265,7 +265,7 @@ angular.module('starter', ['ionic','ngIOS9UIWebViewPatch','starter.controllers',
.icon('mail', 'img/icons/mail.svg') .icon('mail', 'img/icons/mail.svg')
.icon('message', 'img/icons/message.svg') .icon('message', 'img/icons/message.svg')
.icon('share-arrow', 'img/icons/share-arrow.svg') .icon('share-arrow', 'img/icons/share-arrow.svg')
.icon('pokemenu', 'img/icons/action.svg',64) .icon('pokemenu', 'img/icons/action.svg',24)
.icon('more', 'img/icons/more_vert.svg'); .icon('more', 'img/icons/more_vert.svg');
//mdThemingProvider use for change theme color of Ionic Material Design Application. //mdThemingProvider use for change theme color of Ionic Material Design Application.
@ -339,39 +339,39 @@ angular.module('starter', ['ionic','ngIOS9UIWebViewPatch','starter.controllers',
} }
} }
}) })
.state('app.contractlist', { .state('app.pokemonlist', {
url: "/contractlist", url: "/pokemonlist",
cache: false, cache: false,
params:{ params:{
isAnimated:(ionic.Platform.isAndroid()==false) isAnimated:(ionic.Platform.isAndroid()==false)
}, },
views: { views: {
'menuContent': { 'menuContent': {
templateUrl: "templates/application-storage/sqLite/html/contract-list.html", templateUrl: "templates/pokemonliste/html/pokemon-list.html",
controller: 'contractListCtrl' controller: 'pokemonListCtrl'
} }
} }
}) })
.state('app.contractdetail', { .state('app.pokemondetail', {
url: "/contractdetail", url: "/pokemondetail",
params: { params: {
contractdetail: null, contractdetail: null,
actionDelete: false actionDelete: false
}, },
views: { views: {
'menuContent': { 'menuContent': {
templateUrl: "templates/application-storage/sqLite/html/contract-detail.html", templateUrl: "templates/pokemonliste/html/pokemon-detail.html",
controller: 'contractDetailCtrl' controller: 'pokemonDetailCtrl'
} }
} }
}) })
.state('app.contractsetting', { .state('app.pokemonsetting', {
url: "/contractsetting", url: "/pokemontsetting",
cache: false, cache: false,
views: { views: {
'menuContent': { 'menuContent': {
templateUrl: "templates/application-storage/sqLite/html/contract-setting.html", templateUrl: "templates/pokemonliste/html/pokemon-setting.html",
controller: 'contractSettingCtrl' controller: 'pokemonSettingCtrl'
} }
} }
}) })

Binary file not shown.

View File

@ -34,8 +34,8 @@
<!--It will disable animation to better performance on android.--> <!--It will disable animation to better performance on android.-->
<!--list section--> <!--list section-->
<div ng-if="isAndroid" class="menu-list"> <div ng-if="isAndroid" class="menu-list">
<md-subheader class="md-warn">Application Storage</md-subheader> <md-subheader class="md-warn">Pokemon-Index</md-subheader>
<div class="row menu-item" ng-click="navigateTo('app.contractlist')"> <div class="row menu-item" ng-click="navigateTo('app.pokemonlist')">
<div class="col-33"> <div class="col-33">
<i class="fa fa-database"></i> <i class="fa fa-database"></i>
</div> </div>

View File

@ -5,7 +5,7 @@
<!--State name : app.contractdetail--> <!--State name : app.contractdetail-->
<!--URL : #app/contractdetail--> <!--URL : #app/contractdetail-->
<ion-view title="Contract"> <ion-view title="{{pokemon.pokemonname}}">
<!--left button on navigation bar--> <!--left button on navigation bar-->
<ion-nav-buttons side="left"> <ion-nav-buttons side="left">
<a ng-click="$ionicGoBack()" class="button back-button buttons button-clear header-item nav-back-btn"> <a ng-click="$ionicGoBack()" class="button back-button buttons button-clear header-item nav-back-btn">

View File

@ -1,14 +1,14 @@
<!--View Information--> <!--View Information-->
<!--View name : Contract List--> <!--View name : Pokemon List-->
<!--Controller name : contractListCtrl--> <!--Controller name : pokemonListCtrl-->
<!--Controller path : www/templates/application-storage/sqLite/js/controllers.js--> <!--Controller path : www/templates/application-storage/sqLite/js/controllers.js-->
<!--State name : app.contractlist--> <!--State name : app.pokemonlist-->
<!--URL : #app/contractlist--> <!--URL : #app/pokemonlist-->
<ion-view view-title="Pokedex Helper"> <ion-view view-title="Pokedex Helper">
<!--right button on navigation bar--> <!--right button on navigation bar-->
<ion-nav-buttons side="right"> <ion-nav-buttons side="right">
<md-button ng-disabled="isLoading" class="md-icon-button ion-nav-button-right" ng-click="navigateTo('app.contractsetting')" <md-button ng-disabled="isLoading" class="md-icon-button ion-nav-button-right" ng-click="navigateTo('app.pokemonsetting')"
aria-label="Setting"> aria-label="Setting">
<i class="ion-android-more-vertical"></i> <i class="ion-android-more-vertical"></i>
</md-button> </md-button>
@ -25,69 +25,69 @@
</div> </div>
</md-toolbar><!--end toolbar section--> </md-toolbar><!--end toolbar section-->
<!--contract list section--> <!--pokemon list section-->
<ion-content id="contract-list-content" class="fade-in"> <ion-content id="pokemon-list-content" class="fade-in">
<!--list section--> <!--list section-->
<md-list> <md-list>
<!--Below code it will disable animation to better performance--> <!--Below code it will disable animation to better performance-->
<div ng-if="!isAnimated" class="row contract-list-item" <div ng-if="!isAnimated" class="row pokemon-list-item"
ng-repeat="pokemon in pokemons | filter: filterText | orderBy: 'pokemonname' | limitTo: numberOfItemsToDisplay"> ng-repeat="pokemon in pokemons | filter: filterText | orderBy: 'pokemonname' | limitTo: numberOfItemsToDisplay">
<div class="col-25 icon-user"> <div class="col-25 icon-user">
<img ng-src="{{ pokemon.pokemonimage }}" class="image-list-thumb"/> <img ng-src="{{ pokemon.pokemonimage }}" class="image-list-thumb"/>
<md-menu md-position-mode="target-right target" class="md-list-item-md-menu-right"> <md-menu md-position-mode="target-right target">
<p ng-click="$mdOpenMenu()"> <p ng-click="$mdOpenMenu()">
<md-icon md-menu-origin md-svg-icon="pokemenu"></md-icon> <img ng-src="img/icons/action1.png"/>
</p> </p>
<md-menu-content width="1"> <md-menu-content width="1">
<md-menu-item> <md-menu-item>
<a class="md-button md-default-theme" ng-click="navigateTo('app.contractdetail',contract)"> <a class="md-button md-default-theme" ng-click="navigateTo('app.pokemondetail',pokemon)">
<span class="menu-item-button">Details anzeigen</span> <span class="menu-item-button">Details anzeigen</span>
</a> </a>
</md-menu-item> </md-menu-item>
<md-menu-item> <md-menu-item>
<a class="md-button md-default-theme" ng-click="callTo(contract.pokemonname)"> <a class="md-button md-default-theme" ng-click="callTo(pokemon.pokemonname)">
<span class="menu-item-button" >{{pokemon.pokemonname}} zu deinen Lesezeichen hinzufügen</span> <span class="menu-item-button" >{{pokemon.pokemonname}} zu deinen Lesezeichen hinzufügen</span>
</a> </a>
</md-menu-item> </md-menu-item>
<md-menu-item> <md-menu-item>
<a class="md-button md-default-theme" ng-click="navigateTo('app.contractdetail',contract)"> <a class="md-button md-default-theme" ng-click="navigateTo('app.pokemondetail',pokemon)">
<span class="menu-item-button">{{pokemon.pokemonname}} zu deinen Favoriten hinzufügen</span> <span class="menu-item-button">{{pokemon.pokemonname}} zu deinen Favoriten hinzufügen</span>
</a> </a>
</md-menu-item> </md-menu-item>
<md-menu-item> <md-menu-item>
<a class="md-button md-default-theme" ng-click="navigateTo('app.contractdetail',contract)"> <a class="md-button md-default-theme" ng-click="navigateTo('app.pokemondetail',pokemon)">
<span class="menu-item-button">{{pokemon.pokemonname}} mit anderem Pokemon vergleichen</span> <span class="menu-item-button">{{pokemon.pokemonname}} mit anderem Pokemon vergleichen</span>
</a> </a>
</md-menu-item> </md-menu-item>
<md-menu-item> <md-menu-item>
<a class="md-button md-default-theme" ng-click="navigateTo('app.contractdetail',contract)"> <a class="md-button md-default-theme" ng-click="navigateTo('app.pokemondetail',pokemon)">
<span class="menu-item-button">Pokemon vom gleichen Typ anzeigen</span> <span class="menu-item-button">Pokemon vom gleichen Typ anzeigen</span>
</a> </a>
</md-menu-item> </md-menu-item>
<md-menu-item> <md-menu-item>
<a class="md-button md-default-theme" ng-click="navigateTo('app.contractdetail',contract)"> <a class="md-button md-default-theme" ng-click="navigateTo('app.pokemondetail',pokemon)">
<span class="menu-item-button">Pokemon vom gleichen Typ {{ pokemon.pokemontypaString }} anzeigen</span> <span class="menu-item-button">Pokemon vom gleichen Typ {{ pokemon.pokemontypaString }} anzeigen</span>
</a> </a>
</md-menu-item> </md-menu-item>
<md-menu-item ng-if="pokemon.pokemontypb > 0"> <md-menu-item ng-if="pokemon.pokemontypb > 0">
<a class="md-button md-default-theme" ng-click="navigateTo('app.contractdetail',contract)"> <a class="md-button md-default-theme" ng-click="navigateTo('app.pokemondetail',pokemon)">
<span class="menu-item-button">Pokemon vom gleichen Typ {{ pokemon.pokemontypbString }} anzeigen</span> <span class="menu-item-button">Pokemon vom gleichen Typ {{ pokemon.pokemontypbString }} anzeigen</span>
</a> </a>
</md-menu-item> </md-menu-item>
<md-menu-item> <md-menu-item>
<a class="md-button md-default-theme" ng-click="navigateTo('app.contractdetail',contract)"> <a class="md-button md-default-theme" ng-click="navigateTo('app.pokemondetail',pokemon)">
<span class="menu-item-button">Welche Pokemon sind stärker als {{pokemon.pokemonname}}</span> <span class="menu-item-button">Welche Pokemon sind stärker als {{pokemon.pokemonname}}</span>
</a> </a>
</md-menu-item> </md-menu-item>
<md-menu-item> <md-menu-item>
<a class="md-button md-default-theme" ng-click="navigateTo('app.contractdetail',contract)"> <a class="md-button md-default-theme" ng-click="navigateTo('app.pokemondetail',pokemon)">
<span class="menu-item-button">Welche Pokemon sind schwächer als {{pokemon.pokemonname}}</span> <span class="menu-item-button">Welche Pokemon sind schwächer als {{pokemon.pokemonname}}</span>
</a> </a>
</md-menu-item> </md-menu-item>
@ -113,7 +113,7 @@
<!--Below code it will show animation when selecting row.--> <!--Below code it will show animation when selecting row.-->
<md-list-item ng-if="isAnimated" class="md-list-item-default" <md-list-item ng-if="isAnimated" class="md-list-item-default"
ng-click="navigateTo('app.contractdetail',pokemon)" ng-click="navigateTo('app.pokemondetaildetail',pokemon)"
ng-repeat="pokemon in pokemons | filter: filterText | orderBy: 'pokemonname'"> ng-repeat="pokemon in pokemons | filter: filterText | orderBy: 'pokemonname'">
<img ng-src="{{ pokemon.pokemonimage }}" class="image-list-thumb"/> <img ng-src="{{ pokemon.pokemonimage }}" class="image-list-thumb"/>
@ -121,7 +121,7 @@
<p>{{ pokemon.pokemonname }} {{ pokemon.pokemonimage }}</p> <p>{{ pokemon.pokemonname }} {{ pokemon.pokemonimage }}</p>
<md-switch class="md-secondary" <md-switch class="md-secondary"
ng-model="pokemon.isEnable" ng-model="pokemon.isEnable"
ng-change="updateContract(pokemon)"> ng-change="updatePokemon(pokemon)">
</md-switch> </md-switch>
</md-list-item> </md-list-item>
@ -131,10 +131,10 @@
<ion-infinite-scroll on-infinite="addMoreItem()" ng-if="pokemons.length > numberOfItemsToDisplay"></ion-infinite-scroll> <ion-infinite-scroll on-infinite="addMoreItem()" ng-if="pokemons.length > numberOfItemsToDisplay"></ion-infinite-scroll>
</ion-content><!--end contract list section--> </ion-content><!--end pokemon list section-->
<!--loading progress--> <!--loading progress-->
<div id="contract-list-loading-progress" class="loading-progress fade-in"> <div id="pokemon-list-loading-progress" class="loading-progress fade-in">
<ion-spinner ng-if="!isAndroid" class="progress-circular"></ion-spinner> <ion-spinner ng-if="!isAndroid" class="progress-circular"></ion-spinner>
<md-progress-circular ng-if="isAndroid" md-mode="indeterminate"></md-progress-circular> <md-progress-circular ng-if="isAndroid" md-mode="indeterminate"></md-progress-circular>
</div><!--end loading progress--> </div><!--end loading progress-->

View File

@ -12,8 +12,8 @@
// Learn more about $cordovaSQLite : // Learn more about $cordovaSQLite :
// http://ngcordova.com/docs/plugins/sqlite/ // http://ngcordova.com/docs/plugins/sqlite/
// //
// Controller of Contract List Page. // Controller of Pokemon List Page.
appControllers.controller('contractListCtrl', function ($scope, $stateParams,$filter, $mdDialog, $timeout, $ionicModal, $state, $mdBottomSheet, pokedexDB) { appControllers.controller('pokemonListCtrl', function ($scope, $stateParams,$filter, $mdDialog, $timeout, $ionicModal, $state, $mdBottomSheet, pokedexDB) {
// initialForm is the first activity in the controller. // initialForm is the first activity in the controller.
// It will initial all variable data and let the function works when page load. // It will initial all variable data and let the function works when page load.
@ -35,20 +35,20 @@ appControllers.controller('contractListCtrl', function ($scope, $stateParams,$fi
// The function for show/hide loading progress. // The function for show/hide loading progress.
$timeout(function () { $timeout(function () {
if ($scope.isAndroid) { if ($scope.isAndroid) {
jQuery('#contract-list-loading-progress').show(); jQuery('#pokemon-list-loading-progress').show();
} }
else { else {
jQuery('#contract-list-loading-progress').fadeIn(700); jQuery('#pokemon-list-loading-progress').fadeIn(700);
} }
}, 400); }, 400);
$timeout(function () { $timeout(function () {
//Get all contracts. //Get all pokemns.
$scope.getPokemonList(); $scope.getPokemonList();
jQuery('#contract-list-loading-progress').hide(); jQuery('#pokemon-list-loading-progress').hide();
jQuery('#contract-list-content').fadeIn(); jQuery('#pokemon-list-content').fadeIn();
$scope.isLoading = false; $scope.isLoading = false;
}, 3000);// End loading progress. }, 3000);// End loading progress.
@ -61,19 +61,19 @@ appControllers.controller('contractListCtrl', function ($scope, $stateParams,$fi
$scope.numberOfItemsToDisplay += 20; // load number of more items $scope.numberOfItemsToDisplay += 20; // load number of more items
$scope.$broadcast('scroll.infiniteScrollComplete') $scope.$broadcast('scroll.infiniteScrollComplete')
} }
// getPokemonList is for get all contracts. // getPokemonList is for get all pokemons.
// By calling pokedexDB.all() service. // By calling pokedexDB.all() service.
$scope.getPokemonList = function () { $scope.getPokemonList = function () {
$scope.pokemons = pokedexDB.all(); $scope.pokemons = pokedexDB.all();
};//End getPokemonList. };//End getPokemonList.
// updateContract is for update contracts. // updatePokemon is for update pokemons.
// By sending contract to pokedexDB.update(contract) service. // By sending pokemon to pokedexDB.update(pokemon) service.
// Parameter : // Parameter :
// contract = contract that user select from view. // pokemon = pokemon that user select from view.
$scope.updateContract = function (pokemon) { $scope.updatePokemon = function (pokemon) {
pokedexDB.update(pokemon); pokedexDB.update(pokemon);
};// End updateContract. };// End updatePokemon.
// navigateTo is for navigate to other page // navigateTo is for navigate to other page
// by using targetPage to be the destination page // by using targetPage to be the destination page
@ -84,7 +84,7 @@ appControllers.controller('contractListCtrl', function ($scope, $stateParams,$fi
$scope.navigateTo = function (targetPage, objectData) { $scope.navigateTo = function (targetPage, objectData) {
$timeout(function(){ $timeout(function(){
$state.go(targetPage, { $state.go(targetPage, {
contractdetail: objectData, pokemondetail: objectData,
actionDelete: (objectData == null ? false : true) actionDelete: (objectData == null ? false : true)
}); });
},400); },400);
@ -100,10 +100,10 @@ appControllers.controller('contractListCtrl', function ($scope, $stateParams,$fi
$scope.initialForm(); $scope.initialForm();
});// End of Contract List Page Controller. });// End of Pokemon List Page Controller.
// Controller of Contract Detail Page. // Controller of pokemon Detail Page.
appControllers.controller('contractDetailCtrl', function ($mdBottomSheet, $mdToast, $scope, $stateParams, $filter, $mdDialog, $ionicHistory, pokedexDB, $ionicHistory) { appControllers.controller('pokemonDetailCtrl', function ($mdBottomSheet, $mdToast, $scope, $stateParams, $filter, $mdDialog, $ionicHistory, pokedexDB, $ionicHistory) {
// initialForm is the first activity in the controller. // initialForm is the first activity in the controller.
// It will initial all variable data and let the function works when page load. // It will initial all variable data and let the function works when page load.
@ -112,38 +112,40 @@ appControllers.controller('contractDetailCtrl', function ($mdBottomSheet, $mdToa
// $scope.disableSaveBtn is the variable for setting disable or enable the save button. // $scope.disableSaveBtn is the variable for setting disable or enable the save button.
$scope.disableSaveBtn = false; $scope.disableSaveBtn = false;
// $scope.pokemon is the variable that store contract detail data that receive form contract list page. // $scope.pokemon is the variable that store pokemon detail data that receive form pokemon list page.
// Parameter : // Parameter :
// $stateParams.actionDelete(bool) = status that pass from contract list page. // $stateParams.actionDelete(bool) = status that pass from pokemon list page.
// $stateParams.contractdetail(object) = contract that user select from contract list page. // $stateParams.pokemondetail(object) = pokemon that user select from pokemon list page.
$scope.pokemon = $scope.getContractData($stateParams.actionDelete, $stateParams.contractdetail); $scope.pokemon = $scope.getPokemonData($stateParams.actionDelete, $stateParams.pokemondetail);
//$scope.actionDelete is the variable for allow or not allow to delete data. //$scope.actionDelete is the variable for allow or not allow to delete data.
// It will allow to delete data when have data in the database. // It will allow to delete data when have data in the database.
$scope.actionDelete = $stateParams.actionDelete; $scope.actionDelete = $stateParams.actionDelete;
}; //End initialForm. }; //End initialForm.
// getContractData is for get contract detail data. // getPokemonData is for get pokemon detail data.
$scope.getContractData = function (actionDelete, contractDetail) { $scope.getPokemonData = function (actionDelete, pokemonDetail) {
// tempContract is temporary contract data detail. // tempPokemon is temporary pokemon data detail.
var tempContract = { var tempPokemon = {
id: null, id: null,
firstName: '', pokedexid: '',
lastName: '', pokedexidString: '',
telephone: '', pokemonname: '',
email: '', pokemontypa: '',
createDate: $filter('date')(new Date(), 'MMM dd yyyy'), pokemontypb: '',
age: null, pokemontypaString: '',
isEnable: false pokemontypbString: '',
pokemonimage: ''
} }
// If actionDelete is true Contract Detail Page will show contract detail that receive form contract list page.
// else it will show tempContract for user to add new data.
return (actionDelete ? angular.copy(contractDetail) : tempContract);
};//End get contract detail data.
// saveContract is for save contract. // If actionDelete is true pokemon Detail Page will show pokemon detail that receive form pokemon list page.
// else it will show pokemon for user to add new data.
return (actionDelete ? angular.copy(pokemonDetail) : tempPokemon);
};//End get pokemon detail data.
// savePokemon is for save pokemon.
// Parameter : // Parameter :
// contract(object) = contract object that presenting on the view. // pokemon(object) = pokemon object that presenting on the view.
// $event(object) = position of control that user tap. // $event(object) = position of control that user tap.
$scope.saveContract = function (pokemon, $event) { $scope.saveContract = function (pokemon, $event) {
//$mdBottomSheet.hide() use for hide bottom sheet. //$mdBottomSheet.hide() use for hide bottom sheet.
@ -165,15 +167,15 @@ appControllers.controller('contractDetailCtrl', function ($mdBottomSheet, $mdToa
// For confirm button to save data. // For confirm button to save data.
try { try {
// To update data by calling pokedexDB.update(contract) service. // To update data by calling pokedexDB.update(pokemon) service.
if ($scope.actionDelete) { if ($scope.actionDelete) {
if ($scope.pokemon.id == null) { if ($scope.pokemon.id == null) {
$scope.pokemon.id = $scope.pokemonList[$scope.pokemonList.length - 1].id; $scope.pokemon.id = $scope.pokemonList[$scope.pokemonList.length - 1].id;
} }
pokedexDB.update(contract); pokedexDB.update(pokemon);
} // End update data. } // End update data.
// To add new data by calling pokedexDB.add(contract) service. // To add new data by calling pokedexDB.add(pokemon) service.
else { else {
pokedexDB.add(pokemon); pokedexDB.add(pokemon);
$scope.pokemonList = pokedexDB.all(); $scope.pokemonList = pokedexDB.all();
@ -210,13 +212,13 @@ appControllers.controller('contractDetailCtrl', function ($mdBottomSheet, $mdToa
}, function () { }, function () {
// For cancel button to save data. // For cancel button to save data.
});// End alert box. });// End alert box.
};// End save contract. };// End save pokemon.
// deleteContract is for remove contract. // deletePokemon is for remove pokemon.
// Parameter : // Parameter :
// contract(object) = contract object that presenting on the view. // pokemon(object) = pokemon object that presenting on the view.
// $event(object) = position of control that user tap. // $event(object) = position of control that user tap.
$scope.deleteContract = function (pokemon, $event) { $scope.deletePokemon= function (pokemon, $event) {
//$mdBottomSheet.hide() use for hide bottom sheet. //$mdBottomSheet.hide() use for hide bottom sheet.
$mdBottomSheet.hide(); $mdBottomSheet.hide();
//mdDialog.show use for show alert box for Confirm to delete data. //mdDialog.show use for show alert box for Confirm to delete data.
@ -288,7 +290,7 @@ appControllers.controller('contractDetailCtrl', function ($mdBottomSheet, $mdToa
});// End Contract Detail page Controller. });// End Contract Detail page Controller.
// Controller of Contract Setting Page. // Controller of Contract Setting Page.
appControllers.controller('contractSettingCtrl', function ($scope,$ionicViewSwitcher,$state, $timeout, $stateParams, $mdDialog, $mdBottomSheet, $mdToast, $ionicHistory, pokedexDB) { appControllers.controller('pokemonSettingCtrl', function ($scope,$ionicViewSwitcher,$state, $timeout, $stateParams, $mdDialog, $mdBottomSheet, $mdToast, $ionicHistory, pokedexDB) {
// initialForm is the first activity in the controller. // initialForm is the first activity in the controller.
// It will initial all variable data and let the function works when page load. // It will initial all variable data and let the function works when page load.