Skip to content

Commit

Permalink
- Improved Login Header (support for *.webp images + 4k resolution)
Browse files Browse the repository at this point in the history
- Minor bug fixes
  • Loading branch information
exodus4d committed Apr 6, 2020
1 parent 0cf4617 commit d82311b
Show file tree
Hide file tree
Showing 332 changed files with 1,470 additions and 1,436 deletions.
6 changes: 2 additions & 4 deletions app/Controller/AppController.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,8 @@ public function init(\Base $f3){
$resource = Resource::instance();
$resource->register('script', 'app/login');
$resource->register('script', 'app/mappage', 'prefetch');
$resource->register('image', 'pf-bg.jpg');
$resource->register('image', 'pf-header-bg.jpg');
$resource->register('image', 'landing/eve_sso_login_buttons_large_black.png');
$resource->register('image', 'landing/eve_sso_login_buttons_large_black_hover.png');
$resource->register('image', 'sso/signature.png');
$resource->register('image', 'sso/gameplay.png');
}

}
2 changes: 1 addition & 1 deletion app/Controller/Controllerr.php
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ protected function initResource(\Base $f3){
'script' => sprintf('/%sjs/%s', $f3->get('UI'), Config::getPathfinderData('version')),
'font' => sprintf('/%sfonts', $f3->get('UI')),
'document' => sprintf('/%stemplates', $f3->get('UI')),
'image' => sprintf('/%simg', $f3->get('UI')),
'image' => sprintf('/%simg/%s', $f3->get('UI'), Config::getPathfinderData('version')),
'favicon' => $f3->get('FAVICON')
], true);

Expand Down
404 changes: 290 additions & 114 deletions gulpfile.js

Large diffs are not rendered by default.

File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
Binary file added img/header/pf-header.png
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
82 changes: 82 additions & 0 deletions img/svg/ccp_sso.svg
51 changes: 51 additions & 0 deletions img/svg/logo_inline.svg
6 changes: 6 additions & 0 deletions img/svg/logo_simple.svg
2 changes: 1 addition & 1 deletion public/img/svg/swords.svg → img/svg/swords.svg
9 changes: 1 addition & 8 deletions js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,12 @@ requirejs.config({
hoverIntent: 'lib/jquery.hoverIntent.min', // v1.10.0 Hover intention - http://cherne.net/brian/resources/jquery.hoverIntent.html
select2: 'lib/select2.min', // v4.0.13 Drop Down customization - https://select2.github.io
validator: 'lib/validator.min', // v0.10.1 Validator for Bootstrap 3 - https://github.com/1000hz/bootstrap-validator
lazylinepainter: 'lib/jquery.lazylinepainter-1.5.1.min', // v1.5.1 SVG line animation plugin - http://lazylinepainter.info
blueImpGallery: 'lib/blueimp-gallery', // v2.21.3 Image Gallery - https://github.com/blueimp/Gallery
blueImpGalleryHelper: 'lib/blueimp-helper', // helper function for Blue Imp Gallery
blueImpGalleryBootstrap: 'lib/bootstrap-image-gallery', // v3.4.2 Bootstrap extension for Blue Imp Gallery - https://blueimp.github.io/Bootstrap-Image-Gallery
bootstrapConfirmation: 'lib/bootstrap-confirmation.min', // v1.0.7 Bootstrap extension for inline confirm dialog - https://github.com/tavicu/bs-confirmation
bootstrapToggle: 'lib/bootstrap-toggle.min', // v2.2.0 Bootstrap Toggle (Checkbox) - http://www.bootstraptoggle.com
lazyload: 'lib/jquery.lazyload.min', // v1.9.7 LazyLoader images - https://appelsiini.net/projects/lazyload/
lazyload: 'lib/lazyload.min', // v14.0.0 LazyLoader images - https://github.com/verlok/lazyload
sortable: 'lib/sortable.min', // v1.10.1 Sortable - drag&drop reorder - https://github.com/SortableJS/Sortable

'summernote.loader': './app/summernote.loader', // v0.8.10 Summernote WYSIWYG editor -https://summernote.org
Expand Down Expand Up @@ -151,9 +150,6 @@ requirejs.config({
validator: {
deps: ['jquery', 'bootstrap']
},
lazylinepainter: {
deps: ['jquery', 'bootstrap']
},
blueImpGallery: {
deps: ['jquery']
},
Expand All @@ -163,9 +159,6 @@ requirejs.config({
bootstrapToggle: {
deps: ['jquery', 'bootstrap']
},
lazyload: {
deps: ['jquery']
},
summernote: {
deps: ['jquery']
}
Expand Down
1 change: 0 additions & 1 deletion js/app/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ define([], () => {

return {
path: {
img: '/public/img/', // path for images
api: '/api/rest', //ajax URL - REST API
// user API
getCaptcha: '/api/User/getCaptcha', // ajax URL - get captcha image
Expand Down
Loading

0 comments on commit d82311b

Please sign in to comment.