Browse Source

Updated copyright

Tobias Reich 9 years ago
parent
commit
0630554789
56 changed files with 55 additions and 57 deletions
  1. 0 0
      dist/main.js
  2. 1 1
      php/access/Access.php
  3. 1 1
      php/access/Admin.php
  4. 1 1
      php/access/Guest.php
  5. 1 1
      php/access/Installation.php
  6. 1 1
      php/api.php
  7. 1 1
      php/autoload.php
  8. 1 1
      php/database/update_020100.php
  9. 1 1
      php/database/update_020101.php
  10. 1 1
      php/database/update_020200.php
  11. 1 1
      php/database/update_020500.php
  12. 1 1
      php/database/update_020505.php
  13. 1 1
      php/database/update_020601.php
  14. 1 1
      php/database/update_020602.php
  15. 1 1
      php/database/update_020700.php
  16. 1 1
      php/define.php
  17. 1 1
      php/modules/Album.php
  18. 1 1
      php/modules/Database.php
  19. 1 1
      php/modules/Import.php
  20. 1 1
      php/modules/Log.php
  21. 1 1
      php/modules/Module.php
  22. 1 1
      php/modules/Photo.php
  23. 1 1
      php/modules/Plugins.php
  24. 1 1
      php/modules/Session.php
  25. 1 1
      php/modules/Settings.php
  26. 1 1
      php/modules/misc.php
  27. 1 1
      src/scripts/album.js
  28. 1 1
      src/scripts/albums.js
  29. 1 1
      src/scripts/build.js
  30. 1 1
      src/scripts/contextMenu.js
  31. 1 1
      src/scripts/header.js
  32. 1 1
      src/scripts/init.js
  33. 1 1
      src/scripts/loadingBar.js
  34. 1 1
      src/scripts/lychee.js
  35. 1 1
      src/scripts/multiselect.js
  36. 1 1
      src/scripts/password.js
  37. 1 1
      src/scripts/photo.js
  38. 1 1
      src/scripts/search.js
  39. 1 1
      src/scripts/settings.js
  40. 1 1
      src/scripts/swipe.js
  41. 1 1
      src/scripts/upload.js
  42. 1 1
      src/scripts/view.js
  43. 1 1
      src/scripts/view/main.js
  44. 1 3
      src/scripts/visible.js
  45. 1 1
      src/styles/_animations.scss
  46. 1 1
      src/styles/_content.scss
  47. 1 1
      src/styles/_contextmenu.scss
  48. 1 1
      src/styles/_etc.scss
  49. 1 1
      src/styles/_header.scss
  50. 1 1
      src/styles/_imageview.scss
  51. 1 1
      src/styles/_infobox.scss
  52. 1 1
      src/styles/_loading.scss
  53. 1 1
      src/styles/_mediaquery.scss
  54. 1 1
      src/styles/_message.scss
  55. 1 1
      src/styles/_multiselect.scss
  56. 1 1
      src/styles/main.scss

File diff suppressed because it is too large
+ 0 - 0
dist/main.js


+ 1 - 1
php/access/Access.php

@@ -2,7 +2,7 @@
 
 ###
 # @name			Access
-# @copyright	2014 by Tobias Reich
+# @copyright	2015 by Tobias Reich
 ###
 
 if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');

+ 1 - 1
php/access/Admin.php

@@ -2,7 +2,7 @@
 
 ###
 # @name			Admin Access
-# @copyright	2014 by Tobias Reich
+# @copyright	2015 by Tobias Reich
 ###
 
 if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');

+ 1 - 1
php/access/Guest.php

@@ -2,7 +2,7 @@
 
 ###
 # @name			Guest Access (Public Mode)
-# @copyright	2014 by Tobias Reich
+# @copyright	2015 by Tobias Reich
 ###
 
 if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');

+ 1 - 1
php/access/Installation.php

@@ -2,7 +2,7 @@
 
 ###
 # @name			Installation Access
-# @copyright	2014 by Tobias Reich
+# @copyright	2015 by Tobias Reich
 ###
 
 if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');

+ 1 - 1
php/api.php

@@ -2,7 +2,7 @@
 
 ###
 # @name			API
-# @copyright	2014 by Tobias Reich
+# @copyright	2015 by Tobias Reich
 ###
 
 @ini_set('max_execution_time', '200');

+ 1 - 1
php/autoload.php

@@ -2,7 +2,7 @@
 
 ###
 # @name			Autoload
-# @copyright	2014 by Tobias Reich
+# @copyright	2015 by Tobias Reich
 ###
 
 if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');

+ 1 - 1
php/database/update_020100.php

@@ -2,7 +2,7 @@
 
 ###
 # @name			Update to version 2.1
-# @copyright	2014 by Tobias Reich
+# @copyright	2015 by Tobias Reich
 ###
 
 $query = Database::prepare($database, "SELECT `tags` FROM `?` LIMIT 1", array(LYCHEE_TABLE_PHOTOS));

+ 1 - 1
php/database/update_020101.php

@@ -2,7 +2,7 @@
 
 ###
 # @name			Update to version 2.1.1
-# @copyright	2014 by Tobias Reich
+# @copyright	2015 by Tobias Reich
 ###
 
 $query	= Database::prepare($database, "ALTER TABLE `?` CHANGE `value` `value` VARCHAR( 200 ) NULL DEFAULT ''", array(LYCHEE_TABLE_SETTINGS));

+ 1 - 1
php/database/update_020200.php

@@ -2,7 +2,7 @@
 
 ###
 # @name			Update to version 2.2
-# @copyright	2014 by Tobias Reich
+# @copyright	2015 by Tobias Reich
 ###
 
 $query = Database::prepare($database, "SELECT `visible` FROM `?` LIMIT 1", array(LYCHEE_TABLE_ALBUMS));

+ 1 - 1
php/database/update_020500.php

@@ -2,7 +2,7 @@
 
 ###
 # @name			Update to version 2.5
-# @copyright	2014 by Tobias Reich
+# @copyright	2015 by Tobias Reich
 ###
 
 # Add `plugins`

+ 1 - 1
php/database/update_020505.php

@@ -2,7 +2,7 @@
 
 ###
 # @name			Update to version 2.5.5
-# @copyright	2014 by Tobias Reich
+# @copyright	2015 by Tobias Reich
 ###
 
 # Add `checksum`

+ 1 - 1
php/database/update_020601.php

@@ -2,7 +2,7 @@
 
 ###
 # @name			Update to version 2.6.1
-# @copyright	2014 by Tobias Reich
+# @copyright	2015 by Tobias Reich
 ###
 
 # Add `downloadable`

+ 1 - 1
php/database/update_020602.php

@@ -2,7 +2,7 @@
 
 ###
 # @name			Update to version 2.6.2
-# @copyright	2014 by Tobias Reich
+# @copyright	2015 by Tobias Reich
 ###
 
 # Add a checksum

+ 1 - 1
php/database/update_020700.php

@@ -2,7 +2,7 @@
 
 ###
 # @name			Update to version 2.6.2
-# @copyright	2014 by Tobias Reich
+# @copyright	2015 by Tobias Reich
 ###
 
 # Add medium to photos

+ 1 - 1
php/define.php

@@ -2,7 +2,7 @@
 
 ###
 # @name			Define
-# @copyright	2014 by Tobias Reich
+# @copyright	2015 by Tobias Reich
 ###
 
 # Define root

+ 1 - 1
php/modules/Album.php

@@ -2,7 +2,7 @@
 
 ###
 # @name			Album Module
-# @copyright	2014 by Tobias Reich
+# @copyright	2015 by Tobias Reich
 ###
 
 if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');

+ 1 - 1
php/modules/Database.php

@@ -2,7 +2,7 @@
 
 ###
 # @name			Database Module
-# @copyright	2014 by Tobias Reich
+# @copyright	2015 by Tobias Reich
 ###
 
 if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');

+ 1 - 1
php/modules/Import.php

@@ -2,7 +2,7 @@
 
 ###
 # @name			Upload Module
-# @copyright	2014 by Tobias Reich
+# @copyright	2015 by Tobias Reich
 ###
 
 if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');

+ 1 - 1
php/modules/Log.php

@@ -2,7 +2,7 @@
 
 ###
 # @name			Log Module
-# @copyright	2014 by Tobias Reich
+# @copyright	2015 by Tobias Reich
 ###
 
 if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');

+ 1 - 1
php/modules/Module.php

@@ -2,7 +2,7 @@
 
 ###
 # @name			Module
-# @copyright	2014 by Tobias Reich
+# @copyright	2015 by Tobias Reich
 ###
 
 if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');

+ 1 - 1
php/modules/Photo.php

@@ -2,7 +2,7 @@
 
 ###
 # @name			Photo Module
-# @copyright	2014 by Tobias Reich
+# @copyright	2015 by Tobias Reich
 ###
 
 if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');

+ 1 - 1
php/modules/Plugins.php

@@ -2,7 +2,7 @@
 
 ###
 # @name			Plugins Module
-# @copyright	2014 by Tobias Reich
+# @copyright	2015 by Tobias Reich
 ###
 
 if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');

+ 1 - 1
php/modules/Session.php

@@ -2,7 +2,7 @@
 
 ###
 # @name			Session Module
-# @copyright	2014 by Tobias Reich
+# @copyright	2015 by Tobias Reich
 ###
 
 if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');

+ 1 - 1
php/modules/Settings.php

@@ -2,7 +2,7 @@
 
 ###
 # @name			Settings Module
-# @copyright	2014 by Tobias Reich
+# @copyright	2015 by Tobias Reich
 ###
 
 if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');

+ 1 - 1
php/modules/misc.php

@@ -2,7 +2,7 @@
 
 ###
 # @name			Misc Module
-# @copyright	2014 by Tobias Reich
+# @copyright	2015 by Tobias Reich
 ###
 
 if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');

+ 1 - 1
src/scripts/album.js

@@ -1,6 +1,6 @@
 /**
  * @description	Takes care of every action an album can handle and execute.
- * @copyright	2014 by Tobias Reich
+ * @copyright	2015 by Tobias Reich
  */
 
 album = {

+ 1 - 1
src/scripts/albums.js

@@ -1,6 +1,6 @@
 /**
  * @description	Takes care of every action albums can handle and execute.
- * @copyright	2014 by Tobias Reich
+ * @copyright	2015 by Tobias Reich
  */
 
 albums = {

+ 1 - 1
src/scripts/build.js

@@ -1,6 +1,6 @@
 /**
  * @description	This module is used to generate HTML-Code.
- * @copyright	2014 by Tobias Reich
+ * @copyright	2015 by Tobias Reich
  */
 
 window.build = {}

+ 1 - 1
src/scripts/contextMenu.js

@@ -1,6 +1,6 @@
 /**
  * @description	This module is used for the context menu.
- * @copyright	2014 by Tobias Reich
+ * @copyright	2015 by Tobias Reich
  */
 
 contextMenu = {}

+ 1 - 1
src/scripts/header.js

@@ -1,6 +1,6 @@
 /**
  * @description	This module takes care of the header.
- * @copyright	2014 by Tobias Reich
+ * @copyright	2015 by Tobias Reich
  */
 
 header = {

+ 1 - 1
src/scripts/init.js

@@ -1,6 +1,6 @@
 /**
  * @description	This module is used for bindings.
- * @copyright	2014 by Tobias Reich
+ * @copyright	2015 by Tobias Reich
  */
 
 $(document).ready(function() {

+ 1 - 1
src/scripts/loadingBar.js

@@ -1,6 +1,6 @@
 /**
  * @description	This module is used to show and hide the loading bar.
- * @copyright	2014 by Tobias Reich
+ * @copyright	2015 by Tobias Reich
  */
 
 loadingBar = {

+ 1 - 1
src/scripts/lychee.js

@@ -1,6 +1,6 @@
 /**
  * @description	This module provides the basic functions of Lychee.
- * @copyright	2014 by Tobias Reich
+ * @copyright	2015 by Tobias Reich
  */
 
 lychee = {

+ 1 - 1
src/scripts/multiselect.js

@@ -1,6 +1,6 @@
 /**
  * @description	Select multiple albums or photos.
- * @copyright	2014 by Tobias Reich
+ * @copyright	2015 by Tobias Reich
  */
 
 multiselect = {}

+ 1 - 1
src/scripts/password.js

@@ -1,6 +1,6 @@
 /**
  * @description	Controls the access to password-protected albums and photos.
- * @copyright   2014 by Tobias Reich
+ * @copyright   2015 by Tobias Reich
  */
 
 password = {

+ 1 - 1
src/scripts/photo.js

@@ -1,6 +1,6 @@
 /**
  * @description	Takes care of every action a photo can handle and execute.
- * @copyright	2014 by Tobias Reich
+ * @copyright	2015 by Tobias Reich
  */
 
 photo = {

+ 1 - 1
src/scripts/search.js

@@ -1,6 +1,6 @@
 /**
  * @description	Searches through your photos and albums.
- * @copyright	2014 by Tobias Reich
+ * @copyright	2015 by Tobias Reich
  */
 
 search = {

+ 1 - 1
src/scripts/settings.js

@@ -1,6 +1,6 @@
 /**
  * @description	Lets you change settings.
- * @copyright	2014 by Tobias Reich
+ * @copyright	2015 by Tobias Reich
  */
 
 settings = {}

+ 1 - 1
src/scripts/swipe.js

@@ -1,6 +1,6 @@
 /**
  * @description	Swipes and moves an object.
- * @copyright	2014 by Tobias Reich
+ * @copyright	2015 by Tobias Reich
  */
 
 swipe = {

+ 1 - 1
src/scripts/upload.js

@@ -1,6 +1,6 @@
 /**
  * @description	Takes care of every action an album can handle and execute.
- * @copyright	2014 by Tobias Reich
+ * @copyright	2015 by Tobias Reich
  */
 
 upload = {}

+ 1 - 1
src/scripts/view.js

@@ -1,6 +1,6 @@
 /**
  * @description	Responsible to reflect data changes to the UI.
- * @copyright	2014 by Tobias Reich
+ * @copyright	2015 by Tobias Reich
  */
 
 view = {}

+ 1 - 1
src/scripts/view/main.js

@@ -1,6 +1,6 @@
 /**
  * @description	Used to view single photos with view.php
- * @copyright	2014 by Tobias Reich
+ * @copyright	2015 by Tobias Reich
  */
 
 var header		= $('header'),

+ 1 - 3
src/scripts/visible.js

@@ -1,8 +1,6 @@
 /**
- * @name        Visible Module
  * @description	This module is used to check if elements are visible or not.
- * @author		Tobias Reich
- * @copyright	2014 by Tobias Reich
+ * @copyright	2015 by Tobias Reich
  */
 
 visible = {}

+ 1 - 1
src/styles/_animations.scss

@@ -1,5 +1,5 @@
 /**
- * @copyright   2014 by Tobias Reich
+ * @copyright   2015 by Tobias Reich
  */
 
 /* Animation Setter ------------------------------------------------*/

+ 1 - 1
src/styles/_content.scss

@@ -1,5 +1,5 @@
 /**
- * @copyright   2014 by Tobias Reich
+ * @copyright   2015 by Tobias Reich
  */
 
 #content {

+ 1 - 1
src/styles/_contextmenu.scss

@@ -1,5 +1,5 @@
 /**
- * @copyright   2014 by Tobias Reich
+ * @copyright   2015 by Tobias Reich
  */
 
 /* Context ------------------------------------------------*/

+ 1 - 1
src/styles/_etc.scss

@@ -1,5 +1,5 @@
 /**
- * @copyright   2014 by Tobias Reich
+ * @copyright   2015 by Tobias Reich
  */
 
 /* Functions ------------------------------------------------*/

+ 1 - 1
src/styles/_header.scss

@@ -1,5 +1,5 @@
 /**
- * @copyright   2014 by Tobias Reich
+ * @copyright   2015 by Tobias Reich
  */
 
 header {

+ 1 - 1
src/styles/_imageview.scss

@@ -1,5 +1,5 @@
 /**
- * @copyright   2014 by Tobias Reich
+ * @copyright   2015 by Tobias Reich
  */
 
 #imageview {

+ 1 - 1
src/styles/_infobox.scss

@@ -1,5 +1,5 @@
 /**
- * @copyright   2014 by Tobias Reich
+ * @copyright   2015 by Tobias Reich
  */
 
 #infobox_overlay {

+ 1 - 1
src/styles/_loading.scss

@@ -1,5 +1,5 @@
 /**
- * @copyright   2014 by Tobias Reich
+ * @copyright   2015 by Tobias Reich
  */
 
 #loading {

+ 1 - 1
src/styles/_mediaquery.scss

@@ -1,5 +1,5 @@
 /**
- * @copyright   2014 by Tobias Reich
+ * @copyright   2015 by Tobias Reich
  */
 
 @media only screen and (max-width: 900px) {

+ 1 - 1
src/styles/_message.scss

@@ -1,5 +1,5 @@
 /**
- * @copyright   2014 by Tobias Reich
+ * @copyright   2015 by Tobias Reich
  */
 
 .basicModalContainer {

+ 1 - 1
src/styles/_multiselect.scss

@@ -1,5 +1,5 @@
 /**
- * @copyright   2014 by Tobias Reich
+ * @copyright   2015 by Tobias Reich
  */
 
 #multiselect {

+ 1 - 1
src/styles/main.scss

@@ -1,5 +1,5 @@
 /**
- * @copyright   2014 by Tobias Reich
+ * @copyright   2015 by Tobias Reich
  */
 
 @import 'etc';

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