From 63669229eb748532b51680bac7a6657422d30c4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20Schw=C3=B6rer?= Date: Wed, 15 Oct 2014 11:29:24 +0200 Subject: [PATCH] updated to new version of extendedGitGraph --- www/css/styles.css | 11 + www/javascript/msmain_admin_script.js | 52 + .../extendedgitgraph/ExtendedGitGraph.php | 106 +- .../components/extendedgitgraph/demo.php | 34 - www/protected/config/main.php | 2 + .../controllers/MsmainController.php | 37 +- www/protected/data/git_graph_data.dat | 876 ++++++++++++++ www/protected/data/git_graph_raw.dat | 1055 +++++++++++++++++ www/protected/views/msmain/admin.php | 10 +- .../views/msmain/admin_egh_ajaxReload.php | 20 + .../views/msmain/admin_egh_ajaxStatus.php | 5 + .../views/msmain/admin_updateEGH.php | 20 - 12 files changed, 2141 insertions(+), 87 deletions(-) create mode 100644 www/javascript/msmain_admin_script.js delete mode 100644 www/protected/components/extendedgitgraph/demo.php create mode 100644 www/protected/data/git_graph_data.dat create mode 100644 www/protected/data/git_graph_raw.dat create mode 100644 www/protected/views/msmain/admin_egh_ajaxReload.php create mode 100644 www/protected/views/msmain/admin_egh_ajaxStatus.php delete mode 100644 www/protected/views/msmain/admin_updateEGH.php diff --git a/www/css/styles.css b/www/css/styles.css index abd1646..e68ffd0 100644 --- a/www/css/styles.css +++ b/www/css/styles.css @@ -896,4 +896,15 @@ ul.nav li.dropdown-append:hover > ul.dropdown-menu { .pagination-mini ul>li>a,.pagination-mini ul>li>span{ padding:0 6px; font-size:10.5px; +} + +/* msmain/admin +-------------------------------------------------- */ + +#egh_ajaxOutput { + width: 90%; + height: 246px; + background-color: black; + font-family: monospace; + color: green; } \ No newline at end of file diff --git a/www/javascript/msmain_admin_script.js b/www/javascript/msmain_admin_script.js new file mode 100644 index 0000000..07c4a88 --- /dev/null +++ b/www/javascript/msmain_admin_script.js @@ -0,0 +1,52 @@ +function startAjaxRefresh() +{ + $('#egh_ajaxOutput').val(""); + + val = setInterval( + function() + { + jQuery.ajax({ + url: '/msmain/admin/egh/ajaxStatus', + success: function(result) + { + $('#egh_ajaxOutput').val(result); + $('#egh_ajaxOutput').scrollTop($('#egh_ajaxOutput')[0].scrollHeight); + }, + async: false + }); + }, 500); + + jQuery.ajax({ + url: '/msmain/admin/egh/ajaxReload', + success: function(result) + { + clearInterval(val); + + jQuery.ajax({ + url: '/msmain/admin/egh/ajaxStatus', + success: function(result) + { + $('#egh_ajaxOutput').val(result + '\r\n.'); + $('#egh_ajaxOutput').scrollTop($('#egh_ajaxOutput')[0].scrollHeight); + }, + async: true + }); + }, + error: function( jqXHR, textStatus, errorThrown) + { + clearInterval(val); + + jQuery.ajax({ + url: '/msmain/admin/egh/ajaxStatus', + success: function(result) + { + $('#egh_ajaxOutput').val(result + '\r\n' + 'AN ERROR OCCURED:' + '\r\n' + textStatus); + $('#egh_ajaxOutput').scrollTop($('#egh_ajaxOutput')[0].scrollHeight); + }, + async: true + }); + }, + async: true + }); + +} \ No newline at end of file diff --git a/www/protected/components/extendedgitgraph/ExtendedGitGraph.php b/www/protected/components/extendedgitgraph/ExtendedGitGraph.php index 7615bfb..c00fae3 100644 --- a/www/protected/components/extendedgitgraph/ExtendedGitGraph.php +++ b/www/protected/components/extendedgitgraph/ExtendedGitGraph.php @@ -2,14 +2,17 @@ class ExtendedGitGraph { - const FILE_RAW_DATA = 'protected/data/ext_git_graph_apidata.dat'; - const FILE_FINISHED_DATA = 'protected/data/gitgraph.dat'; + const FILE_RAW_DATA = 'protected/data/git_graph_raw.dat'; + const FILE_FINISHED_DATA = 'protected/data/git_graph_data.dat'; const API_AUTHORIZE = 'https://github.com/login/oauth/authorize?client_id=%s'; - const API_TOKEN = 'https://github.com/login/oauth/access_token?client_id=%s&client_secret=%s&code=%s'; + const API_TOKEN = 'https://github.com/login/oauth/access_token?client_id=%s&client_secret=%s&code=%s'; - const API_RATELIMIT = 'https://api.github.com/rate_limit'; + const API_RATELIMIT = 'https://api.github.com/rate_limit'; const API_REPOSITORIESLIST = 'https://api.github.com/users/%s/repos?page=%d&per_page=100'; + const API_SINGLEREPOSITORY = 'https://api.github.com/repos/%s'; + + const PROGRESS_SESSION_COOKIE = 'ajax_progress_egh_refresh'; private $username; private $token; @@ -18,14 +21,15 @@ class ExtendedGitGraph { private $repositories; private $commits; + private $sec_username = []; + private $sec_repo = []; + private $commitmap = array(); private $startdate = null; private $enddate = null; public function __construct($usr_name) { $this->username = $usr_name; - - set_time_limit(300); // 5min } public function authenticate($auth_key, $client_id, $client_secret) { @@ -44,52 +48,83 @@ class ExtendedGitGraph { } public function collect() { - ob_implicit_flush(true); - ob_end_flush(); + set_time_limit(300); // 5min - //-------------------------------- + $this->output_flushed_clear(); + $this->output_flushed("Start progress"); $this->listRepositories(); - $this->listAllCommits(); $this->save(); - //-------------------------------- - - $this->output_flushed($this->getRemainingRequests() . ' Requests remaining'); + $this->output_flushed("Remaining Requests: " . $this->getRemainingRequests()); + $this->output_flushed("Finished progress"); } - private function listRepositories() { + private function listRepositories() + { + $this->repositories = array(); + + $this->listRepositoriesForUser($this->username); + + foreach ($this->sec_username as $un) + { + $this->listRepositoriesForUser($un); + } + + foreach($this->sec_repo as $srep) + { + $this->listSingleRepo($srep); + } + } + + private function listRepositoriesForUser($usr) { $page = 1; - $url = sprintf(self::API_REPOSITORIESLIST . '&' . $this->tokenHeader, $this->username, $page); + $url = sprintf(self::API_REPOSITORIESLIST . '&' . $this->tokenHeader, $usr, $page); $result = $this->getJSON($url); - $repo_list = array(); - while (! empty($result)) { foreach ($result as $result_repo) { - $repo_list[] = $this->parseRepoJSON($result_repo); + $this->repositories[] = $this->parseRepoJSON($result_repo); $this->output_flushed("Found Repo: " . $result_repo->{'full_name'}); } //########## - $url = sprintf(self::API_REPOSITORIESLIST . '&' . $this->tokenHeader, $this->username, ++$page); + $url = sprintf(self::API_REPOSITORIESLIST . '&' . $this->tokenHeader, $usr, ++$page); $result = $this->getJSON($url); } + } - $this->repositories = $repo_list; + private function listSingleRepo($repo) + { + $url = sprintf(self::API_SINGLEREPOSITORY . '?' . $this->tokenHeader, $repo); + + $result_repo = $this->getJSON($url); + + if (! empty($result_repo)) + { + $this->repositories[] = $this->parseRepoJSON($result_repo); + + $this->output_flushed("Found Repo: " . $result_repo->{'full_name'}); + } } private function getJSON($url) { $options = array('http' => array('user_agent'=> $_SERVER['HTTP_USER_AGENT'])); -// $options = array('http' => array('user_agent'=> 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36')); $context = stream_context_create($options); - $response = file_get_contents($url, false, $context); + + $response = @file_get_contents($url, false, $context); + + if ($response === false) + { + $this->output_flushed("Error recieving json: '" . $url . "'"); + return array(); + } return json_decode($response); } @@ -121,7 +156,7 @@ class ExtendedGitGraph { $commit_list[] = $this->parseCommitJSON($repo, $result_commit); } - $this->output_flushed("Found 100 Commits from " . $repo['full_name']); + $this->output_flushed("Found " . count($result) . " Commits from " . $repo['full_name']); //########## @@ -182,9 +217,20 @@ class ExtendedGitGraph { $this->output_flushed('Finished saving data'); } + public function output_flushed_clear() + { + if (session_status() !== PHP_SESSION_ACTIVE) session_start(); + + $_SESSION[self::PROGRESS_SESSION_COOKIE] = ''; + session_commit(); + } + public function output_flushed($txt) { - echo '[' . date('H:i.s') . '] ' . $txt . "
"; + if (session_status() !== PHP_SESSION_ACTIVE) session_start(); + + $_SESSION[self::PROGRESS_SESSION_COOKIE] .= '[' . date('H:i.s') . '] ' . $txt . "\r\n"; + session_commit(); } public function loadData() { @@ -491,4 +537,14 @@ class ExtendedGitGraph { return $years; } -} \ No newline at end of file + + public function addSecondaryUsername($sun) + { + $this->sec_username[] = $sun; + } + + public function addSecondaryRepository($sre) + { + $this->sec_repo[] = $sre; + } +} \ No newline at end of file diff --git a/www/protected/components/extendedgitgraph/demo.php b/www/protected/components/extendedgitgraph/demo.php deleted file mode 100644 index fe6ca57..0000000 --- a/www/protected/components/extendedgitgraph/demo.php +++ /dev/null @@ -1,34 +0,0 @@ -authenticate('7e26c5f1621349c14a7d'); - -//$v->setToken('7b3f6443cdd4b2f92d75c4c8aa83cfda6c7ca3ce'); -//$v->collect(); - -$v->loadData(); - -?> - - - - - - - - - - - - - generateAndSave(); - echo $v->loadFinished(); - ?> - - \ No newline at end of file diff --git a/www/protected/config/main.php b/www/protected/config/main.php index 403cf59..0172907 100644 --- a/www/protected/config/main.php +++ b/www/protected/config/main.php @@ -104,6 +104,8 @@ return ArrayX::merge( 'eulerproblem/' => 'eulerproblem/index', + 'msmain/admin/egh/' => 'msmain/adminEGH', + 'Highscores/list.php' => 'Highscores/list', // Compatibility 'Highscores/insert.php' => 'Highscores/insert', // Compatibility 'Highscores/update.php' => 'Highscores/update', // Compatibility diff --git a/www/protected/controllers/MsmainController.php b/www/protected/controllers/MsmainController.php index 92d17c0..7268955 100644 --- a/www/protected/controllers/MsmainController.php +++ b/www/protected/controllers/MsmainController.php @@ -25,7 +25,7 @@ class MSMainController extends MSController 'users'=>array('*'), ), array('allow', - 'actions'=>array('admin'), + 'actions'=>array('admin', 'adminEGH'), 'users'=>array('admin'), ), array('deny', @@ -134,15 +134,38 @@ class MSMainController extends MSController public function actionAdmin() { - if (isset($_GET['do_egh_update']) && $_GET['do_egh_update'] == '1') { - $this->layout = null; - $this->render('admin_updateEGH', array()); - return; - } - $this->render('admin', array()); } + public function actionAdminEGH($commandcode) + { + if (strtolower($commandcode) == 'ajaxstatus') + { + $this->layout = null; + + if (session_status() !== PHP_SESSION_ACTIVE) session_start(); + + echo $_SESSION['ajax_progress_egh_refresh']; + + } + elseif (strtolower($commandcode) == 'ajaxreload') + { + $v = new ExtendedGitGraph('Mikescher'); + + $v->addSecondaryUsername("Sam-Development"); + $v->addSecondaryRepository("Anastron/ColorRunner"); + + $v->setToken(MsHelper::getStringDBVar('egg_auth-token')); + $v->collect(); + + $v->generateAndSave(); + } + else + { + throw new CHttpException(400,'Invalid request. Please do not repeat this request again.'); + } + } + public function actionLogout() { Yii::app()->user->logout(); diff --git a/www/protected/data/git_graph_data.dat b/www/protected/data/git_graph_data.dat new file mode 100644 index 0000000..9dceee4 --- /dev/null +++ b/www/protected/data/git_graph_data.dat @@ -0,0 +1,876 @@ +a:12:{s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-15 11:25:10";s:13:"timezone_type";i:3;s:8:"timezone";s:13:"Europe/Berlin";}s:5:"total";i:1130;s:5:"repos";i:26;s:6:"streak";i:22;s:12:"streak_start";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-25 00:00:00";s:13:"timezone_type";i:3;s:8:"timezone";s:13:"Europe/Berlin";}s:10:"streak_end";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-17 00:00:00";s:13:"timezone_type";i:3;s:8:"timezone";s:13:"Europe/Berlin";}s:11:"max_commits";i:17;s:16:"max_commits_date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-15 00:00:00";s:13:"timezone_type";i:3;s:8:"timezone";s:13:"Europe/Berlin";}s:11:"avg_commits";d:1.9362068965517240659579556449898518621921539306640625;s:5:"start";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-14 00:00:00";s:13:"timezone_type";i:3;s:8:"timezone";s:13:"Europe/Berlin";}s:3:"end";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-14 00:00:00";s:13:"timezone_type";i:3;s:8:"timezone";s:13:"Europe/Berlin";}s:7:"content";s:120115:" + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + JanFebMarAprMayJunJulAugSepOctNovDecMTWTFSS2013 + + +
+    +
+ + +

+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + JanFebMarAprMayJunJulAugSepOctMTWTFSS2014 + + +
+    +
+ + +

";} \ No newline at end of file diff --git a/www/protected/data/git_graph_raw.dat b/www/protected/data/git_graph_raw.dat new file mode 100644 index 0000000..28b33bc --- /dev/null +++ b/www/protected/data/git_graph_raw.dat @@ -0,0 +1,1055 @@ +a:2:{s:12:"repositories";a:26:{i:0;a:13:{s:2:"id";i:19652359;s:4:"name";s:9:"AbsCanvas";s:9:"full_name";s:19:"Mikescher/AbsCanvas";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/AbsCanvas";s:8:"language";s:4:"Java";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-10 21:24:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:7876;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/AbsCanvas/commits";}i:1;a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-05 09:41:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}i:2;a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-06 19:54:47";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}i:3;a:13:{s:2:"id";i:14202146;s:4:"name";s:9:"ColorGame";s:9:"full_name";s:19:"Mikescher/ColorGame";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/ColorGame";s:8:"language";s:4:"Java";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-07 11:37:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:3044;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/ColorGame/commits";}i:4;a:13:{s:2:"id";i:20131600;s:4:"name";s:8:"DirtyPGP";s:9:"full_name";s:18:"Mikescher/DirtyPGP";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/DirtyPGP";s:8:"language";s:2:"C#";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-24 14:40:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/DirtyPGP/commits";}i:5;a:13:{s:2:"id";i:20598131;s:4:"name";s:16:"extendedGitGraph";s:9:"full_name";s:26:"Mikescher/extendedGitGraph";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/extendedGitGraph";s:8:"language";s:3:"PHP";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-07 17:09:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:132;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/extendedGitGraph/commits";}i:6;a:13:{s:2:"id";i:19815692;s:4:"name";s:28:"Fowler-Refactoring-Chapter_1";s:9:"full_name";s:38:"Mikescher/Fowler-Refactoring-Chapter_1";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:57:"https://github.com/Mikescher/Fowler-Refactoring-Chapter_1";s:8:"language";s:4:"Java";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-15 10:43:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:296;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:75:"https://api.github.com/repos/Mikescher/Fowler-Refactoring-Chapter_1/commits";}i:7;a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-14 20:57:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}i:8;a:13:{s:2:"id";i:19208822;s:4:"name";s:10:"jQCCounter";s:9:"full_name";s:20:"Mikescher/jQCCounter";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/jQCCounter";s:8:"language";s:4:"Java";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-27 15:56:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:260;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/jQCCounter/commits";}i:9;a:13:{s:2:"id";i:19209134;s:4:"name";s:23:"MikesSharpHelperClasses";s:9:"full_name";s:33:"Mikescher/MikesSharpHelperClasses";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:52:"https://github.com/Mikescher/MikesSharpHelperClasses";s:8:"language";s:2:"C#";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-27 16:07:54";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:152;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:70:"https://api.github.com/repos/Mikescher/MikesSharpHelperClasses/commits";}i:10;a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-31 09:11:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}i:11;a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-16 15:36:54";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}i:12;a:13:{s:2:"id";i:12468934;s:4:"name";s:18:"RaplaPreviewWidget";s:9:"full_name";s:28:"Mikescher/RaplaPreviewWidget";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/RaplaPreviewWidget";s:8:"language";s:4:"Java";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-29 19:17:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:952;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/RaplaPreviewWidget/commits";}i:13;a:13:{s:2:"id";i:9667378;s:4:"name";s:16:"Rezeptverwaltung";s:9:"full_name";s:26:"Mikescher/Rezeptverwaltung";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/Rezeptverwaltung";s:8:"language";s:4:"Java";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-25 08:39:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:4237;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/Rezeptverwaltung/commits";}i:14;a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-17 12:10:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}i:15;a:13:{s:2:"id";i:11131546;s:4:"name";s:8:"SharkSim";s:9:"full_name";s:18:"Mikescher/SharkSim";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/SharkSim";s:8:"language";s:1:"C";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-02 18:12:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:98732;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/SharkSim/commits";}i:16;a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-15 07:51:02";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}i:17;a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-03 11:23:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}i:18;a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-04 09:24:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}i:19;a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-28 08:39:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}i:20;a:13:{s:2:"id";i:22617301;s:4:"name";s:8:"yiistrap";s:9:"full_name";s:18:"Mikescher/yiistrap";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/yiistrap";s:8:"language";s:3:"PHP";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-04 19:38:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:4563;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/yiistrap/commits";}i:21;a:13:{s:2:"id";i:24758789;s:4:"name";s:10:"JumpingJoe";s:9:"full_name";s:26:"Sam-Development/JumpingJoe";s:5:"owner";s:15:"Sam-Development";s:8:"owner_id";i:9008527;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/9008527?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Sam-Development/JumpingJoe";s:8:"language";s:4:"Java";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-03 13:10:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:21280;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Sam-Development/JumpingJoe/commits";}i:22;a:13:{s:2:"id";i:24764588;s:4:"name";s:6:"SAMApp";s:9:"full_name";s:22:"Sam-Development/SAMApp";s:5:"owner";s:15:"Sam-Development";s:8:"owner_id";i:9008527;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/9008527?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Sam-Development/SAMApp";s:8:"language";N;s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-03 16:00:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Sam-Development/SAMApp/commits";}i:23;a:13:{s:2:"id";i:25170491;s:4:"name";s:5:"SAMHP";s:9:"full_name";s:21:"Sam-Development/SAMHP";s:5:"owner";s:15:"Sam-Development";s:8:"owner_id";i:9008527;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/9008527?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Sam-Development/SAMHP";s:8:"language";s:3:"CSS";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-13 17:56:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Sam-Development/SAMHP/commits";}i:24;a:13:{s:2:"id";i:24764627;s:4:"name";s:11:"SurivorGame";s:9:"full_name";s:27:"Sam-Development/SurivorGame";s:5:"owner";s:15:"Sam-Development";s:8:"owner_id";i:9008527;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/9008527?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:46:"https://github.com/Sam-Development/SurivorGame";s:8:"language";N;s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-03 16:01:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:64:"https://api.github.com/repos/Sam-Development/SurivorGame/commits";}i:25;a:13:{s:2:"id";i:22794555;s:4:"name";s:11:"ColorRunner";s:9:"full_name";s:20:"Anastron/ColorRunner";s:5:"owner";s:8:"Anastron";s:8:"owner_id";i:4252830;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/4252830?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Anastron/ColorRunner";s:8:"language";s:4:"Java";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-09 20:31:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:892;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Anastron/ColorRunner/commits";}}s:7:"commits";a:1130:{i:0;a:8:{s:3:"sha";s:40:"db22831dfe9c1da2ebb03c3e0bb8aedf12832d62";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:37:"Added new logo (for new Homepage ...)";s:10:"repository";a:13:{s:2:"id";i:19652359;s:4:"name";s:9:"AbsCanvas";s:9:"full_name";s:19:"Mikescher/AbsCanvas";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/AbsCanvas";s:8:"language";s:4:"Java";s:8:"creation";r:13;s:4:"size";i:7876;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/AbsCanvas/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-03 12:37:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1;a:8:{s:3:"sha";s:40:"874e6053eae7b2bb63c61b173b4dfc7e5c069739";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"Added Binary Builds";s:10:"repository";a:13:{s:2:"id";i:19652359;s:4:"name";s:9:"AbsCanvas";s:9:"full_name";s:19:"Mikescher/AbsCanvas";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/AbsCanvas";s:8:"language";s:4:"Java";s:8:"creation";r:13;s:4:"size";i:7876;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/AbsCanvas/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-10 21:32:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:2;a:8:{s:3:"sha";s:40:"f8a01b3e444907fd9d6b1f09450b071b7078a360";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:13:"Added Project";s:10:"repository";a:13:{s:2:"id";i:19652359;s:4:"name";s:9:"AbsCanvas";s:9:"full_name";s:19:"Mikescher/AbsCanvas";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/AbsCanvas";s:8:"language";s:4:"Java";s:8:"creation";r:13;s:4:"size";i:7876;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/AbsCanvas/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-10 21:31:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:3;a:8:{s:3:"sha";s:40:"835bc89dbc674dbfef0e03baae3807dacfd15f23";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Initial commit";s:10:"repository";a:13:{s:2:"id";i:19652359;s:4:"name";s:9:"AbsCanvas";s:9:"full_name";s:19:"Mikescher/AbsCanvas";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/AbsCanvas";s:8:"language";s:4:"Java";s:8:"creation";r:13;s:4:"size";i:7876;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/AbsCanvas/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-10 21:24:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:4;a:8:{s:3:"sha";s:40:"3931a743b1f28590a15160933cd27c7e2223153c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:68:"Fixed AV when monitor is off + Added Right/Left Choice to DIPSViewer";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:30;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-08 09:25:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:5;a:8:{s:3:"sha";s:40:"572283622f0b5229e87b5ef1ec4aab38f8a51e9a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:56:"Added History Cleanup to TVC (Removes Dropbox-Artifacts)";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:30;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-10 18:25:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:6;a:8:{s:3:"sha";s:40:"9949b2f6c4d33f79ecc4124260dd460b173dc7c6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:54:"Fixed AWC Bug (Wrong order of Multi-Monitor-Wallpaper)";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:30;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-07 16:58:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:7;a:8:{s:3:"sha";s:40:"454a4bbf0ea397fbc0e64233991d7f1094f8b7b6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:57:"Fixed AWC Bug (MonitorConstellation HD_SX not recognized)";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:30;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-07 16:49:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:8;a:8:{s:3:"sha";s:40:"c7a011d26433411c85b23ee884e4b89f1aa60ad2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Cleaned up DIPSViewer Visuals";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:30;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-07 16:26:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:9;a:8:{s:3:"sha";s:40:"bc295ddd89b3dafa2177943716bb49625ef02cdd";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Updated VS Output path";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:30;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-07 16:15:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:10;a:8:{s:3:"sha";s:40:"d2f624a406636f9a545f245cb847f78dd9c3370a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Removed unneccessary PAUSE in ATC";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:30;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-07 12:26:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:11;a:8:{s:3:"sha";s:40:"2b294c6c459e66a6e4af458fae0db71509e38521";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:41:"Added Restore-Functionality to DIPSViewer";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:30;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-07 12:23:07";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:12;a:8:{s:3:"sha";s:40:"e84f5f9ae255a911724f7322d320fc24dd61e8fc";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:41:"Extracted Desktop-Icons Access to own dll";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:30;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-07 12:22:36";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:13;a:8:{s:3:"sha";s:40:"09082b3d31cc1b71757fa687c88c387ccd52551b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:60:"Added Screen display to DIPSViewer (DIPS-log format updated)";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:30;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-07 10:44:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:14;a:8:{s:3:"sha";s:40:"288c399254e8249993049c3b894a39663f63d06a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Added Linebreak to log";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:30;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-06 21:18:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:15;a:8:{s:3:"sha";s:40:"b41d05876e352d7e20643f9160aea4fbf0df88a0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Implemented ";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:30;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-06 20:42:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:16;a:8:{s:3:"sha";s:40:"e551224cda5073b0cc8739bf7a7b7ce19b1d1dd7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Updated DIPSViewer";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:30;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-06 20:42:02";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:17;a:8:{s:3:"sha";s:40:"82f940fcf10114c9354bf9c79ed09d39a8845fd1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Updated DIPSViewer-UI";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:30;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-06 14:23:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:18;a:8:{s:3:"sha";s:40:"a54636f177c7a68d64176e12d9db180a8279724e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Added DIPSViewer";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:30;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-06 13:55:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:19;a:8:{s:3:"sha";s:40:"f3a791aca996555af94779f37f5d1261f878c95d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Implemented ";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:30;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-05 14:15:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:20;a:8:{s:3:"sha";s:40:"2bceefdc1f6a462cfc6558bd154134b7118fe2dc";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Implemented ";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:30;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-05 13:18:12";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:21;a:8:{s:3:"sha";s:40:"1775b67edcc83c2f9c85c845a1ae387984222f90";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"Started Implementing DIPS";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:30;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-05 12:09:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:22;a:8:{s:3:"sha";s:40:"e599d5d23b44d318cdbe89d3a5eb35ec4e3c6248";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:66:"Added Classes for most things (Config, Logger, AWC, DIPS, TVC ...)";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:30;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-05 09:44:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:23;a:8:{s:3:"sha";s:40:"6a78fe9f170faae02150b3335088e34a78894f70";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Initial commit";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:30;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-05 09:41:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:24;a:8:{s:3:"sha";s:40:"0d3a7d8a6e2f52a5e6ed5799f0f3f9c0cd8021b1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:62:"[BefunExec] Tried fixing non-closing after exiting main-window";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-14 09:02:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:25;a:8:{s:3:"sha";s:40:"43a65401ca32089435b4a79aecf77992b35b65d1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:53:"[BefunExec] Fixed Reload when opening file in-program";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-12 13:44:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:26;a:8:{s:3:"sha";s:40:"3d9e0dd2411e85f48189e869e2eae5f4bd20bb23";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Update README.md";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-08 07:22:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:27;a:8:{s:3:"sha";s:40:"bb278ec44312b4fa122a7a8bee28a10693c7da1f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Update README.md";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-07 09:18:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:28;a:8:{s:3:"sha";s:40:"a769ca624125ceb8c8ee18afbeecd264ff900ba4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Update README.md";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-07 09:16:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:29;a:8:{s:3:"sha";s:40:"feb68961fd28ff1f38caeee7d00b3391794b6cf9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"[BefunDebug] Added Tools Tab";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-23 20:10:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:30;a:8:{s:3:"sha";s:40:"74fc14379b389f2f5055786fdeb92e121aa4f17b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"[BEfunExec] Added Statusbar";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-18 20:20:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:31;a:8:{s:3:"sha";s:40:"8bcc16f158e8b411432dc02cb449bc5277f7a962";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:62:"[BefunExec] Added effective (from BefunHighlight) Width/Height";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-18 18:55:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:32;a:8:{s:3:"sha";s:40:"499acd09567bbcc3f622ce7cd8be0a201bf1b4b9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:53:"[BefunExec] Added Option to create FullRes Screenshot";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-17 17:11:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:33;a:8:{s:3:"sha";s:40:"903b7cd0edaf766ff788111da471fd21f518fca2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"Fixed AV when loading big file";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-16 18:16:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:34;a:8:{s:3:"sha";s:40:"3a15bfa935a0f5fd2fc1afb4e8a6e67e569e4024";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:85:"### Fixes ### + - Fixed MASSIVE MemoryLeak on low FPS + - Added Befunge version display";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-16 17:35:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:35;a:8:{s:3:"sha";s:40:"91971d51684dac9319b5d67a80c2fae8755fcb6a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"Added Timer to BefunExec";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-11 17:03:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:36;a:8:{s:3:"sha";s:40:"4489e65f0c262cdea5ce82cf8575cee498f936e7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Updated examples to use new SH selector";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-17 09:12:34";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:37;a:8:{s:3:"sha";s:40:"e20e199376b6fb15b0e5e459dddd4ef7a735df4d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:37:"[BefunWrite] Fixed typo in PI_Calc.tf";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-16 12:36:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:38;a:8:{s:3:"sha";s:40:"699ddf0d8b64e2ee283f1e42e925fa5159c38407";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:86:"[BefunGen] **Major** code compression by vertically expanding Callframe I/O operations";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-10 17:10:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:39;a:8:{s:3:"sha";s:40:"7f69f47fdaa8f889f6a65616ce3c8105e4cf6c7a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"[BefunWrite] Updated Example "Square It"";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-10 17:10:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:40;a:8:{s:3:"sha";s:40:"33666a194372b48ac6039854dda02d3b06a8a9cb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"[BefunExec & BefunGen] Added Todo's";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 20:57:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:41;a:8:{s:3:"sha";s:40:"8952ba449aa04d12663c01e045c35f1a69f6d38b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"[ALL] Changed Ouputpath to a common one";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 19:56:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:42;a:8:{s:3:"sha";s:40:"4a8e1509ed1cf096a51be97eadf7fcf7bba2bb17";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:85:"[BefunExec] Added Option to hide "Input char"-message && append input on enter method";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 19:47:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:43;a:8:{s:3:"sha";s:40:"e4e7eff9eb692f4d571d8cff6583537d1b118206";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"[BefunWrite] Added new example: "Square It"";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 19:35:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:44;a:8:{s:3:"sha";s:40:"b09d24e04e31f1c1f5a40636b648c8127a1012bf";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:70:"[BefunGen] Fixed wrong Re-Entry adresses when using a RepeatUntil-Stmt";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 19:33:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:45;a:8:{s:3:"sha";s:40:"582e9051c76d78ef8f5023183a688aa9bd9990b1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:56:"[BefunExec] Fixed **massive** lag when turning decay off";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 19:33:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:46;a:8:{s:3:"sha";s:40:"9f254abfa4e0319183d3d711944f6dde85f1947a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:105:"[BefunGen] Fixed possible unexpected behaviour in Stmt_Switch (and it confused my syntax highlighter ...)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 17:50:48";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:47;a:8:{s:3:"sha";s:40:"6e2fab6ebed17cd0a60dafc09d99e42351ae2975";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:56:"[BefunGen] Optimized Stmt_Out_CharArr for short literals";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 16:58:10";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:48;a:8:{s:3:"sha";s:40:"d8fc4c5f852566a326378599996cf34dcf3e32ec";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:120:"[BefunWrite] Fixed calling Interpreter from different working directory +[BefunGen] Added watermark to generated programs";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 16:31:47";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:49;a:8:{s:3:"sha";s:40:"57745c0f8c5be764c79289189f5012e1294ca7d1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:141:"[BefunWrite] Fixes: + +[BefunWrite] Fixed Typos +[BefunWrite] Fixed Tail setting not working +[BefunWrite] Fixed Syntaxhighlighting not tri-state";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 16:30:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:50;a:8:{s:3:"sha";s:40:"cac900aa231f23e54e0a10dba21afce6701d653a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:70:"Changed Assemblyname of BefunDebug - Fixed old refernces of BefungExec";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 16:28:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:51;a:8:{s:3:"sha";s:40:"441052d4e4bb75bb8498ebce9d7ca0266d8f37d9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:70:"[BefunExec] Changed Stepcounter to ulong (should never overflow again)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 16:27:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:52;a:8:{s:3:"sha";s:40:"87203804ef80b75d6fc5710789588a871313ec5a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Removed unused projects and files";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-06 01:17:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:53;a:8:{s:3:"sha";s:40:"930640b18d8a3eba8dfe3a1587deeb16d69827b5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Commited missing changrs from yesterday";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-05 09:01:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:54;a:8:{s:3:"sha";s:40:"95e07368001038270376bc055f282ee0ee873dba";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:59:"[BefunExec] Added LQ SH_EXTENDED ( who would use that ?? )";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-04 18:48:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:55;a:8:{s:3:"sha";s:40:"15be09d8529e9ec91f96d70e1259c64b53c65f54";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:65:"[BefunGen] changed NumberRep-internals from int32 to int64 (long)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-04 18:08:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:56;a:8:{s:3:"sha";s:40:"1b53aff2d9a67d81f4b970a8084244b9a39b2642";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:56:"[BefunExec] changed internals from int32 to int64 (long)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-04 17:18:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:57;a:8:{s:3:"sha";s:40:"3bf28fb7c3d70f00f50e1ed9b5893ae486bae8d2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:42:"[BefunExec] Added reload from file command";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-04 16:21:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:58;a:8:{s:3:"sha";s:40:"d7185a570af14524b1bcc65c717e4611b377f903";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:56:"[BefunExec] automatically use SH_EXTENDED on small progs";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-04 15:33:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:59;a:8:{s:3:"sha";s:40:"9de8755e7d6a683857fe668ce95684ca6fcf61fc";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:78:"[BefunExec] Changed namespaces & assembly names to BefunExec (from BefungExec)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-04 15:20:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:60;a:8:{s:3:"sha";s:40:"ce88746523756282328ef4302c5cda5dee0fe87c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"[BefunExec] Added Todo's";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-04 06:25:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:61;a:8:{s:3:"sha";s:40:"ac9d2f13d9bdd553f5d88c64551f6ad6c7e5cdd1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:65:"[BefunExec] Improved BefunHighlight performance & added SH update";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-03 16:07:52";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:62;a:8:{s:3:"sha";s:40:"94d95a0b1fead591dd6d681e68c0377c41956746";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:45:"[BefunExec] Added BefunHighlight to BefunExec";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-03 16:01:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:63;a:8:{s:3:"sha";s:40:"d471c1711c1fe59d44ca71818ce15f08c00a08fe";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:47:"Changed License to MIT (BefunWrite + BefunExec)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-30 15:28:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:64;a:8:{s:3:"sha";s:40:"324363a6a00a45190d5961b4401c854c5f67c5a0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:47:"Removed duplicate files from renaming BefunExec";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-27 22:29:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:65;a:8:{s:3:"sha";s:40:"2f8df8f65e9bb0bfb3f0977170dd7155f781734c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"Finished basig BefunHighlighter code";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-27 22:28:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:66;a:8:{s:3:"sha";s:40:"6e65128ac8d69c525d8246a93d17ee2511e07724";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:41:"Finished core construct of BefunHighlight";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-27 18:09:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:67;a:8:{s:3:"sha";s:40:"01df5a50a356e8e7a6dad4d7b53ea470c594c605";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:32:"Added new Project BefunHighlight";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-27 16:06:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:68;a:8:{s:3:"sha";s:40:"dec852f031d76b708873ace467d8fe1c7c4505fa";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:58:"Renamed BefungExex to BefunExec fo a matter of consistency";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-27 16:06:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:69;a:8:{s:3:"sha";s:40:"f4fb7dde1fb6c541d4a833299e1b682f973f805b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:42:"[BefunExec] Added GIF Export Functionality";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-27 11:47:10";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:70;a:8:{s:3:"sha";s:40:"cf90757d8eb2084d929f0a035324f34db00cea1c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:58:"[BefunWrite] Bugfix: Fixed crash when opending AboutWindow";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-26 12:48:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:71;a:8:{s:3:"sha";s:40:"7c1cbd0d10ebc3d53b70f29f3c4c326a870b1f6d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:79:"[BefungExec] Bugfix: Fixed Wrong (LQ) Rendering with a lot of identical symbols";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-26 12:42:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:72;a:8:{s:3:"sha";s:40:"1a0f2c128a4327f33b2f1e1a38cfc6973e48d97a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"[BefunWrite] Added new Example: GOL";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-26 12:35:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:73;a:8:{s:3:"sha";s:40:"bfd65da0aae7f83af7971861c9e2ad533e9be932";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:48:"[BefunGen] Set Grammarbug ("4-4") to "WON'T FIX"";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-26 11:49:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:74;a:8:{s:3:"sha";s:40:"363688c8a03a9f6aea046b45be53328bee54afb7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"[BefunDebug] Added field for NumberRep Size";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-11 19:31:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:75;a:8:{s:3:"sha";s:40:"554a70bd1f0238e666cc50c7216a4f1304692142";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:68:"[BefunExec] Fixed Dup Operator on empty stack (now results in [0|0])";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-11 13:52:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:76;a:8:{s:3:"sha";s:40:"02a9db581bbb10d5c46eacd32b7b87f5fad1ddd0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:5:"+TODO";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-28 13:06:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:77;a:8:{s:3:"sha";s:40:"3d5381148304e067baeac24d5a6b1f0133efd357";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"[BefunWrite] Added Output :)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-27 13:08:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:78;a:8:{s:3:"sha";s:40:"b35781cdffa1cfbd62fb16ad8995d1b14b8cec43";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:64:"[BefunWrite] Fixed RunConfigurations (chars not saved correctly)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-27 11:29:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:79;a:8:{s:3:"sha";s:40:"a1439ac622b23ecec686beaf434ce0dd01e1883d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"Updated Examples with new shorthand VarDecl";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 16:16:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:80;a:8:{s:3:"sha";s:40:"bb2b6701607f90ab7418b79304a967ed243f98c3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:56:"[BefunGen] Added Shorthand VarDecl to Grammar and Parser";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 16:06:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:81;a:8:{s:3:"sha";s:40:"a72872dd771098251f2ffe16f548b09f6d77439a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:48:"[BefunGen] Added checks for duplicate Identifier";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 16:05:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:82;a:8:{s:3:"sha";s:40:"59d742568e70f651d1ac3ecd46e158e995517211";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:12:"Small things";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 14:39:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:83;a:8:{s:3:"sha";s:40:"a54aad8a08a0ac02d2077796b561ea7f203db84e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"Added new Example: Sieve of Eratosthenes";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 14:24:36";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:84;a:8:{s:3:"sha";s:40:"88b571a3b0f1c573d35c6eb35b0f8fed34efc9c1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:46:"[Bugfix] Constants in Valuepointer not inlined";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 14:24:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:85;a:8:{s:3:"sha";s:40:"7f217fa830829bdf21a06766c9b19c1addb02334";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:48:"[BefunGen] Added new Def-Constant "DISPLAY_SIZE"";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 14:23:47";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:86;a:8:{s:3:"sha";s:40:"5222a62658499dc0eee1b80b63bf92e16fa73dd7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"Added 2 more Unit Tests (Outf, goto)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 13:39:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:87;a:8:{s:3:"sha";s:40:"d483e8ea894a4f96b0ab13f4a213c6ad1d966beb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:70:"[BefunGen] Added Optimization (Flatten and CleanUp StmtList Hierachie)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 13:30:41";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:88;a:8:{s:3:"sha";s:40:"743ca0823c731e91123a087598f771882d2137e3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:48:"[BefunGen] Added new (Makro-)Command ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 12:41:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:89;a:8:{s:3:"sha";s:40:"8b130110c6c1415157f1a71abe545976464374d8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"Added more Examples";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 10:25:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:90;a:8:{s:3:"sha";s:40:"141994af268e9b9f3f63813f9e1ac1cc1f46f01b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"[BefunWrite] Added "Build All" Cmd";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 10:25:10";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:91;a:8:{s:3:"sha";s:40:"c0e21733a6b39eb6f1dcbc0eec8a75cdb0c1b138";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"[BefunWrite] Fixed SaveAs";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 10:00:31";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:92;a:8:{s:3:"sha";s:40:"46039e2d42621aa268508b90c9232261e0593896";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"Bugfixes and PICalc Example";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-25 21:29:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:93;a:8:{s:3:"sha";s:40:"b8897212d33db58af99fd8545c3a0c999c2ebb10";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"Added BefunWrite Examples";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-25 20:22:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:94;a:8:{s:3:"sha";s:40:"3dfeaa3afde9665ad7a89f4065bcdd683721edee";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"FIxed a few minor Bugs";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-25 20:22:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:95;a:8:{s:3:"sha";s:40:"857ce1c8b74ab8e5e6d80635cf590c7fbc0a75a0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:55:"Added Explorer Integration (open File from commandline)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-25 19:42:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:96;a:8:{s:3:"sha";s:40:"b096b295d44dd1f52a929b25c179e8dab0b5ee20";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"[BefungExec & BefunWrite] Added Cursor Follow Mode";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-25 09:44:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:97;a:8:{s:3:"sha";s:40:"29d79d5a88052c220970b6d8e7b1c51a95fe4de9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:80:"[OPTIMIZE] Optimized multiple MethodCalls in one line +--> use only one exit lane";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-25 08:35:29";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:98;a:8:{s:3:"sha";s:40:"43d54118c324eb1a8e0bb7122fa7792c58e0aafa";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:20:"Added more UnitTests";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-25 08:21:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:99;a:8:{s:3:"sha";s:40:"4675d5a8673f3becf6bf48bdda6e4bea7e96be43";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:55:"[BUGFIX] Fixed recursive Methodcalls like push(peek());";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-25 07:57:21";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:100;a:8:{s:3:"sha";s:40:"96594d36b34222e04b000f3f1e15c98f03a302ef";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:20:"Added fatal //TODO";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-23 14:00:36";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:101;a:8:{s:3:"sha";s:40:"933c54b61c39cda4a28e42e9e2c97c9d1fc9db17";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"Fixed Reversed Switch Statement with long children";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-23 14:00:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:102;a:8:{s:3:"sha";s:40:"419c6e701fee92a0853ebeaafb407961497a5f02";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"Various Bugfixes && UserExceptions";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-23 12:41:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:103;a:8:{s:3:"sha";s:40:"641cfd6c0056651d404f53509438f77ac385fbea";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Simplified BefunWrite Example";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-23 12:40:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:104;a:8:{s:3:"sha";s:40:"bd3f74421da2c6875ccdd31368c0c39289333d4f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Fixed AV when zooming out in BefungExec";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-23 12:40:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:105;a:8:{s:3:"sha";s:40:"bf4e3745b5186e4cd11a5f202d95b9381f82a75e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:38:"Added RemoveUnusedMethods Optimization";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-23 10:45:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:106;a:8:{s:3:"sha";s:40:"b99647d0474a9fb5ddf7b602e4c1f7baef8720af";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:68:"Added (Optimize Static Expressions)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-23 09:55:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:107;a:8:{s:3:"sha";s:40:"3376274f4d02acfc57034872bc0006a36897aa10";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:46:"Added Check for RETURN Statement in Mainmethod";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-23 08:33:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:108;a:8:{s:3:"sha";s:40:"55c722e21147c78ce12c02f78052bbe75a2d850e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:48:"Fixed Output not updating on Reset in BefungExec";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-23 08:13:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:109;a:8:{s:3:"sha";s:40:"42d129a8d09f2f1042ab6d7913324a1ad735c65f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:54:"Added Default_Display_Value to BefunGen and BefunWrite";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-23 08:08:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:110;a:8:{s:3:"sha";s:40:"810a0d03cacb2849f8bb930e0f53c386aa5bdc5d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:57:"Added Icons (BefunExec, BefunGen, BefunDebug, BefunWrite)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-22 13:12:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:111;a:8:{s:3:"sha";s:40:"9a5f57b7d8d1fc2b69005067a65cf3dce02ddcd0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"Renamed BefunGenStudio to BefunDebug";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-22 13:04:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:112;a:8:{s:3:"sha";s:40:"259b5116050fa2d19fafded3a441237149c8aec3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Added Menu + About-Dialog to BefunWrite";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-22 12:06:36";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:113;a:8:{s:3:"sha";s:40:"49bbdbd63eaf660926130381e28c937d7eb73509";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:67:"Fixed no error when declaring a variable with a wrong-typed Literal";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-22 09:20:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:114;a:8:{s:3:"sha";s:40:"675cd3a06dea85a409090ac8cbdc06dcfadeb704";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"Added MouseWheel Zooming";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-21 18:29:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:115;a:8:{s:3:"sha";s:40:"99da466b833bb7acbfe85db9439fcf690189aaa8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Fixed (BR->TL) Zooming";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-21 15:46:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:116;a:8:{s:3:"sha";s:40:"56937902317d04de8063641141e354de39dfbc45";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:32:"Added About Screen to BefungExec";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-21 14:59:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:117;a:8:{s:3:"sha";s:40:"85f65b9f7eca8b4453386a3fe4b525aa3dc3b3c9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"Reset DemoProg to previous version";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-20 12:19:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:118;a:8:{s:3:"sha";s:40:"ab9c5f58998a02fd797d94da21a88b7ac677c174";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:65:"Added Input Queque && Fixed KeyEvents when glProgView not focused";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-20 12:16:46";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:119;a:8:{s:3:"sha";s:40:"0b01bff202b7f60589fd78418050de082497fd6d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"Added Fields for In/Output to BefungExec";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-20 11:19:10";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:120;a:8:{s:3:"sha";s:40:"1d8a3ef675dabd43dd26368077b7ea7600a2e188";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:55:"Fixed New Save not correctly registering sourcecodefile";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-19 16:09:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:121;a:8:{s:3:"sha";s:40:"488b454994b51f7b9724eaf6d216cd33016849b2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:49:"Fixed CharSpinner Events not correctly registered";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-19 14:11:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:122;a:8:{s:3:"sha";s:40:"fccef901db8c5a41b4bca03e3e7122081f05b2ce";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:23:"Added Run to BefunWrite";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-16 14:14:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:123;a:8:{s:3:"sha";s:40:"203053f85abb5d09b6c10a798519acc166128549";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"Improved ToolbarButtonTheme";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-16 11:27:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:124;a:8:{s:3:"sha";s:40:"fa3c5a34f2a5015b0ea9f6c1349d1831684f00ed";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Added Building to BefunWrite";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-16 10:27:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:125;a:8:{s:3:"sha";s:40:"b8979f3f7354b6e46f18eb7ae8e48d0914a0a66e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:67:"Removed FailMessage from TextFungeParser (=> now throws Exceptions)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-16 10:18:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:126;a:8:{s:3:"sha";s:40:"ed604335a6e0207e5da21a92ff94fa431e3f6faf";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:52:"Fixed BefunGenTests with new CodeGenOptions Handling";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-16 10:18:02";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:127;a:8:{s:3:"sha";s:40:"5fe8b679b382083cd2b4ec180c187f9e8192838b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"Added StepCounter to BefunExec";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-16 09:35:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:128;a:8:{s:3:"sha";s:40:"af8690d94cf6f4b67f137f39156309c4f54b6a2c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Added ErrorList to BefunWrite";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-15 20:32:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:129;a:8:{s:3:"sha";s:40:"33b3f098b589906cbbb16bdbe4ab499b92b84fc5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"Added ProgrammExplorer to BefunWrite";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-15 20:21:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:130;a:8:{s:3:"sha";s:40:"b25ae763775729272d0782142d188146cde5ad58";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:41:"Added Display of Error Line in BefunWrite";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-14 13:54:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:131;a:8:{s:3:"sha";s:40:"9e1bb772ad3de49b4b8f8d484ceff5f20d15d2f4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Added RunConfiguration Dialog";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-14 12:21:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:132;a:8:{s:3:"sha";s:40:"4901bc8b8b42e8dadf1b45118201f90b04ef6d40";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Added greyable ToolbarButtons";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-14 11:57:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:133;a:8:{s:3:"sha";s:40:"84d4f89dad290eddefaf080e7008cec24e819998";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Cleaned up GUI & WPF Commands";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-14 09:17:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:134;a:8:{s:3:"sha";s:40:"1e202b75f6581b9495464b85e586eca0767bedbf";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"Added Loading/Saving/Creating to BefunWrite";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-30 16:58:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:135;a:8:{s:3:"sha";s:40:"2e3c77e2615a7e30fb22fc1dccaf97b8077b711b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"Finished Mockup of BefunWrite (Menu/Dock/Edit ...)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-30 12:54:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:136;a:8:{s:3:"sha";s:40:"5065818e7222854389e43bfa577ff2c9ab46b618";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:86:"Added new Project: BefunWrite + - Added AvalonEdit Control + - Added AvalonDockControl";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-30 10:39:48";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:137;a:8:{s:3:"sha";s:40:"7e3b9fda04cf7d00314b7f3b4ea396dec4efc239";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:41:"Made CodeGenOptions to a non-static class";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-30 09:35:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:138;a:8:{s:3:"sha";s:40:"841f9e05a6157a86ca9af61386b572e0506b3822";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Added SudoGen example";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-30 09:26:11";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:139;a:8:{s:3:"sha";s:40:"f4c118ed0348cab27f3dc2f478685035bf34b2b6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Added Maze-Solver to example";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-29 16:37:52";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:140;a:8:{s:3:"sha";s:40:"8b4f82be1e8583ba279ca51d69543c757eb51376";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Added pretty formatted ClassDiagram";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-28 23:33:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:141;a:8:{s:3:"sha";s:40:"fd1de7d27652d06d0540f0a85c307d7b91148a1d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:41:"Added CodeGen to (4x)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-28 22:57:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:142;a:8:{s:3:"sha";s:40:"529057e60c27e7d03001abe1466c61b69efe90ab";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Added Codegen to ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-28 18:36:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:143;a:8:{s:3:"sha";s:40:"b8ac48f4554388ce4961a0715fa481a8a318b182";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:77:"Added Class for Statement_Switch / More Tests / Fixed Bug in GOTO_Lbl Finding";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-28 12:16:10";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:144;a:8:{s:3:"sha";s:40:"ca01b1f683385f361d3ecf8d3727532fcf5b1889";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"Added Codegen to Base-4 Random";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-27 18:50:52";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:145;a:8:{s:3:"sha";s:40:"50ccab5db8c239b76efa3a59d444b4d5a5649aa9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:38:"Implemented Augmented Assignments (x8)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-27 17:41:07";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:146;a:8:{s:3:"sha";s:40:"65d7205b0ced7a5b39ad3bcaadf7ecc829be1979";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:157:"Added more LanguageFeatures (for now only to grammar) + - switch + - Post/Prefix Expressions + - Base-4 Random + - Augmented Assignments (+= , -= , %= , ...)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-27 16:58:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:147;a:8:{s:3:"sha";s:40:"5c5bafe3ff58c85ca9802f112c346f13891a0322";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:75:"Performance ... BAAM +-> Hashing Tags in Codepiece -> >> 7x Codegen speed <<";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-27 11:40:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:148;a:8:{s:3:"sha";s:40:"a46aa64816af785a530471f145139f616e962172";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:60:"Finalized BefungExec + - Reverted Demoprog + - Fixed Menu->Run";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-26 19:48:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:149;a:8:{s:3:"sha";s:40:"fcf5f650bc5fbc12b20948f5b070559f10ccbcd4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:61:">>Massive<< Performance Boost in BefungExec ( 8FPS -> 87FPS )";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-26 17:33:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:150;a:8:{s:3:"sha";s:40:"021f1af93507651c8d402859064ff2f0500dd3f5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Fixed Pause-Unpause AV";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-26 15:50:41";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:151;a:8:{s:3:"sha";s:40:"ec4aa4db696fe80a0f0e2a8d7fb003c21e1dd842";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:70:"Added a load of features to BefungExec (Control via WinForms Controls)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-26 15:31:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:152;a:8:{s:3:"sha";s:40:"35628fee8f78c582949d34efc85633f74a908098";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:51:"Ported BefungExec to a GLControl-based WinForms App";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-26 12:23:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:153;a:8:{s:3:"sha";s:40:"90779a5ffd0f5750a03068c9df914a2b5d0aef9b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Reverted a few temporary settings";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-21 13:25:11";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:154;a:8:{s:3:"sha";s:40:"deda399ee99cdb66b71df2105f446e139effe8ba";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:59:"ლ,ᔑ•ﺪ͟͠•ᔐ.ლ IT'S HAPENNING - !! MAZE_GEN !!";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-21 13:12:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:155;a:8:{s:3:"sha";s:40:"f4c52c254a08aeab4bdb8a6a4bdbc18f89596aa3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:116:"Multiple small things: +Fixed DisplaySize=0 +Using Optimized CharLiteralOut-Code +Added Tests for For-Loop (and others)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-21 10:51:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:156;a:8:{s:3:"sha";s:40:"b1ae1f83ff41dc85ac36b58ba165a3c084d5dcca";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:49:"Added Codegen to ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-21 10:29:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:157;a:8:{s:3:"sha";s:40:"105df3dfda9f6a559625e305ee0d68494c473f3a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:37:"Added Codegen to ModuloRangeLimiter()";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-21 09:10:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:158;a:8:{s:3:"sha";s:40:"4585bd20714543516930737fcd061467378c8fd8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:46:"Added CodeGen for Display (to the Prog Header)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-20 17:07:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:159;a:8:{s:3:"sha";s:40:"4fc23e09bedc53ac69bb129241d0b294210ab550";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:64:"Cleaned up Codegen for - Added possibility for Display";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-20 15:05:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:160;a:8:{s:3:"sha";s:40:"a02d81c3324900fd8f4e04b3d166a41f80deb90c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Added Constants";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-20 12:44:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:161;a:8:{s:3:"sha";s:40:"2171d02b320b87981ba2b676a90dcd5c99915f8f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Added Global Variables";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-20 12:04:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:162;a:8:{s:3:"sha";s:40:"59f23dfc2c5574a6c5c9cfcd396f9610892b9ae1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Added For-Loop";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-20 11:33:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:163;a:8:{s:3:"sha";s:40:"c1ab259d11b1fd9379a0e9ca3c58be402cbf52d7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:79:"Implemented new Grammar Features into GrammarTableMap +//TODO Implement Features";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-19 18:46:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:164;a:8:{s:3:"sha";s:40:"d16a1dcd111ea6747e1af66a7641bd6d115e91b7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:69:"Updated Plain-Grammar-File (Display, Underscore_Identifier, For-Loop)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-19 14:18:21";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:165;a:8:{s:3:"sha";s:40:"931b9d35a20038c5ad35db1dbdde3bd2e3a2895c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:54:"Added CodeGen to and ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-19 10:39:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:166;a:8:{s:3:"sha";s:40:"fffa5a50d91b31e9b05365244d13a4cbb6cb878e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"Added ArrayHandling in Return Values";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-19 10:18:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:167;a:8:{s:3:"sha";s:40:"d455d29d933cfe94a586e81458a819de932c1e8e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"Bugfixes - here and there and everywhere";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-19 09:25:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:168;a:8:{s:3:"sha";s:40:"4b5f21a60fc5eea51c51e8f90251195bb3f4b4ce";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Added and organized UnitTests";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-19 08:11:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:169;a:8:{s:3:"sha";s:40:"daf1636ed3514bce0c0ec6ec0b5288dde3705880";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:56:"Fixed many Bugs related to MethodCalls ( like ... many )";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-18 14:52:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:170;a:8:{s:3:"sha";s:40:"7d9388935ba4bcf93caf9e09f92b7ee768698376";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:48:"Fixed MethodCall - CornerCases in ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-18 13:40:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:171;a:8:{s:3:"sha";s:40:"4378c5775cc948488f9c989d8c4049ff838d011a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:103:"ᕙ༼ຈل͜ຈ༽ᕗ Method Calls are working - The Lanes are under heavy load ᕙ༼ຈل͜ຈ༽ᕗ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-18 12:33:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:172;a:8:{s:3:"sha";s:40:"8c7c18541d073f6c59806bb11e00aab2c0142261";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"-.- Missed a "few" files in the last commit";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-17 20:24:29";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:173;a:8:{s:3:"sha";s:40:"dedf337936e2ef6b657b35e9606826f9cb99f422";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:303:"Many things: +Added better Codegen for Default Array Initializer +Added DefaultValues for TempField nad TempResultField +Added Codegen Button to BGStudio +Added ArrayTooSmall Test +Fixed visual Things on BGStudio Form +Fixed Initial LeftLane Entry Point (was one off) +Updated exapmle_00 (Commented goto's out)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-17 20:23:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:174;a:8:{s:3:"sha";s:40:"19ceceeb96d2fffc5cf7c4b301eff1ed89c92ddc";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:92:"Removed unused Path from Body -> (and Added TempField for Results)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-17 15:13:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:175;a:8:{s:3:"sha";s:40:"80442895654a6fcd5e767c7dab604f80d7081738";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:47:"Added Space for Temp-Buffering of Result-Values";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-17 14:35:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:176;a:8:{s:3:"sha";s:40:"15c116c7924d1da9d96fd5e6c040d064e384baaf";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"Added CodeGen for Lanes to ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-17 13:32:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:177;a:8:{s:3:"sha";s:40:"cef8b3ad379ec013c53f85b3fe5373e0aad8d559";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:51:"Cleaned up Exceptions --> One File To Rule Them All";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-17 09:57:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:178;a:8:{s:3:"sha";s:40:"b63265e8e8435458a4c0496d195ab063467d540c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:72:"Added Test if all Paths lead to a or ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-17 08:31:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:179;a:8:{s:3:"sha";s:40:"b2616d0bbcacd8ef41ea2f7f7f843dd1e9241a29";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:136:"Force CodeTags & MC-Tags: +Forces BefungeCommandTags to be of Type CodeTag +Added Horizontal MC-Tag Extension to ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-16 17:12:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:180;a:8:{s:3:"sha";s:40:"b41a9c2ed96f279ac1371908eee86d6cb84a50b3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Added Test for NumberCodeGeneration";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-14 21:53:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:181;a:8:{s:3:"sha";s:40:"2a7d02782446cbb1a7cd5ff21d7b50e43d5be666";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Added Automatic Testing to BefunGenTest";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-14 21:17:12";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:182;a:8:{s:3:"sha";s:40:"b76111a24ce184913c2438d12d659db2ab8deb3f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:37:"Fixed Bug in ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-14 21:16:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:183;a:8:{s:3:"sha";s:40:"add26873cd1e8ba94eebe59bb67884648d3280c8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:62:"Drastically improved efficiency of NumberCodeFactory_Stringify";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-14 18:13:29";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:184;a:8:{s:3:"sha";s:40:"b76aa3526c6fe41eabbe7068ecced9157b7389eb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Added missing files to index";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-14 14:32:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:185;a:8:{s:3:"sha";s:40:"162c011cf649d89048ee247019386cd4d548cc11";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:148:"Redone NumberCodes: +Added NumberCodeFactory_Boolean +Added NumberCodeFactory_Stringify +Fixed NumberCodeFactory_Stringmode +Redone NumberCode Benchmark";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-14 14:26:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:186;a:8:{s:3:"sha";s:40:"a4df9ed130beb0615fdf10e0ae9f49a5e0a2bef5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:134:"Started Code for MethodCalls : +Added unique CodePointAddress and MethodAdress +Added Code for ENtry Exit Poits in StatementListElements";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-13 20:41:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:187;a:8:{s:3:"sha";s:40:"b78c09f304c3fd34f2626c39eac10307a3826de9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:52:"Started tagging & Added Tags to CodePiece.toString()";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-13 15:06:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:188;a:8:{s:3:"sha";s:40:"e6c6f7136008e6f2d35a3c5f5829235de7db7a9d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:69:"Added Codegen to (for now only for testing - nothing real)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-13 14:23:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:189;a:8:{s:3:"sha";s:40:"1305113e565bfef020ea60c1640d1b07b43e7c16";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Added more planning comments";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-13 12:36:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:190;a:8:{s:3:"sha";s:40:"a729dbc86ebdc3ff7056d0aabc35bc15fe17af1c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:26:"Cleaned up UnitTestProject";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-13 11:39:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:191;a:8:{s:3:"sha";s:40:"aeb2366a311e4ccd7a6b4a98db0855a47483d677";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:60:"Added Codegen to for Int_Array and Char_Array";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-13 11:31:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:192;a:8:{s:3:"sha";s:40:"6527dd3a61799d153a8b8f1f897bb96e60755a24";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:32:"[BefungExec] Added ASCII Display";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-12 21:53:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:193;a:8:{s:3:"sha";s:40:"c97f7de628bbaf3604e8ca48a19a218f7267aaed";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Finished for Arrays";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-12 21:49:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:194;a:8:{s:3:"sha";s:40:"a099dd857e43feadff31e3ac5d4f3aee844f9b80";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:58:"[BefungExec] Recognize Fileparameter from Windows Explorer";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-12 18:12:04";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:195;a:8:{s:3:"sha";s:40:"a223d9264f3bb86fcf669780195dea13b4b06242";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:140:"Added special Array Treatment: +GenerateCode for with Arrays +GenerateCode for with Arrays (unfinished)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-12 14:41:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:196;a:8:{s:3:"sha";s:40:"249fdbb1e3d2d77c6635bebcaeab9adf55f875a7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:11:"Fixed UTF-8";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-11 17:01:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:197;a:8:{s:3:"sha";s:40:"cbd030e7ad124c5d418e5dc5bece3e6c426bfe71";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:61:"Using StatementList where possible +Adding (debug) union-BType";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-11 16:44:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:198;a:8:{s:3:"sha";s:40:"699c295fdb48dc6a15f8dd6602acc4fb06b95243";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:45:"Added MethodCallExtraction to more Constructs";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-11 14:23:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:199;a:8:{s:3:"sha";s:40:"280e84fd6712a277af6808a39678defd7afcd2f2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:38:"Simple MethodCallExtraction is Working";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-11 13:58:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:200;a:8:{s:3:"sha";s:40:"e6bf42f218ec9307fa5304aeddd85dca7265ad87";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"[BefungExec] Fixed AV on char/int input";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-04 11:48:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:201;a:8:{s:3:"sha";s:40:"92b21ff83481d8d4e36c7bdf90b18348abd97133";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:32:"Added CodeGen for ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-03 17:33:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:202;a:8:{s:3:"sha";s:40:"5e78255e2e36abb9889400ae2f4c393c63b21e73";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Drastically simplifier ExtendedBoolCast";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-03 16:54:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:203;a:8:{s:3:"sha";s:40:"51a2b9ac95a84e5b80c539fa09340d17bd2359da";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:41:"Fixed StatementList with empty statements";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-03 16:14:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:204;a:8:{s:3:"sha";s:40:"6907e0b44172a86b143a04d6bd42005828c6de0a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:85:"Redid Codegen for (now more efficient - better maintenance)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-03 15:55:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:205;a:8:{s:3:"sha";s:40:"56a9fa5fde961a4f016d934a5b59bf3999c98e6c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Added Option to ExtendedBoolCasting";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-03 13:44:21";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:206;a:8:{s:3:"sha";s:40:"5e70895610e1783889a7dc92f91836f6095a46bb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:56:"Added NumberRep.Best (Always choose best Representation)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-03 13:15:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:207;a:8:{s:3:"sha";s:40:"ae03e8fcaa8af3ce8f102fafa81197b9448916b9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:80:"[BefungExec] Added better SyntaxHighlighting (Black-Font when breakpoint/cursor)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-03 11:07:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:208;a:8:{s:3:"sha";s:40:"2a3c173704daf944f603adf039d916ae0ebc2a60";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:70:"[BefungExec] Fixed Selection and Breakpoints not offsetted when zoomed";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-03 10:45:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:209;a:8:{s:3:"sha";s:40:"75854cd2bcc8972ac37040474b08072eaf17c6bf";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:97:"Added ELSIF Syntax to grammar (and while,repeat etc Now wnat a StmtList instead of a single Stmt)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-02 23:32:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:210;a:8:{s:3:"sha";s:40:"e2420040967659002f7524d56b36fe7292714585";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Added Control Character (\r \n etc etc)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-02 20:54:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:211;a:8:{s:3:"sha";s:40:"2efd88cd706c47e4ea4b99b58fbe72d3195364df";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"Added CodeGenAdded CodeGen to ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-02 20:00:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:212;a:8:{s:3:"sha";s:40:"cfa548784e960ccf211558d993d2fb204e092ea1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Added Clear all Breakpoints command";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-02 15:13:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:213;a:8:{s:3:"sha";s:40:"70fc86c6a8dc56e7d0f1a442fa425b068bdda342";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:37:"Added CodeGen to ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-02 15:13:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:214;a:8:{s:3:"sha";s:40:"e0d852ace9cbc339a2ed234dee9f9094709d5e56";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Fixed ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-02 15:13:12";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:215;a:8:{s:3:"sha";s:40:"05daf095644c3d03c30039b0860901ed236eec6c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:119:"Overhaul BefungExec + - More / better Ouput + - More CMD Params + - Debugmode + - NOP - Skipping + - Bug Fixing + - Resetting";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-01 18:17:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:216;a:8:{s:3:"sha";s:40:"e46f1edad47b53c8063ce04af3a932ff02d0ba4d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Updated Raster";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-01 15:14:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:217;a:8:{s:3:"sha";s:40:"c638c71d46ffb10a20f282c240b729a1d6c64de7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"Added Codegen to ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-01 15:12:34";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:218;a:8:{s:3:"sha";s:40:"639ba5ac27a6d7aea696dd27eaf6732ecdd58cd3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:70:"Updated BefungExec (Hertz-Display, Syntax-Highlighting, Parameter ...)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-01 12:38:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:219;a:8:{s:3:"sha";s:40:"f71c9fe9c6ec78f9507166ee62b8b7620ed103eb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:91:"Updated BefungExec Raster +Fixed Compare-Expressions +Added Codegen ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-28 20:22:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:220;a:8:{s:3:"sha";s:40:"a9bac077de67412dc2c1ba7cd03c59789c664bf6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:78:"Codegen for and tested and working";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 20:43:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:221;a:8:{s:3:"sha";s:40:"0232dd20984b41d716751aa2a2e8699c8723ca38";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"Fixes and Changes ... here and there";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 14:13:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:222;a:8:{s:3:"sha";s:40:"619dfb12e4094388a2cbfcdc43c5555cba42f0bc";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:76:"Improved Array Assignment Performance, Fixed Inc/Dec leaving stack non-empty";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 12:58:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:223;a:8:{s:3:"sha";s:40:"fb7811f2cc49a9997d97ab201aa759b3ba417dd7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:52:"Added Codegen to and ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 12:14:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:224;a:8:{s:3:"sha";s:40:"d9d268c4a11b71db05ca77f403a85a6c0f34be04";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Added Codegen to ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 12:02:10";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:225;a:8:{s:3:"sha";s:40:"882c4ff464c13c41dc33446c00a35d668c66f708";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:83:"Added Codegen to and ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 10:59:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:226;a:8:{s:3:"sha";s:40:"8c49ffd80da9f01b8d51455169d5ea159666182b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Added Codegen to ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 10:46:54";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:227;a:8:{s:3:"sha";s:40:"e9898ba41d5a01ba0297e96ff8d01d1e57d41cb2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:53:"Added Codegen to and ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 09:26:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:228;a:8:{s:3:"sha";s:40:"0f303d99af439b74fee654b2b47726ccb356241e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:32:"Added Codegen to ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 09:17:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:229;a:8:{s:3:"sha";s:40:"86169db8e40584e3e6169636655e441072b197b5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"Added reverse Codegen to all Expressions";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 09:02:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:230;a:8:{s:3:"sha";s:40:"9b6d903a08df0e8998afa3f9e7481597b6d1971b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:49:"Added Codegen to ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 07:41:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:231;a:8:{s:3:"sha";s:40:"9c4adf93dc82ddf6ad93f58b3eee3ee3d218df47";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:56:"Changed getting of VarDeclPos to Field of VarDeclaration";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-26 17:20:11";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:232;a:8:{s:3:"sha";s:40:"36464b4b5302f2c9a46f368fa58b23120ff9d2b0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:38:"Updated ToDos and added "future plans"";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-26 14:37:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:233;a:8:{s:3:"sha";s:40:"053c2982a4b014f92f2babb3471eaddc565a96a3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:148:"Finished CodeGen vor VarDeclaration +Added negative Dec-Literals to Grammar +Added Vertical Compression +Fixed numerous Bugs with Reverse PC-Generation";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-25 19:53:41";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:234;a:8:{s:3:"sha";s:40:"650935a0fd1f84d4c782d888bdb209837c970233";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"Added Codegen for ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-25 13:48:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:235;a:8:{s:3:"sha";s:40:"a2239274fb3e08227dffbcb96827e4373d4dcc2a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Added Codegen for ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-25 10:26:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:236;a:8:{s:3:"sha";s:40:"39cf3f82a6990c202ec37780bee3eb1c21c29973";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:46:"Added Optimization: ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-24 14:43:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:237;a:8:{s:3:"sha";s:40:"8f982de0d6842e75de34b8223a7d8f3fe96bc6c4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:51:"Added distinction between empty and unused commands";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-24 13:48:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:238;a:8:{s:3:"sha";s:40:"91c3b59c42e62f95dcac5991518931fbc8b1c555";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Added Codepiece-Tagging to BefunGen";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-24 10:04:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:239;a:8:{s:3:"sha";s:40:"fbd76816f04994386a7c56b94786f275e225bc31";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Fixed Decay && Added Zoom-Param";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-24 09:00:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:240;a:8:{s:3:"sha";s:40:"88dd360b925aa960547a0bcc999172a70bdef4de";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:51:"Added Execution of Generated prog to BefunGenStudio";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-23 17:14:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:241;a:8:{s:3:"sha";s:40:"b058c7257d4ff4dcee78c6d422a4086d76c54eb6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"Added Zooming and Breakpoints to BefungExec";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-23 16:42:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:242;a:8:{s:3:"sha";s:40:"4b34b52e800e55af60ba6ff17fc54db3ee042d2d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Commit Added Demo to BefungExec";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-23 00:07:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:243;a:8:{s:3:"sha";s:40:"b8b70cfe76e9a6759cae3db29d9c0823c351bae5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Added integer input to BefungExec";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-22 15:21:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:244;a:8:{s:3:"sha";s:40:"3498a7d04dfec2775eb8cc12fdb856aea4d08184";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Added Stack Display to BefungExec";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-22 14:12:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:245;a:8:{s:3:"sha";s:40:"f69946206758c834ca4e69e5243bf26d1b19c67d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:47:"Added Fast (and easy) Befunge Interpreter (OGL)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-21 23:22:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:246;a:8:{s:3:"sha";s:40:"c8a908f78daaf426c2b97ed87d9202203b8445f5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"More Todos ... this could be a jClipCorn-Commit ^^";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-20 18:29:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:247;a:8:{s:3:"sha";s:40:"9dff0d5d83c6b0c6224fd9892e4514288b54f60a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:76:"More Debugging, Updated Doku, Method rumpfs, Todos, and other useless things";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-20 17:39:34";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:248;a:8:{s:3:"sha";s:40:"35195a1a515810d568f99a0bfa0d452038f4464d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:163:"Added codegen to: (6x) +, +, +, +, +, +";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-19 21:15:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:249;a:8:{s:3:"sha";s:40:"2a7caa8b0ebe39a7056207189b0c12ea8050d3ff";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:106:"Codegen for +Better debug method for evaluating expressions";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-18 19:41:46";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:250;a:8:{s:3:"sha";s:40:"ae9300df86ed5bb1c01518e64b7a784eb47329a7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:107:"Added Literal-Gen Method: Factorization +Fixed Escape Bug on int == '"' +Fixed negatve int Literals in Base-9";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-17 18:15:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:251;a:8:{s:3:"sha";s:40:"015e2a2b348202b95012a78a4af64f23bb4f675d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Add more optimization";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-17 15:22:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:252;a:8:{s:3:"sha";s:40:"d00223ad9581126a0a7a9c119275202296f2f959";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:54:"Added CodeGen to (+ other Bugfixes)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-17 14:53:48";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:253;a:8:{s:3:"sha";s:40:"d60fce3b1680e7b4dbb6011f42b32f63d82074e3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:115:"Added a little bit of CodeGen to +Added CodeGenOptions Class +Added option to display Literals in Base-9";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-16 21:21:21";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:254;a:8:{s:3:"sha";s:40:"723ae02efa2f01292218afcde0da58960570223c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:26:"Added CodeGen to ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-16 16:54:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:255;a:8:{s:3:"sha";s:40:"22c56671a866bbac71bced87c51581ef1877a10c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"Added Label linking +Added Case-Insensitivity";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-16 14:53:11";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:256;a:8:{s:3:"sha";s:40:"ea0bddf5e15a155892a71bbc535d7a02c7796fc4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:82:"Added new Elements to AST (Call, Boolsche Op's ..) +Fixed Call-Statement in Grammar";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-16 14:29:29";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:257;a:8:{s:3:"sha";s:40:"c3cb50a02c6f2e9a7ca41c5c383743ea849c17ed";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Updated Grammar and Skeleton";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-13 17:13:02";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:258;a:8:{s:3:"sha";s:40:"335513724983959fa6d7cd1f0d91116f84e83638";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Removed ParseTreeCSharp Project";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-13 16:02:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:259;a:8:{s:3:"sha";s:40:"96360cf6c2d24161e24a32165546b72942cd9a18";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"Fixed Grammar not loading";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-12 19:41:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:260;a:8:{s:3:"sha";s:40:"f34a4e7a7b40f6c7c9c28546b8b5bfba1f6d097a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"Cleaning and Fixing ... too lazy too write commits";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-12 19:11:00";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:261;a:8:{s:3:"sha";s:40:"ba5d697c410a44bfd85bc40fcd533060e97b18e2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"Fixed code highlighting and so ...";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-12 18:33:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:262;a:8:{s:3:"sha";s:40:"ef4d01bb119896d509b69053f6bff9e90bfa1d39";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"Moved parsing to second thread";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-12 14:32:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:263;a:8:{s:3:"sha";s:40:"c3a9e10aa8731d6e9d4ff8cf7e461d30b69268ce";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:65:"Updated example to be more logical and to include unfinished work";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-11 21:25:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:264;a:8:{s:3:"sha";s:40:"b75a9face6af6a689debbc85d166a0e6b5abc14b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:71:"Finished Linking (Variables, Methods & Expressions) +More AST-Validating";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-11 19:58:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:265;a:8:{s:3:"sha";s:40:"4ec11059c555fb7351a6fe8ca24928f875f42612";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Started implementing ResultType linking";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-11 15:25:29";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:266;a:8:{s:3:"sha";s:40:"8af1146266031f8d6df84ecd9f2f677e757c310c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"Added position to Objects and Exceptions";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-11 13:09:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:267;a:8:{s:3:"sha";s:40:"716d97b33f327f79cfba6765f7c9a6bd7719e6a9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Improved and fixed various things";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-11 11:48:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:268;a:8:{s:3:"sha";s:40:"c3c2c78701b18dae2c5d38ead06aa6512b6ca389";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"Fixed AV when egt is not found";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-10 20:59:31";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:269;a:8:{s:3:"sha";s:40:"c4c69eabb2335d336061400abdc030121fc77810";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:26:"Added linking of Variables";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-10 20:00:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:270;a:8:{s:3:"sha";s:40:"2731ad161f05f5dc72b7f8d591fe611dc69c9bb9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:54:"Added Exceptions, BefungeCommandHelper, DemoParser etc";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-10 16:21:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:271;a:8:{s:3:"sha";s:40:"9674e40ed7bb0f6df1fc63a7eccb33739d7644f2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Updated Highlight file";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-10 14:14:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:272;a:8:{s:3:"sha";s:40:"5392594e48dfd6fadc41747da8d6fcbc7358b065";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:51:"Fixed Statements not showing correctly in AST-Debug";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-10 10:25:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:273;a:8:{s:3:"sha";s:40:"a8db2f27557339f98585ab5188889e83c6c2a86f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:84:"Git&Code Clean Up + +Moved Skeleton to extra File +Added egt to repo +Updated example_00";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-10 09:02:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:274;a:8:{s:3:"sha";s:40:"b45b2bb8e27aa18d20ef6a7605cdd202976b620e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:47:"Fixed CodePiece on neg. Values +Added Unit Tests";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-09 17:32:21";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:275;a:8:{s:3:"sha";s:40:"a64b8da883aa1265a2cb457e42ab64a6402a3b80";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Cleaned up code";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-09 16:47:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:276;a:8:{s:3:"sha";s:40:"f86746ce3b74b50709f0c815117a482135840b6b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:54:"Moved Parser to BefunGen-Project +Added CodePiece-Class";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-09 16:46:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:277;a:8:{s:3:"sha";s:40:"d6edfdc9700987fd3ef9ce0a0f1c5e767f8d0bd9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:48:"Added Output for AST (ASCII-Tree Representation)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-07 23:49:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:278;a:8:{s:3:"sha";s:40:"0a9b24b5cf1b952f15aa427ea1eb93b743e6f888";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:38:"Added better Components to ParseTreeC#";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-07 22:44:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:279;a:8:{s:3:"sha";s:40:"ada76d124f05f6977e0d6375155f55ead1537b17";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Finished AST +Fixed a few grammar errors";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-07 21:13:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:280;a:8:{s:3:"sha";s:40:"bc873ab9c6db2ecbd000d7ae5d2beedf8b996b2d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Added Literals to AST";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-07 13:24:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:281;a:8:{s:3:"sha";s:40:"5ba80d5030919baaeefa300ac5eb339dc69e9b9a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Added Skeleton for AST-Generation";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-07 11:47:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:282;a:8:{s:3:"sha";s:40:"dc23a3090c25fa8081f92837bfaa989321b8aca2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Added example program";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-07 11:47:02";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:283;a:8:{s:3:"sha";s:40:"ee234a9cc1895d7ead99c1053bad6313c3e6b4bb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:49:"Improved Tree-Display (Messages, Linenumbers etc)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-07 11:46:47";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:284;a:8:{s:3:"sha";s:40:"bd3e9d6325633366d0e6840c88e6bd9bf47bff6d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Updated Grammar";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-07 11:46:07";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:285;a:8:{s:3:"sha";s:40:"8042f76a0590efbe45a6163135ed9cdd68f933e3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:45:"Removed unnecessary Linevreaks from Grammatik";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-06 20:14:02";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:286;a:8:{s:3:"sha";s:40:"bac4ce4b9bab801db7ed31fffa7382b4dc62f1be";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:61:"Added Grammatic-Definition for Language "TextFunge" with GOLD";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-06 20:12:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:287;a:8:{s:3:"sha";s:40:"962198eff3fad64b72120871e83e22a88cf53132";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"Updated *.gitignore";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-06 20:12:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:288;a:8:{s:3:"sha";s:40:"cd30ae867b6c0e387e1b677352d2311d7684ee9f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Added Stub for BefunGen Prog";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-06 20:11:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:289;a:8:{s:3:"sha";s:40:"775edc5d97d1cf4c040c2a27d574c5312e997752";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:51:"Added GOLD-Parser Generator (for parsing TextFunge)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-06 20:11:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:290;a:8:{s:3:"sha";s:40:"c69bbb57cc3e2cca87eb96f218b5a153a6f40ed9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:51:"Added Tree-Display Project for ParserGenerator Gold";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-06 20:11:04";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:291;a:8:{s:3:"sha";s:40:"35ab135903b6bb4f0fd800d3711e6980bb6f35b9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"Updated *.gitignore";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-06 20:09:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:292;a:8:{s:3:"sha";s:40:"b9f77068ba425216e7533fb48533c03fb0f386d2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Updated Readme";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-06 20:01:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:293;a:8:{s:3:"sha";s:40:"fe43883e48c827a6cd4b6a9b0308b5c68a859b06";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Initial commit";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-06 19:54:47";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:294;a:8:{s:3:"sha";s:40:"b05dc03b2d2899b8ad81cf64fd1eb11ed0c8c316";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Updated gitignore";s:10:"repository";a:13:{s:2:"id";i:14202146;s:4:"name";s:9:"ColorGame";s:9:"full_name";s:19:"Mikescher/ColorGame";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/ColorGame";s:8:"language";s:4:"Java";s:8:"creation";r:64;s:4:"size";i:3044;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/ColorGame/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-07 19:55:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:295;a:8:{s:3:"sha";s:40:"26e64cd663fee40fb9c571039f37580b8625e583";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:45:"Added Fancy Stuff (Animations, Logo, Effects)";s:10:"repository";a:13:{s:2:"id";i:14202146;s:4:"name";s:9:"ColorGame";s:9:"full_name";s:19:"Mikescher/ColorGame";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/ColorGame";s:8:"language";s:4:"Java";s:8:"creation";r:64;s:4:"size";i:3044;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/ColorGame/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-07 19:51:34";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:296;a:8:{s:3:"sha";s:40:"3c3a5af6c7ce91c2506dce6e5119877688eb3ced";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:23:"Aufgabe 2) Wechselspiel";s:10:"repository";a:13:{s:2:"id";i:14202146;s:4:"name";s:9:"ColorGame";s:9:"full_name";s:19:"Mikescher/ColorGame";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/ColorGame";s:8:"language";s:4:"Java";s:8:"creation";r:64;s:4:"size";i:3044;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/ColorGame/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-07 16:16:04";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:297;a:8:{s:3:"sha";s:40:"f8a24e8d1757408b50168d5fe49ebb81ecbf6138";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Aufgabe 1) Farbenspiel";s:10:"repository";a:13:{s:2:"id";i:14202146;s:4:"name";s:9:"ColorGame";s:9:"full_name";s:19:"Mikescher/ColorGame";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/ColorGame";s:8:"language";s:4:"Java";s:8:"creation";r:64;s:4:"size";i:3044;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/ColorGame/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-07 14:49:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:298;a:8:{s:3:"sha";s:40:"6035fc34ca6d95713d20a86ba7ded3a9c76fb088";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"Initial Commit - Slick2d";s:10:"repository";a:13:{s:2:"id";i:14202146;s:4:"name";s:9:"ColorGame";s:9:"full_name";s:19:"Mikescher/ColorGame";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/ColorGame";s:8:"language";s:4:"Java";s:8:"creation";r:64;s:4:"size";i:3044;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/ColorGame/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-07 11:58:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:299;a:8:{s:3:"sha";s:40:"a6e2bc371b7bb8a20e89d53a79eeb082cdcb5529";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Initial commit";s:10:"repository";a:13:{s:2:"id";i:14202146;s:4:"name";s:9:"ColorGame";s:9:"full_name";s:19:"Mikescher/ColorGame";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/ColorGame";s:8:"language";s:4:"Java";s:8:"creation";r:64;s:4:"size";i:3044;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/ColorGame/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-07 11:37:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:300;a:8:{s:3:"sha";s:40:"21901611350f89391ec8b56b004203aa9b8f99ea";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"Removed unused References";s:10:"repository";a:13:{s:2:"id";i:20131600;s:4:"name";s:8:"DirtyPGP";s:9:"full_name";s:18:"Mikescher/DirtyPGP";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/DirtyPGP";s:8:"language";s:2:"C#";s:8:"creation";r:81;s:4:"size";i:160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/DirtyPGP/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-25 19:23:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:301;a:8:{s:3:"sha";s:40:"6f9577c067d1e33c4539c9779554e52dd5a42885";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Added En/De-crypt PGP";s:10:"repository";a:13:{s:2:"id";i:20131600;s:4:"name";s:8:"DirtyPGP";s:9:"full_name";s:18:"Mikescher/DirtyPGP";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/DirtyPGP";s:8:"language";s:2:"C#";s:8:"creation";r:81;s:4:"size";i:160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/DirtyPGP/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-24 20:36:48";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:302;a:8:{s:3:"sha";s:40:"7b124a7a3f1d7eb9ab83f8ff507fdfcf38b3d84b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Added Decrypt_Tab";s:10:"repository";a:13:{s:2:"id";i:20131600;s:4:"name";s:8:"DirtyPGP";s:9:"full_name";s:18:"Mikescher/DirtyPGP";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/DirtyPGP";s:8:"language";s:2:"C#";s:8:"creation";r:81;s:4:"size";i:160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/DirtyPGP/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-24 18:14:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:303;a:8:{s:3:"sha";s:40:"12ffba37e0a0de9086b844c2fb439a0fbd51ab3c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Added Encrypt_Tab";s:10:"repository";a:13:{s:2:"id";i:20131600;s:4:"name";s:8:"DirtyPGP";s:9:"full_name";s:18:"Mikescher/DirtyPGP";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/DirtyPGP";s:8:"language";s:2:"C#";s:8:"creation";r:81;s:4:"size";i:160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/DirtyPGP/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-24 18:14:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:304;a:8:{s:3:"sha";s:40:"8734316075c324f552f415d1752f0387ed768fec";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Added Generate_Tab";s:10:"repository";a:13:{s:2:"id";i:20131600;s:4:"name";s:8:"DirtyPGP";s:9:"full_name";s:18:"Mikescher/DirtyPGP";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/DirtyPGP";s:8:"language";s:2:"C#";s:8:"creation";r:81;s:4:"size";i:160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/DirtyPGP/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-24 16:12:04";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:305;a:8:{s:3:"sha";s:40:"db3ec75ec0f558c562a74ff8737677ce39e0c2a6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"Initial Structure Commit";s:10:"repository";a:13:{s:2:"id";i:20131600;s:4:"name";s:8:"DirtyPGP";s:9:"full_name";s:18:"Mikescher/DirtyPGP";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/DirtyPGP";s:8:"language";s:2:"C#";s:8:"creation";r:81;s:4:"size";i:160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/DirtyPGP/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-24 14:44:36";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:306;a:8:{s:3:"sha";s:40:"83fcce298fdde3168ffd2c9b79e448dc1cd91066";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Initial commit";s:10:"repository";a:13:{s:2:"id";i:20131600;s:4:"name";s:8:"DirtyPGP";s:9:"full_name";s:18:"Mikescher/DirtyPGP";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/DirtyPGP";s:8:"language";s:2:"C#";s:8:"creation";r:81;s:4:"size";i:160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/DirtyPGP/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-24 14:40:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:307;a:8:{s:3:"sha";s:40:"08f36bc5d76808d4884e147dc6f59dcd43c10ea2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:78:"Added more Meta-data + Fixed a few bugs + Improved Performance +(All in one ^^)";s:10:"repository";a:13:{s:2:"id";i:20598131;s:4:"name";s:16:"extendedGitGraph";s:9:"full_name";s:26:"Mikescher/extendedGitGraph";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/extendedGitGraph";s:8:"language";s:3:"PHP";s:8:"creation";r:98;s:4:"size";i:132;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/extendedGitGraph/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-08 13:30:46";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:308;a:8:{s:3:"sha";s:40:"465b0b767d2c58cb673976018947740d7c75f79c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:20:"Removed unsued files";s:10:"repository";a:13:{s:2:"id";i:20598131;s:4:"name";s:16:"extendedGitGraph";s:9:"full_name";s:26:"Mikescher/extendedGitGraph";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/extendedGitGraph";s:8:"language";s:3:"PHP";s:8:"creation";r:98;s:4:"size";i:132;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/extendedGitGraph/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-07 17:12:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:309;a:8:{s:3:"sha";s:40:"be2419219fed2fedcbdc71eed78d41a6bde685b9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:20:"Finished Styling etc";s:10:"repository";a:13:{s:2:"id";i:20598131;s:4:"name";s:16:"extendedGitGraph";s:9:"full_name";s:26:"Mikescher/extendedGitGraph";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/extendedGitGraph";s:8:"language";s:3:"PHP";s:8:"creation";r:98;s:4:"size";i:132;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/extendedGitGraph/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-07 17:09:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:310;a:8:{s:3:"sha";s:40:"a275445690a80a76514c4e7af5f68e7fe78fa6f8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"added working template";s:10:"repository";a:13:{s:2:"id";i:20598131;s:4:"name";s:16:"extendedGitGraph";s:9:"full_name";s:26:"Mikescher/extendedGitGraph";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/extendedGitGraph";s:8:"language";s:3:"PHP";s:8:"creation";r:98;s:4:"size";i:132;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/extendedGitGraph/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-07 15:37:47";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:311;a:8:{s:3:"sha";s:40:"500d56f6a54898ace3db8087563028fd6c4519c1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:46:"Added full parsing / data-export / data-import";s:10:"repository";a:13:{s:2:"id";i:20598131;s:4:"name";s:16:"extendedGitGraph";s:9:"full_name";s:26:"Mikescher/extendedGitGraph";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/extendedGitGraph";s:8:"language";s:3:"PHP";s:8:"creation";r:98;s:4:"size";i:132;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/extendedGitGraph/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-07 13:45:21";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:312;a:8:{s:3:"sha";s:40:"794fca0f6615625da1566e53fb029cad1aa60657";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"Initial work - enumerating commits";s:10:"repository";a:13:{s:2:"id";i:20598131;s:4:"name";s:16:"extendedGitGraph";s:9:"full_name";s:26:"Mikescher/extendedGitGraph";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/extendedGitGraph";s:8:"language";s:3:"PHP";s:8:"creation";r:98;s:4:"size";i:132;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/extendedGitGraph/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-06 22:21:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:313;a:8:{s:3:"sha";s:40:"3f2f935880a9d42831bffba1ec45e4146cb0a959";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Fixed Code Warnings -> more refactoring";s:10:"repository";a:13:{s:2:"id";i:19815692;s:4:"name";s:28:"Fowler-Refactoring-Chapter_1";s:9:"full_name";s:38:"Mikescher/Fowler-Refactoring-Chapter_1";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:57:"https://github.com/Mikescher/Fowler-Refactoring-Chapter_1";s:8:"language";s:4:"Java";s:8:"creation";r:115;s:4:"size";i:296;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:75:"https://api.github.com/repos/Mikescher/Fowler-Refactoring-Chapter_1/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-15 11:52:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:314;a:8:{s:3:"sha";s:40:"fa3b79df8d67daa1c04e83d61fa3ee89333938b1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Înfer Generic Type Arguments";s:10:"repository";a:13:{s:2:"id";i:19815692;s:4:"name";s:28:"Fowler-Refactoring-Chapter_1";s:9:"full_name";s:38:"Mikescher/Fowler-Refactoring-Chapter_1";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:57:"https://github.com/Mikescher/Fowler-Refactoring-Chapter_1";s:8:"language";s:4:"Java";s:8:"creation";r:115;s:4:"size";i:296;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:75:"https://api.github.com/repos/Mikescher/Fowler-Refactoring-Chapter_1/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-15 11:49:54";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:315;a:8:{s:3:"sha";s:40:"9cf49516d2b6f098d2c86c469c93aa543338fd06";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:73:"Moved Pricelogic to Price (NewReleasePrice, RegularPrice, ChildrensPrice)";s:10:"repository";a:13:{s:2:"id";i:19815692;s:4:"name";s:28:"Fowler-Refactoring-Chapter_1";s:9:"full_name";s:38:"Mikescher/Fowler-Refactoring-Chapter_1";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:57:"https://github.com/Mikescher/Fowler-Refactoring-Chapter_1";s:8:"language";s:4:"Java";s:8:"creation";r:115;s:4:"size";i:296;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:75:"https://api.github.com/repos/Mikescher/Fowler-Refactoring-Chapter_1/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-15 11:48:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:316;a:8:{s:3:"sha";s:40:"d23bb039315f0849fcc1b5ebbe47b7d310d245cd";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:52:"Moved double getCharge(int daysRented) to Movie.java";s:10:"repository";a:13:{s:2:"id";i:19815692;s:4:"name";s:28:"Fowler-Refactoring-Chapter_1";s:9:"full_name";s:38:"Mikescher/Fowler-Refactoring-Chapter_1";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:57:"https://github.com/Mikescher/Fowler-Refactoring-Chapter_1";s:8:"language";s:4:"Java";s:8:"creation";r:115;s:4:"size";i:296;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:75:"https://api.github.com/repos/Mikescher/Fowler-Refactoring-Chapter_1/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-15 11:27:11";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:317;a:8:{s:3:"sha";s:40:"02aa53b646c8803e8cb56cc2d2a41237f3924e1d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"Added htmlStatement class";s:10:"repository";a:13:{s:2:"id";i:19815692;s:4:"name";s:28:"Fowler-Refactoring-Chapter_1";s:9:"full_name";s:38:"Mikescher/Fowler-Refactoring-Chapter_1";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:57:"https://github.com/Mikescher/Fowler-Refactoring-Chapter_1";s:8:"language";s:4:"Java";s:8:"creation";r:115;s:4:"size";i:296;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:75:"https://api.github.com/repos/Mikescher/Fowler-Refactoring-Chapter_1/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-15 11:24:34";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:318;a:8:{s:3:"sha";s:40:"2f84cd26d0fab02ca80406ddda1ea95d9140c997";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Codef formatting (Ctrl+SHift+O/F/S)";s:10:"repository";a:13:{s:2:"id";i:19815692;s:4:"name";s:28:"Fowler-Refactoring-Chapter_1";s:9:"full_name";s:38:"Mikescher/Fowler-Refactoring-Chapter_1";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:57:"https://github.com/Mikescher/Fowler-Refactoring-Chapter_1";s:8:"language";s:4:"Java";s:8:"creation";r:115;s:4:"size";i:296;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:75:"https://api.github.com/repos/Mikescher/Fowler-Refactoring-Chapter_1/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-15 11:19:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:319;a:8:{s:3:"sha";s:40:"efeb24e9d963bb1dfee2f6b6253ef7893c6093f2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:75:"Moved temp Variables to getTotalCharge() and getTotalFrequentRenderPoints()";s:10:"repository";a:13:{s:2:"id";i:19815692;s:4:"name";s:28:"Fowler-Refactoring-Chapter_1";s:9:"full_name";s:38:"Mikescher/Fowler-Refactoring-Chapter_1";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:57:"https://github.com/Mikescher/Fowler-Refactoring-Chapter_1";s:8:"language";s:4:"Java";s:8:"creation";r:115;s:4:"size";i:296;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:75:"https://api.github.com/repos/Mikescher/Fowler-Refactoring-Chapter_1/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-15 11:18:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:320;a:8:{s:3:"sha";s:40:"c1d7da7d388e09da0fda45f96b6a1d0887b09515";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:46:"Moved "getFrequentRenterPoints" to Rental.java";s:10:"repository";a:13:{s:2:"id";i:19815692;s:4:"name";s:28:"Fowler-Refactoring-Chapter_1";s:9:"full_name";s:38:"Mikescher/Fowler-Refactoring-Chapter_1";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:57:"https://github.com/Mikescher/Fowler-Refactoring-Chapter_1";s:8:"language";s:4:"Java";s:8:"creation";r:115;s:4:"size";i:296;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:75:"https://api.github.com/repos/Mikescher/Fowler-Refactoring-Chapter_1/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-15 11:06:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:321;a:8:{s:3:"sha";s:40:"2329f055280ace9f48ad218dadcb4964969f92d3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Inline Variable "temp"";s:10:"repository";a:13:{s:2:"id";i:19815692;s:4:"name";s:28:"Fowler-Refactoring-Chapter_1";s:9:"full_name";s:38:"Mikescher/Fowler-Refactoring-Chapter_1";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:57:"https://github.com/Mikescher/Fowler-Refactoring-Chapter_1";s:8:"language";s:4:"Java";s:8:"creation";r:115;s:4:"size";i:296;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:75:"https://api.github.com/repos/Mikescher/Fowler-Refactoring-Chapter_1/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-15 11:03:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:322;a:8:{s:3:"sha";s:40:"0bb486ab8338f9152b513bc5339b345c915ad5ea";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"Removed amountFor Method";s:10:"repository";a:13:{s:2:"id";i:19815692;s:4:"name";s:28:"Fowler-Refactoring-Chapter_1";s:9:"full_name";s:38:"Mikescher/Fowler-Refactoring-Chapter_1";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:57:"https://github.com/Mikescher/Fowler-Refactoring-Chapter_1";s:8:"language";s:4:"Java";s:8:"creation";r:115;s:4:"size";i:296;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:75:"https://api.github.com/repos/Mikescher/Fowler-Refactoring-Chapter_1/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-15 11:02:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:323;a:8:{s:3:"sha";s:40:"d9526cdf6e59d8578d050c22231bfa709398fc7a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:38:"Moved "amountFor" from Movie to Rental";s:10:"repository";a:13:{s:2:"id";i:19815692;s:4:"name";s:28:"Fowler-Refactoring-Chapter_1";s:9:"full_name";s:38:"Mikescher/Fowler-Refactoring-Chapter_1";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:57:"https://github.com/Mikescher/Fowler-Refactoring-Chapter_1";s:8:"language";s:4:"Java";s:8:"creation";r:115;s:4:"size";i:296;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:75:"https://api.github.com/repos/Mikescher/Fowler-Refactoring-Chapter_1/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-15 11:00:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:324;a:8:{s:3:"sha";s:40:"93b8c9951f3c4535e0f7f07438b25af116e05b6d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:41:"Moved Code to seperate Method "amountFor"";s:10:"repository";a:13:{s:2:"id";i:19815692;s:4:"name";s:28:"Fowler-Refactoring-Chapter_1";s:9:"full_name";s:38:"Mikescher/Fowler-Refactoring-Chapter_1";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:57:"https://github.com/Mikescher/Fowler-Refactoring-Chapter_1";s:8:"language";s:4:"Java";s:8:"creation";r:115;s:4:"size";i:296;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:75:"https://api.github.com/repos/Mikescher/Fowler-Refactoring-Chapter_1/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-15 10:55:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:325;a:8:{s:3:"sha";s:40:"488566a641ec49348b7bde7f1fe16be7d2bc641d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"INITIAL (No Refactoring)";s:10:"repository";a:13:{s:2:"id";i:19815692;s:4:"name";s:28:"Fowler-Refactoring-Chapter_1";s:9:"full_name";s:38:"Mikescher/Fowler-Refactoring-Chapter_1";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:57:"https://github.com/Mikescher/Fowler-Refactoring-Chapter_1";s:8:"language";s:4:"Java";s:8:"creation";r:115;s:4:"size";i:296;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:75:"https://api.github.com/repos/Mikescher/Fowler-Refactoring-Chapter_1/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-15 10:46:10";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:326;a:8:{s:3:"sha";s:40:"6c5704a12e85f5d8f76e34162dec265bbae763f0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:60:"1.9.3 Bugfix: Fixed jCoverChooser reset when viewing Episode";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-04 20:56:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:327;a:8:{s:3:"sha";s:40:"4a6f6d7f9bb41b4391f6ce0a0fe054639a7c1cf5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:13:"1.9.2 RELEASE";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-13 19:06:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:328;a:8:{s:3:"sha";s:40:"c67ed12e0a643e4bf23a4dd94d9dce9e75369971";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:72:"1.9.2 Task: Reverted CharChooser to old behaviour of non-substance LnF's";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-08 15:04:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:329;a:8:{s:3:"sha";s:40:"ffe0fed3769b21baf69a1c28ee04ef033fbb4a29";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:57:"1.9.2 Feature: Added (PLAIN | JSON | XML) export function";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-07 19:08:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:330;a:8:{s:3:"sha";s:40:"40bc62e74aadf3a7e437eb317930ef37ace50e73";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:73:"1.9.2 Feature: Added One-Click metadata calculation to "AddEpisodesFrame"";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-07 10:27:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:331;a:8:{s:3:"sha";s:40:"d6e430f91888ad24d01b791a6dafa267a8f02c51";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Late night todo commit";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-29 21:09:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:332;a:8:{s:3:"sha";s:40:"5b303e50b0eeca82e15808563d955f41a43a811f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:65:"1.9.2 Task: Added a minimum scrollbar height on the windows L'n'F";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-05 23:36:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:333;a:8:{s:3:"sha";s:40:"ef671d5bb9cdfa492ed4f870057b683bc6bc5595";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:104:"1.9.2 Task: Improved Performance when throwing a massive amount of exceptions (collecting them together)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-01 21:08:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:334;a:8:{s:3:"sha";s:40:"c9ba1c1ffd432826917e607bd36e5f738a74fecb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:56:"1.9.2 Feature: Added ResetTags Option to ImportDialog(s)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-01 20:58:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:335;a:8:{s:3:"sha";s:40:"50cda8545e80d4d5c58d926ac46b12a39d3b2518";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:102:"1.9.2 Task: Changed IMDB-Parse Method to [jSoup-Library] + (source of a few bugs & better Maintenance)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-01 19:44:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:336;a:8:{s:3:"sha";s:40:"be815cddb8a4b50b03db7be1e05eef7b99d997a6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:67:"1.9.2 Task: Only allow CreateFolderStructure after successful tests";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-01 15:14:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:337;a:8:{s:3:"sha";s:40:"ab31955ff3573b42ad58dbaa4efd32ede090fdbf";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:52:"1.9.2 Bugfix: Fixed AV when selecting Theme "Autumn"";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-01 14:24:31";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:338;a:8:{s:3:"sha";s:40:"29708bec9953babedbfcb857429c600ec88a6b6e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:48:"1.9.2 Bugfix: Fixed List-UI with "Windows"-Theme";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-01 14:14:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:339;a:8:{s:3:"sha";s:40:"c70964ee29260021d9cae8464bc1aa8f6a5d94a4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:104:"1.9.2 Bugfix: Fixed ValidateDatabase->CheckFolderStructure for Folder with different Lowercase/Uppercase";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-01 12:35:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:340;a:8:{s:3:"sha";s:40:"b9b30be588828c2e15ae5f9434964658260377c7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:96:"1.9.2 Bugfix: Fixed Filename-creation for Elements ending with a dot (caused various other bugs)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-01 12:29:31";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:341;a:8:{s:3:"sha";s:40:"0a7ad9491bd9bf962638d542365323ad1d702056";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:75:"1.9.2 Bugfix: Wrong Movie-Filesize when having more than 2 Parts (+ TODO's)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-24 11:24:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:342;a:8:{s:3:"sha";s:40:"ec703d44ec1f12d8737764424ebd9261ee5316ff";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:55:"1.9.2 Task: Live update PreviewSeriesFrame (while open)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-18 14:55:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:343;a:8:{s:3:"sha";s:40:"92395e252eee20767deb7c504766696020468310";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:76:"1.9.2 Bugfix: ParseWatchDataFrame: Update Date even when no change in viewed";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-16 21:10:31";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:344;a:8:{s:3:"sha";s:40:"2e47c6353470bc83e58ea69d650e00576a4d4d1b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:42:"1.9.2 Beta Release (for internal use only)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-16 20:50:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:345;a:8:{s:3:"sha";s:40:"9770c7e691d4968a6fff83b9982e68c55274e76a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:58:"Fixed ParseWatchData not setting episodes to correct value";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-16 20:48:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:346;a:8:{s:3:"sha";s:40:"4992b0df622f26b706e7e69b103dc13769c0a3a7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:10:"Fixed typo";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-11 19:32:00";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:347;a:8:{s:3:"sha";s:40:"69af72979f7d4ee61f7a1bec1ba3f48916c97b2f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:71:"1.9.2 Feature: Added new Syntax to ParseWatchDataFrame (Episode ranges)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-10 21:18:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:348;a:8:{s:3:"sha";s:40:"64aec23dfd510325af8dcdafecd685feb9cff4c8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:66:"1.9.2 Feature: Added new Database Error: "INVALID_SERIESSTRUCTURE"";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-09 19:30:46";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:349;a:8:{s:3:"sha";s:40:"b3a2f8bc1614dfcf9f822a4487637021de49d47d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:49:"1.9.2 Feature: Added clickable Score to ClipTable";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-30 10:37:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:350;a:8:{s:3:"sha";s:40:"bca7dfca244995cd2726f97dee494f293abe3853";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:62:"1.9.2 Bugfix: Fixed TextEncoding when loading Filter from File";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-30 10:26:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:351;a:8:{s:3:"sha";s:40:"a11fe2443b49242eb6a04560663917c4d16bc3a7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:69:"1.9.2 Feature: Added 'pasteURL' && 'pasteImage' to EditCoverComponent";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-30 10:20:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:352;a:8:{s:3:"sha";s:40:"e5cf2f82b615ebe25050830b375b2888f74db41a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:80:"1.9.2 Feature: Only show SeriesOverlay when optin selected (do not modify files)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-29 11:45:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:353;a:8:{s:3:"sha";s:40:"3f6e8a9feb8cbcfd0cfb8f57e8c99954377245cc";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:144:"1.9.2 Feature: Added proper EditCoverControl + -> AddMovieFrame + -> AddSeasonFrame + -> AddSeriesFrame + -> EditMovieFrame + -> EditSeriesFrame";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-29 11:34:12";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:354;a:8:{s:3:"sha";s:40:"1ce05c581a985fb8145058143d3119b8db39af61";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"1.9.2 Bugfix: Fixed Zyklus-Click not working";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-29 08:59:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:355;a:8:{s:3:"sha";s:40:"22f425329e5fa7339e303907dfda8b9776994fa1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:62:"1.9.2 Bugfix: Fixed various Exceptions when MovieList is empty";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-28 14:10:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:356;a:8:{s:3:"sha";s:40:"d7b5c8a48347cbc3797c5358056681c97fbe5364";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:62:"1.9.2 Bugfix: Fixed Creating new Database (Schema was too old)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-28 14:06:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:357;a:8:{s:3:"sha";s:40:"a2ca3b97ed482ac807dec33dbf49b229c2f077d8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:55:"1.9.2 Bugfix: Fixed Exception when sorting by ViewState";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-28 13:43:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:358;a:8:{s:3:"sha";s:40:"103d3e931c59d30b34b2e9c0839793ffae5f4e04";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:67:"1.9.2 Task: Disabled Column Dragging in Table (caused weird things)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-28 13:37:41";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:359;a:8:{s:3:"sha";s:40:"82d08b01150e6896da9477a6d4f964c3d518316b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:72:"1.9.2 Bugfix: Fixed Exception in AddEpisodesFrame when ignoring Warnings";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-28 13:35:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:360;a:8:{s:3:"sha";s:40:"1d7ac5181d90fe8d4a762bcdd2be3f30d8aee36b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Added a few (2) Bugs in Todo-List";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-14 12:27:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:361;a:8:{s:3:"sha";s:40:"97eaba42f153b3f5ffa98131c22ab6e2e257b8bc";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:23:"C-C-C-Combo-TODO-Commit";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-16 17:11:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:362;a:8:{s:3:"sha";s:40:"a001c6bd6d325972e81b0c2472dea766cdec6db8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:7:"Tododos";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-11 22:07:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:363;a:8:{s:3:"sha";s:40:"eb7cb1421ac703a7f8a2a1a36a3ead77268efbef";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Added Bug-Report-Todos";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-09 21:42:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:364;a:8:{s:3:"sha";s:40:"6a89200014df6f9ddc12194249008be534fec0ee";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:62:"1.9.2 Bugfix: Fixed Column-Resizing when deleting whole Series";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 16:11:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:365;a:8:{s:3:"sha";s:40:"44ece9ae692edc3c9a663c84656e1813b1b90cd0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:77:"1.9.2 Bugfix: Fixed missing locale: "ExportHelper.dialogs.resetScore_caption"";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 15:47:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:366;a:8:{s:3:"sha";s:40:"06d08e5f74276590e1ec060bab572b7b9d674f24";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:65:"1.9.2 Bugfix: Fixed Format==null when Extension is not recognized";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 15:30:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:367;a:8:{s:3:"sha";s:40:"b1ea8c4c28b684be6d28bb4ff996ce2eb769f0f3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"1.9.2 Bugfix: Fixed Onlinescore can't be 10";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 15:13:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:368;a:8:{s:3:"sha";s:40:"738a77d8b9aa466923a9d31147d9ec94a6d6cb31";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"Feature ToDos and a TODO for a critical Bug";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-26 22:53:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:369;a:8:{s:3:"sha";s:40:"65ad1289c026447d3bd95c7be30830b241c53c9c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"More Todo's ... as always";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-18 21:34:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:370;a:8:{s:3:"sha";s:40:"dee60aa9389323194faedd97afe0af1158879c96";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:199:"1.9.2 Bugfixes +- Fixed OpenLastPlöayedSeries not really selecting last played Episode +- Fixed ImDB-Parsing not recognizing images +- Fixed CustomOnlineSCoreFilter interpreting No-Score as valid score";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-16 12:14:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:371;a:8:{s:3:"sha";s:40:"2ad61c3c6189d015a51d3e5da0b4dd5a993d66ea";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"Added critical ToDo";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-15 22:52:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:372;a:8:{s:3:"sha";s:40:"536a7aec3abcf2ae95b0f4fe73a475e0b922831c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"ToDo (Singular ...)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-06 19:57:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:373;a:8:{s:3:"sha";s:40:"d47215eddbf77bef28a4822610fe08b6795a2296";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"You know the deal ... more ToDo's";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-01 23:14:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:374;a:8:{s:3:"sha";s:40:"5991488fde8d2e7056a6d321792de15183b3153b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Updated Changelog";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-01-26 00:04:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:375;a:8:{s:3:"sha";s:40:"bcc978d05d3813a777bf9591544de0d608162a8a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:13:"1.9.1 RELEASE";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-01-25 23:57:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:376;a:8:{s:3:"sha";s:40:"de8de6bb198d888f4424eb5bb69845a947315c92";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:157:"1.9.1 Feature + Improved loadTime: + Added Cache for Substance-Look'n'Feels ( ~200ms ) + Removed unnecessary InvokeAndWait on busy Dispatcher ( ~3000ms )";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-01-25 23:12:36";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:377;a:8:{s:3:"sha";s:40:"34716f452116625ca9c63f648ed9e8f801b54b34";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:55:"1.9.1 Feature + Added Action: "Open Last played Series"";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-01-25 22:19:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:378;a:8:{s:3:"sha";s:40:"3b7aab12fdc63b71795d51937a4add78709005b3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:67:"1.9.1 Feature + Added progressive Viewed-Icon on PreviewSeriesFrame";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-01-25 21:42:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:379;a:8:{s:3:"sha";s:40:"281c1951cbd88a5d0df58ab8a67270032b82da86";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:520:"1.9.1 Feature & Bugfixes + Added Way to save Filter + Fixed FilterTree Bug when it wouldn't update + Fixed FilterTree Bug when it wouldn't collapse + Added OrganizeFilterDialog + Fixed Bug where no Errors are shwon when they happen before Mainframe creation + Fixed DisplayString of OnlinescoreFilter + Fixed CustomViewedFilter AV (was not using new Tribool viewed-state) + Fixed Bug where DIalog-FInish-Listener was called more than one time + => cause of many strange behaviours + Updated .gitignore for *.flst files";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-01-25 16:22:31";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:380;a:8:{s:3:"sha";s:40:"7b83f112f44643dcd682f639f19e1dc735eaecce";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:72:"1.9.1 Feature + Added Option to reset Score when Importing Movies/Series";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-01-24 20:36:31";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:381;a:8:{s:3:"sha";s:40:"9df04bc124d519551a702fad02d40d919f8d8ee8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:57:"1.9.1 Feature + Added new Statistics: "Viewed (Episodes)"";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-01-24 19:44:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:382;a:8:{s:3:"sha";s:40:"87250ddc69dea7caac50f146ff20066887623b2f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:176:"1.9.1 Feature + Added new DatabaseError: LastViewed is before 1.6.1900 (practically impossible) + Added "Fix Multiple DatabaseErrors At Once"-Feature (You can now multi select)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-01-24 19:43:47";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:383;a:8:{s:3:"sha";s:40:"fc94a4c9bfe46d00dee3d195a00c01dfd778d92a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:228:"1.9.1 Feature & Bugfixes + Added Display for WatchLater in "Viewed"-Column + Added OPtion to automatically update "WatchLater"-Tag + Added DatabaseError "IMPOSSIBLE_WATCHLATER" + Fixed Dispatch-Thread Error in CheckDatabaseFrame";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-01-21 20:49:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:384;a:8:{s:3:"sha";s:40:"0f699d60ee17df44d04a65bd4f47cfc0637c2a9a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:99:"1.9.1 Feature + Added better ClickArea for Zyklus-Clicking + Added Hover-Cursor for Zyklus-Clicking";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-01-20 20:12:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:385;a:8:{s:3:"sha";s:40:"60813ae9c7c5b0bd3bc4865fba383c38f62c439a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"ToDos because i have no time for actual coding ...";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-27 19:42:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:386;a:8:{s:3:"sha";s:40:"9cf3654e7aa1c70db93fd6e02e6c72833cde12b1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:42:"1.9.1 Beta Release (for internal use only)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-10 20:33:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:387;a:8:{s:3:"sha";s:40:"16090937bebcc978abe5b6fabf6d792ef585f2e0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:87:"1.9.1 Feature +Added parseWatchDataFrame + -> Parses Watched Series/Movies from plainText";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-10 20:28:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:388;a:8:{s:3:"sha";s:40:"d52309fe1728e253fb027aa67fe5668b2dd68219";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:486:"1.9.1 Big Feature (and Bugfixes) +Added CoverCropDialog(crop & edit covers) +Added ImageCropper to AddMovieFrame +Added ImageCropper to AddSasonFrame +Added ImageCropper to AddSeriesFrame +Added ImageCropper to EditMovieFrame +Added ImageCropper to EditSeriesFrame + +Fixed Bug when accessing a halfsize version of the standard cover +Fixed Wrong Border Dimensions around partial tranparent cover in FindCoverDialog +Fixed rendering Tags on actual DB-Cover when "RenderTagsOnCover" is set to true";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-27 13:50:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:389;a:8:{s:3:"sha";s:40:"eda3da9cd967e6727858c92762f15c8bb2922054";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:282:"1.9.1 Bugfixes +Fixed AV when removing the last Element in Table (that is also selected) +Fixed PreviewSeriesFrame VertScrollbar staying bottom when switching Season +Improved internal handling of readonly-prohibited operations +Fixed CoverChooser Border on partially transparent covers";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-26 11:14:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:390;a:8:{s:3:"sha";s:40:"8addc3e036d281400b5ae066f323ef541031c9ea";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"All hail my ToDo Commits";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-28 11:59:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:391;a:8:{s:3:"sha";s:40:"04ee5711fb417ed45eb1bfb5a56c6972836fcb25";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"And even more ToDos :D";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-15 20:26:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:392;a:8:{s:3:"sha";s:40:"fbf88c561255bf5e55520f52831c979daf236095";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:11:"Added ToDos";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-15 19:48:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:393;a:8:{s:3:"sha";s:40:"42335931c88ad7b321cbf7f101c4ea3f66967001";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:120:"1.9.1 Bugfixes +Fixed too late Backup deletion (1 day late) +Fixed Omniparer not recognizing Counter with variable lengths";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-25 18:20:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:394;a:8:{s:3:"sha";s:40:"00ba934d321e0a419a2342afb4dbd11299ffc703";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Updated Changelog";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-25 15:27:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:395;a:8:{s:3:"sha";s:40:"b8bc48e9b88128893d9146a757611994293a189e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:11:"1.9 RELEASE";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-25 15:18:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:396;a:8:{s:3:"sha";s:40:"adfe33ec35a219a00d8f1b88e93429272d50d310";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:105:"1.9 Features +Added Tag-Display to Cover on MainFrame +Added Big (blinking) Error Warning when Error occurs";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-25 14:16:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:397;a:8:{s:3:"sha";s:40:"11f671af62e4f1bd5317b2d8e291953ac22ac75a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:317:"1.9 Features +Added Icons for CustomFilter & BackupManager +Database shuts now correctly down onClose +Added Option for Quick (and dirty) closing +Finished BackupManager (You can restore from old Backups) +Added Info-Panel to Backupmanager (Shows Backup-Settings) +Fixed JClipCorn not correctly shutting down on Fatal Error";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-25 12:08:10";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:398;a:8:{s:3:"sha";s:40:"da0e3c86a97165a2cb8cd08aba6ee71329ad3e0b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:159:"1.9 Features +Added a functionality to a few Buttons in BackupsManagerFrame +Fixed unclosed Filehandle in CCProperties +Fixed unclosed Filehandle in BackupManager";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-24 13:03:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:399;a:8:{s:3:"sha";s:40:"f507c0da29e0e6263ed70d7cfbdb2354bedb5ba6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:126:"1.9 Features +Semi-Finished BackupManager (the visuas work, no Button-Functionality) +Fixed Auto-Delete Bug in new Backup-System";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-24 11:47:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:400;a:8:{s:3:"sha";s:40:"ed078f5cc486d9dc6edccfe5a487b23fe683ed4c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:89:"1.9 Features +Implemented new Backup Functionality +STarted BackupManagerFrame (unfinished)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-23 19:37:48";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:401;a:8:{s:3:"sha";s:40:"8885d0c7daba4846ffcc1ef958e81a503d9c4e94";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:111:"1.9 Features +Added More Info on FATAL-ERROR Message +Addedd initial check for Write-Permissions (-> FATAL ERROR)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-23 11:38:00";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:402;a:8:{s:3:"sha";s:40:"2dce002026cffd3f3e5b5f86b78b2eb43db3d69a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:123:"1.9 Bugfixes +Fixed Bug with wrong Filechooser-direction in EditSeriesFrame +Fixed Bug where you can close an ProgressMonitor";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-23 10:55:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:403;a:8:{s:3:"sha";s:40:"4f4fd0dd16ac39deb1a86ffbc77116c7325a0ebb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:153:"1.9 Bugfixes +Fixed Load-AV when Season has 0 Episodes +Fixed getCommonPathStart()-Bug when there is an empty series/ empty season / uninitialized episode";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-22 20:07:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:404;a:8:{s:3:"sha";s:40:"14e92ee68fe37f9c80497a613fa4a2d468204033";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:82:"1.9 Feature +Added additional integrity Check when finally closing AddEpisodesFrame";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-22 19:52:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:405;a:8:{s:3:"sha";s:40:"db6ac2aaf296f8df93b5a5aecf2ff12b923f1106";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:63:"1.9 Bugfix +Fixed Omniparser-Bug where the Lines are not trimmed";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-22 19:26:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:406;a:8:{s:3:"sha";s:40:"7573ec620300f09431bf736ec2703cbfb17dea59";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:109:"1.9 Features +Added "Play without changing Episode-State"-Feature +Added Debug-Feature to print TranslationTree";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-22 17:14:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:407;a:8:{s:3:"sha";s:40:"d8cb35ca818c5eb8632ca55aa9d93d433b5bb2c1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:124:"1.9 Tasks +Immproved Information-Output in CouldNotParseFSK Warning +Added USA:"approved" to AgeRatingParser +Updated ToDo List";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-22 13:21:10";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:408;a:8:{s:3:"sha";s:40:"7dcbbbe11ff15966d7fece7021d2c438c98be89a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:87:"1.9 Bugfixes +Fixed Problem when re-importing Movies with NON-ASCII Chars (Encoding ...)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-22 12:53:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:409;a:8:{s:3:"sha";s:40:"50d1a7439a4fd15d2c9380b2d1291b9a5387b7a5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:85:"1.9 Bugfixes +Fixed CompareDatabase Bug wehre the selection was not correct registered";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-21 14:23:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:410;a:8:{s:3:"sha";s:40:"1ff06b49994b052ef378768cbd973a86c424cc6b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:100:"1.9 Features +Finished Custom Filter +Added Import / Export to Filter +Fixed Bug in Genre / Year Filter";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-21 13:34:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:411;a:8:{s:3:"sha";s:40:"bcb9c4878661dedf0803b3d3cb73f35f34be799c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:72:"1.9 Features +Started Exporting / Importing of Custom Filter (unfinished)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-20 18:57:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:412;a:8:{s:3:"sha";s:40:"09bf88b8563a43508c210bbab5bdd64d40b0d141";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:133:"1.9 Features +Added Custom-Table Filter +Added CustomFilter for every TableField +Added AND / OR / NAND / NOR Operators for CustomFilter";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-20 16:26:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:413;a:8:{s:3:"sha";s:40:"2592d684b497aeb30896d1630f5f7dd326a54048";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:81:"1.9 Features +Finished Omniparser +Added VerticalScrollBarSynchronizer Helper Class";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-19 12:47:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:414;a:8:{s:3:"sha";s:40:"766443f64f626bdef9bb2b07123f0781f482713d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:164:"1.9 Features +Added Big OmniParser Feature +Reorganized Util-Classses (Changes in the imports in many classes [!] ) +Fixed Null-Pointer when displaying an empty series";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-16 20:42:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:415;a:8:{s:3:"sha";s:40:"fe5b8be3a6493cce42db746297aa82a3c54506e9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"Added even more 1.9 ToDos";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-26 19:19:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:416;a:8:{s:3:"sha";s:40:"275f4e5ffa5eb85278ed32e2423f71f076ec0132";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"Imma gonna do alot of commits today (4. Try)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-26 07:59:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:417;a:8:{s:3:"sha";s:40:"28bd091706f070f5c9b59bbdb13bc4b576507df7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:23:"Third Try, wish me luck";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-26 07:58:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:418;a:8:{s:3:"sha";s:40:"a4b4c8047f07b25c609f88165b9bfff5df4cc630";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"Second try 4 README";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-26 07:54:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:419;a:8:{s:3:"sha";s:40:"5a8fcc53aebc82c5e9d6fc57271579e249947ec4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:""Improved" Readme";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-26 07:50:41";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:420;a:8:{s:3:"sha";s:40:"478c87ca4254a948c0cb4159b9b8a670ff98ff77";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:57:"Addde more 1.9 ToDos +(I should start do REAL programming)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-26 07:42:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:421;a:8:{s:3:"sha";s:40:"c27c259d74b74c28842f92a29c9cc9fae9198ca9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"Added ToDos (Perhaps 1.9)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-18 13:22:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:422;a:8:{s:3:"sha";s:40:"5a17f1517ef043934ba2d9470d21ca6b5f05841a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:13:"1.8.3 RELEASE";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-07 12:10:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:423;a:8:{s:3:"sha";s:40:"d4da5690109e4369690ea25ad591757f3a9d26d0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:273:"1.8.3 Bugfixes and Features +Added Error Handling for broken Coverfiles +Added Error Handling in Large MD5 Calculator +Added Possibility to fix single Databaseerror +Added Information Monitor when backuping +Fixed wrong Seasonnumber for unsorted Seasons in CreateFolderStructure";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-04 17:12:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:424;a:8:{s:3:"sha";s:40:"78dafea58691e8a3af9fd3ceba1ba28c513535a9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:56:"1.8.3 Bugfixes +Hopefully finally fixed CCDateSpinner -.-";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-30 15:19:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:425;a:8:{s:3:"sha";s:40:"00642fe13ec884afd0ff80676ae528106def1f3f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:68:"1.8.3 Features +Added possibility for public (or private) beta builds";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-22 21:37:52";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:426;a:8:{s:3:"sha";s:40:"915cb7df2ec91f9faa2c83fed07cef2a6e2921b0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:170:"1.8.3 Bugfixes +Fixed Overriding in CCDateSpinner +Added Big "Continue Watching" Button to PreviewSeriesFRame +CCDate is now an immutable Object (possible root for new bugs)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-22 16:57:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:427;a:8:{s:3:"sha";s:40:"e54ab3ed3634fb9bd669bed7b78422d86aebdf2d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:10:"Added ToDo";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-21 15:47:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:428;a:8:{s:3:"sha";s:40:"39838d7af31b6cd24ca5b8ac0452429b408c865b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:38:"Updated Changelog + ToDo + gitCommands";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-21 08:35:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:429;a:8:{s:3:"sha";s:40:"f4604ba821de8d362624a8e5353ca331ff8e6271";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:13:"1.8.2 RELEASE";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-15 20:58:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:430;a:8:{s:3:"sha";s:40:"db437eade4ee8fdcc4765633ce906aa54a6b6226";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:116:"1.8.2 Bugfixes + +Fixed getRelativePath for non absolute Paths +Improved Error Managment in CreateSeriesFolderStructure";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-15 12:47:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:431;a:8:{s:3:"sha";s:40:"8f8eaa1a01b16d2b4e746a20a88329cd40131648";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:26:"Removed already done ToDos";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-15 10:42:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:432;a:8:{s:3:"sha";s:40:"624b5c6497fecc7e251e9c592a0ba19d5a7ec867";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:174:"1.8.2 Bugfixes + Features + +Added Read Only Mode +Added additional VLC Paths +Fixed unused ACtionELements in SHortcut Settings +Improved ActionELement Naming in Shortcut Settings";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-15 10:38:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:433;a:8:{s:3:"sha";s:40:"2807074eedf484e47821466965f2446bf95f586b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:334:"1.8.2 Bugfixes + +Fixed Series->openInFoder: Opening wrong path +Fixed CCDate Spinner not regitering manually inserted CCDates +Added Recognizing of short years ('95) to CCDate Parser +Fixed getCommonFolderPath resulting in an endless loop for empty input +values +Added CheckForUpdates CCAction +Added Case for No Update found in UpdateFrame";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-03 14:51:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:434;a:8:{s:3:"sha";s:40:"dce0da228ff935f453996e141742afe960711523";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:128:"1.8.2 Bugfixes + +AddEpisodesFrame: Fixed Wrong Spinner for Sidebarbutton +EditSeriesFrame: Update List after Changing Episodetitle";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-02 14:08:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:435;a:8:{s:3:"sha";s:40:"adf08e64b156a77860a4a050a7feecf88a62104e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:122:"1.8.1 RELEASE + +Fixed AV when Autofixing wrong Quality of an Episode +createSTructureFrame closes after successful operation";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-01 19:25:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:436;a:8:{s:3:"sha";s:40:"f2044482b4bc307ba5fa1e05897c1a4c315b03a9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"1.8 RELEASE + +Updated Version to 1.8";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-01 15:54:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:437;a:8:{s:3:"sha";s:40:"5e75587e01c9f67182af4d24e4c0e14c7ba17dbc";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:145:"1.8 Features + +Fixed various AV's when doing Action with an unfinished DriveMap +Showing the Translationcount as Debugmessage +Added Statistics-Icon";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-01 12:25:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:438;a:8:{s:3:"sha";s:40:"310f185a2f5b5ae505b5a65cd0a87c347748e30a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:309:"1.8 Features (StatisticsFrame completed) + +Finished StatisticsFrame: +Added Userscore-Chart +Added Genre-Chart +Added FSK-Chart +Added Language-Chart +Added Tags-Chart +Added Hours/Date-Chart (Movies, Series, both) +Added Size/Date-Chart +Added Hidden Option for Interactive Charts (Default-off) +Fixed Sort-per-Year AV";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-01 11:33:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:439;a:8:{s:3:"sha";s:40:"ececcfeca1db62f8987b146fb92a8f5fef8c8be6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:211:"1.8 Features (StatisticsFrame) + +Added StatisticsFrame +Added Statistics Sidebar +Added Add-Date Chart +Added Format-Chart +Added Length-Chart +Added Score-Chart +Added Quality-Chart +Added Viewed-Chart +Added Year-Chart";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-31 22:40:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:440;a:8:{s:3:"sha";s:40:"e30e87483827afa7e9167ff80cc2529b9343a31b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:282:"1.8 Features (PreviewSeriesFrame) + +JCoverChooser only reacts to left MouseButton +Added RightClickMenu to Cover +Added all the Options to SeriesMenu, SeasonMenu, ExtrasMenu and +PopupMenu in PreviewSeriesFrame +Added getInstance to MainFrame (IntermediateBlocking without direct +access)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-30 21:00:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:441;a:8:{s:3:"sha";s:40:"4bb6cf01f0aaa75b0e8d9a14d84d747c2884e4db";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:99:"1.8 Bugfixes + +Added CalcQuality-Button to EditSeriesFrame +Added forceDBUpdate Funktion to MovieList";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-30 15:21:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:442;a:8:{s:3:"sha";s:40:"04318fb57e9e4651f68a5b72ee6f65b1db06a0c0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:100:"1.8 Features (createSeriesFolderStructure) + +Finished cSFS-Functionality +Added ActionElement for this";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-30 14:10:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:443;a:8:{s:3:"sha";s:40:"ae255516920182b284fcacc191073e07c4dc1d2f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:101:"1.8 Features (createSeriesFolderStructure) + +started Series-cFS-Dialog +createdGUI for Series-cFS-Frame";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-29 18:32:31";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:444;a:8:{s:3:"sha";s:40:"a3e9c3f679a20916fa1892e264ca3006eccf150d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:165:"1.8 Features (MoveSeriesDialog) + +Resizable MoveSeriesDialog +Visual Feedback if Operation is possible in MoveSeriesDialog +Preview before executing in MoveSeriesDialog";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-29 14:02:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:445;a:8:{s:3:"sha";s:40:"9411456ad09406859c0e7f1d5f995bfbe45dff0f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:212:"1.8 Features (CheckDatabaseFrame) + +Added CategoryList to CheckDatabaseFrame +Added ErrorType to DatabaseError +Added visualization of Autofixable to List in CheckDatabaseFrame +Added Translations to Error-Categories";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-29 11:52:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:446;a:8:{s:3:"sha";s:40:"94dd03d09b91559f70505cae1982275c810f98db";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:143:"1.8 Features (Tag System completed) + +New and better Tag-Icons (but not perfect ...) +No duplicate Icons in Resources +Better Tag Display in Table";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-27 13:10:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:447;a:8:{s:3:"sha";s:40:"6dd606caa515a50c6fb77de3d3f10ba02d5809da";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:56:"1.8 Features + +Updated the DB-Version, for real this time";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-26 19:38:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:448;a:8:{s:3:"sha";s:40:"8d5be075c215697b99c27a9ecbc9c33c180b8f7c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:345:"1.8 Features (Tag-System) + +Added, Removed and changed Ions +Removed MagicNumbers in PreviewSeriesTable +Removed the Field "Status" (moved to Tags) +Added Tags to Movies and Episodes +Added TagPanel to Display Tags of an Element +Updated Database structure to 1.6 +Updated Locales (Removed a few Inconsistencies) +Fatal Error on wrong Database structure";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-26 19:36:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:449;a:8:{s:3:"sha";s:40:"456e483d0bd082b8981e2a07a0cdc038e0e58080";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:13:"1.7.3 RELEASE";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-25 13:23:41";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:450;a:8:{s:3:"sha";s:40:"6ff55b0ff9c2d6d7485e01a7c4a90a02c1899751";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:279:"1.7.3 Fixes and Tasks + +New empty Seasons now have the name +New empty Episodes now have the name +SeasonList gets updated in EditSeriesFrame when updating a Seasontitle +Changed Quality to be dependent on Length +Added CalcQuality Button to Add/Edit -MovieFrame";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-25 13:10:02";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:451;a:8:{s:3:"sha";s:40:"db20a957f945bcd4a1b7c2e3436848089d164fef";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:52:"1.7.3 ToDOs + +I should start coding - ToDos dont help";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-24 19:11:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:452;a:8:{s:3:"sha";s:40:"c5b1e4dda3634129d68df551d940c9f98f0d97af";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:61:"1.7.3 Updated ToDos + +And the ToDo List is growing and growing";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-22 17:40:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:453;a:8:{s:3:"sha";s:40:"6c17133706cf9be4d8e192ac93469caa8fa6870b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:53:"1.7.3 ToDos Update + +Added Requests/Bugs from Benjamin";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-21 19:49:52";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:454;a:8:{s:3:"sha";s:40:"b64a6c2a80a1594f77372cc62d65518d6dfa5c47";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"1.7.3 Updated ToDos";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-21 07:24:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:455;a:8:{s:3:"sha";s:40:"4bf643bbe17e7010861c5b4d9dcdd3f6f789d537";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"1.7.2 RELEASE + +Bugfix Release";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-18 12:58:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:456;a:8:{s:3:"sha";s:40:"edc45b6f07439f7b47f50b5cffdc7093c4a28646";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:63:"1.7.2 Code Cleanup + +Removed "Magic Numbers" for Column-Indizies";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-18 12:53:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:457;a:8:{s:3:"sha";s:40:"4b0f216091ce531e26d7f9a0b6243df48e634bcc";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:69:"1.7.2 Bugfix + +Fixed Wrong renaming for English/France or Muted Movies";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-18 11:46:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:458;a:8:{s:3:"sha";s:40:"82bf886fce39e2215b803fd60db48e5ee7aa0106";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"1.7.1 RELEASE + +Bugfix Release";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-09 17:17:04";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:459;a:8:{s:3:"sha";s:40:"b266409a5d2505c5af0894b2047887450cbf1cc4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:150:"1.7.1 Bugfixes + +Fixed Null-Cover Bug +Fixed Element-Changed-Listener resetting TableSelection +Fixed jCoverChooser drawing an null-Image (i hope so ...)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-09 17:06:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:460;a:8:{s:3:"sha";s:40:"9a6639b79eea7774d2fb96f8090907e096bea92b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:80:"1.7.1 Bugfixes + +Fixed Translations +Fixed Button Enablation in CheckDatabaseFrame";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-01 15:28:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:461;a:8:{s:3:"sha";s:40:"1af8dfbf95e7eb1ac9efb4517139f8abd9412976";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"1.7 Changelog + +Updated Changelog for 1.7";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-29 16:56:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:462;a:8:{s:3:"sha";s:40:"c86ec584d82f06f6c36866740b91d1c2f2e65849";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:37:"1.7 RELEASE + +Updated Version to "1.7"";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-29 16:54:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:463;a:8:{s:3:"sha";s:40:"da33e77059cf1e1a5056de552793f36045a406e0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:61:"1.7 Fixes + +Fixed Translation +Fixed a few Bugs +Oragnized ToDos";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-29 16:53:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:464;a:8:{s:3:"sha";s:40:"59a00b33eccea2f1b44ee2f3cd20f9d1a7afd26d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:47:"1.7 Features + +Added Option for Clickable Zyklus";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-29 16:41:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:465;a:8:{s:3:"sha";s:40:"a53c38631b464fa0290613a7d7e08dd424545b78";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:149:"1.7 Features + +Improved the Search in PreviewSeriesFrame +Added Settings for displaying Columns in Statusbar +Added the RabdomMovieFrame ("Filmtrommel")";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-29 08:17:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:466;a:8:{s:3:"sha";s:40:"208f9f7a065bc0c1ec388631a7ff45b95b063d9d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:167:"1.7 Features+Bugfix + +Fixed Zero-Height Lines in JList (on empty elements) +Fixed Layout (Wrong Widths) of Lists in editToolbarFrame +Added Non-Linked-Cover DatabaseError";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-27 14:17:46";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:467;a:8:{s:3:"sha";s:40:"1c8c24810c49b277936e3a5e5cec3b0f38c0617c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:162:"1.7 Features + +Added Option for Add-Date Calculation-Method in Settings +Added Missing +Icons +Added 16x16 Icons (now there should no Icons get down-sized in +runtime)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-27 13:29:07";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:468;a:8:{s:3:"sha";s:40:"2d5e45472409810c07a9ba2b72abd4d92d7bb1bb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:549:"1.7 Bugfixes + +Fixed too small seperator in editToolbarFrame +Fixed Nullpointer when adding/previewing/deleting season +Fixed MassSetLength in addMultipleEpisodesFrame +Fixed NonSelection TitleEdit in addMultipleEpisodesFrame +Fixed non setting LastViewed when man. changing Viewed of an Episode +Added UserDataProblem "Untrimmed" to CCSeries +Added UserDataProblem "Untrimmed" to CCSeason +Added UserDataProblem "Untrimmed" to CCEpisode +Fixed Color of CaptionedPanel in addMultipleEpisodesFrame +Fixed Backgroundcolor of PathEdit in addMultipleEpisodesFrame";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-26 21:40:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:469;a:8:{s:3:"sha";s:40:"55768ea43e30f0046b78e963468d704a98a63602";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:80:"1.7 Libraryfix + +Fixed BeanUtils Library (again) +- Removed duplicate files in jar";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-26 17:47:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:470;a:8:{s:3:"sha";s:40:"8a126b25a55c343af936f80e5c62a86b7ae01003";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:183:"1.7 Bugfix + +Removed Test-Ressource-File (*_16x16.png) +Fixed Fatal AV when Searching for Directory +Fixed the possibility to open Windows while in an blocking call (through +Screenshots)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-26 14:08:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:471;a:8:{s:3:"sha";s:40:"234340b2eb857746d3e97b282ad390c129fb8b42";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:201:"1.7 Features + +Fixed Missing BeanUtils-Exception Bug (now using custom compiled +beanutils.jar) +Added support for prerenderered 16x16 Icons +Fixed Border around Seperator in EditToolbarFrame +Updated ToDos";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-26 13:12:10";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:472;a:8:{s:3:"sha";s:40:"70e9c3660f470844da265e23c68f7650b6692542";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:170:"1.7 Features + +Added PropertyCheckbox +Added Option to change the Toolbar +added ToolbarConfigPanel to show ToolbarConfig +Added EditToolbarFrame to change the Toolbar visual";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-26 12:15:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:473;a:8:{s:3:"sha";s:40:"577de01cbea3a85aceaa815effd23c32cad45100";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"1.7 Bugfix + +Fixed missing jGoodies-Commons Library";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-26 07:11:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:474;a:8:{s:3:"sha";s:40:"bf4928fcf32621e8352ee65f1e5052e74aeb3407";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:68:"Export Fix (BeanUtils) + +Fixed the Duplicate-Entry Bug when exporting";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-26 07:00:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:475;a:8:{s:3:"sha";s:40:"14f0b30466d92da7fe58fc2c77d0fc85db95ef4e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:99:"1.7 Possible Bugfixes + +Fixed new Warnnings due to new Eclipse Settings +- Fixed a few ressourceleaks";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-26 06:50:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:476;a:8:{s:3:"sha";s:40:"9e4ff372bcc520a093513776bfcc9b148e70fb6f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:146:"Git cleanup + +Added Eclipse Files to Repository +Configured Project specific settings +Added javadoc to repository +Updated Derby and jGoodies Library";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-26 06:49:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:477;a:8:{s:3:"sha";s:40:"665668f0be7392cfe7ad78bc27cc98feeb4e8176";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:65:"Added gitcommands + +Added gitcommands - a list of Commands for git";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-25 19:25:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:478;a:8:{s:3:"sha";s:40:"387233a21bdd40dfb1bb80796d2c6549a7ca6400";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:68:"Changelog Fix 2 + +Changed Changelog Encoding from UTF-8 (BOM) to ANSI";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-25 14:12:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:479;a:8:{s:3:"sha";s:40:"7230cc8bf7bdc662d7b811b704cf800b40e074da";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:93:"Changelog Fix + +Fixed Wrong Encoding in Changelog (removed BOM,, Encoding from UCS-2 to +UTF-8)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-25 14:08:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:480;a:8:{s:3:"sha";s:40:"812e08e5798c600b0312a862f53ea8fd821fdf0a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:165:"1.7 Features + +Add Cache-Function to Movieplayer (it remembers the VLC-Path) +Removed the Cancel-Button from ParseImDBDialog +(Noone noticed it had no functionality ^^)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-25 13:30:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:481;a:8:{s:3:"sha";s:40:"bc8a97733aff1c1cc15cc7f0d1605cc3276a9b30";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:49:"1.7 Features + +Added Episodeguide-Export to Series";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-25 13:11:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:482;a:8:{s:3:"sha";s:40:"8d7878c58dcfeebfef912764294b6f65587482a9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:74:"1.7 Glitchfix + +Rewrite of the SFixTable, should now work ("nearly") always";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-25 12:17:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:483;a:8:{s:3:"sha";s:40:"ca563000fa8ff3c1d5c4634aaf63707c5e9c2e4b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:97:"1.7 Features + +Improved ExtendedSettingsframe (now uses the Component Methods from the +Properties)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-25 11:46:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:484;a:8:{s:3:"sha";s:40:"ae8e772ab0514b3f948c73f180c80e41a0681fa0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:302:"1.7 Features + +Added Shortcuts for ExportList +Added Option to export Movies in CompareDatabaseDialog +Added (hidden) option for ImDB-Parser-Language +Added automatic sorter to extendedSettingsFrame +Added general openFile-Dialog +Cleaned up the open File Methods (moved all openFile-Things to extra +methods)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-25 11:02:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:485;a:8:{s:3:"sha";s:40:"15db3d3895efeb9667f43068a9650429bf4ce689";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:109:"1.7 Features + +Finished Single-Import +Finished Single-Export +Finished Multiple-Import +Finished Multiple-Export";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-25 07:59:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:486;a:8:{s:3:"sha";s:40:"a15d3b59cc69e649afae27b9a2c038b5979cc6f9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:317:"1.7 Features + +Added Option to export Cover in XML +Added LocalID to searched Fields in SearchFrame +Adedd Export-Single-Movie Function +Added (incomplete) Import-Movie-from-jccsexport-File Function +Added ImportElementsFrame to Import One or Multiple Elements from a File +Small Bugfixes +Updated Locale-Files +Updated ToDOs";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-24 14:12:12";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:487;a:8:{s:3:"sha";s:40:"f2d1484261ab182ff70b9d69cd10c406d91a1309";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:142:"1.7 Big Code Cleanup + +Massive CodeCleanup with >>Google CodePro AnalytiX<< +Fixed a lot of bad code, possible errors and ugly programming style";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-24 08:14:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:488;a:8:{s:3:"sha";s:40:"5b6d25d734956017f54edbadbb65d229a7946d92";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:254:"1.7 Code Cleanup + +Fixed "unclean" Code (CodePro AnalytiX): +- Added Names to Threads +- Added hashcode() Methods +- Replaced "startsWith" with "charAt(0)" +- Removed obsolete semikolons +- Made LocalizedVector Methods synchronized +- Various other improvements";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-23 13:41:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:489;a:8:{s:3:"sha";s:40:"c6a952f256196f6b589c9f0509e84c1e42c61fcb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:46:"1.7 Code Cleanup + +Removed unused Localizations";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-23 12:51:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:490;a:8:{s:3:"sha";s:40:"7383854cc3df5ccf0de6554d00679368fea60e10";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:291:"1.7 Features + +Forced Extension in SaveDialogs +Removed strange empty lines in Coverlabel (dafuq ?) +Fixed Bug when deleting Series (not deleting all cover / deleting some 2 +times) +Fixed ConcurrentModification in getGenreList (yay, finally) +Added OnRefresh Event (after the Blocking of the App)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-23 12:39:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:491;a:8:{s:3:"sha";s:40:"048dc5efc92116d08a7b39a953899403a66a5e0d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:96:"1.7 Features + +Removed the unnecessary Frame ExportJXMLBKPDialog (Functionality is now +frameless)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-23 11:42:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:492;a:8:{s:3:"sha";s:40:"51b0d4783e3771d8a73a310eeb4a0fb3b1b287b4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:326:"1.7 Features + +Added Option to load previously exported (jxmlbkp) Databases +Moved the zip / export / import Functionality to ExportHelper.java +Added parseXML Functions to CCMovie, CCSeries, CCSeason and CCEpisode +It now needs a doubleclick to open the Log +Fixed Bug in Settingsframe with empty Descriptions (captionIdent == "")";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-23 11:18:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:493;a:8:{s:3:"sha";s:40:"7fe340e40f0f798a7a6ebde9ec8e5a68e99e553e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"1.7 Updated ToDOs + +A lot of TODO Updates ...";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-22 11:41:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:494;a:8:{s:3:"sha";s:40:"44da715c6b1a2387a370f0a24abca6c4540f411f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:85:"1.7 Features + +Added DatabaseError for Wrong Filename +Added Autofix for Wrong Filename";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-14 19:09:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:495;a:8:{s:3:"sha";s:40:"e8d2fffc99a272ba7b11c4cdcb5ec9b1dcf10d77";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:73:"1.7 Features + +Added TestCase to CCDate +Fixed WeekdayCalculation in CCDate";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-14 12:06:07";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:496;a:8:{s:3:"sha";s:40:"a25ab33e4508a83c7fca579d1e9ecc19f935ff24";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:32:"1.6 Changelog + +Updated Changelog";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-13 21:29:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:497;a:8:{s:3:"sha";s:40:"c3378800f581e2ddbfeae49e99e0afd73b41bbb9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:38:"1.6 RELEASE + +Changed the Versionnumber";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-13 20:42:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:498;a:8:{s:3:"sha";s:40:"6621624e788ac5063285394f5f3c6b9914ed3993";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:401:"1.6 Features + +Finished Shortcut System: +- Automatic Shortcuts for all Elements in the ActionTree +- Change Shortcuts in SettingsFrame +- ShortcutEdit (KeyStrokeEdit) for changing Shortcuts in the GUI +- Fixed Visual Bugs when displaying Shortcuts +Better Width and Height-Managment in Settingsframe: +- Automatic calc the Height (use Scrollbar if too much) +- Automatic calc the Amount of Tabs +Updated ToDos";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-13 20:40:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:499;a:8:{s:3:"sha";s:40:"cd455e590137e7827da00e188bdb84403ec7c961";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:206:"1.6 Features + +Cleaned up the CCProperties code: +- getValue is now abstract +- setValue is now abstract +- No more ugly hard casts in CCProperties - easier to add new Property +Formats +Added CCKeyStrokeProperty";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-13 15:05:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:500;a:8:{s:3:"sha";s:40:"6dc9d3d8e401bd98d71abaf193f1a6223853b10a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:38:"1.6 Features + +Added Keyboard Shortcuts";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-13 14:21:47";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:501;a:8:{s:3:"sha";s:40:"bde75896cf5039cea01f08a960ccd8fd3d39e170";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:327:"1.6 Bugfix and Features + +Fixed Focus Bugs in MassChangeScoreFrame +Fixed Focus Bugs in MassChangeViewedFrame +Added Numpad Keys to MassChangeScoreFrame +Added Numpad Keys to MassChangeViewedFrame +Added "Only Viewed" Option to MassChangeScoreFrame +Added "Only Not-Viewed" Option to MassChangeViewedFrame +Fixed AV in ScanFolderFrame";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-13 11:56:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:502;a:8:{s:3:"sha";s:40:"5138b52619a90a0800c9f81be94b039d1c560478";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:410:"1.6 Features + +Added TabOrder for AddMovieFrame +Added TabOrder for AddEpisodesFrame +Added TabOrder for AddSeriesFrame +Added TabOrder for CompareDatabaseFrame +Added TabOrder for EditMovieFrame +Added TabOrder for EditSeriesFrame +Added TabOrder for ExportJxmlBKBFrame +Added TabOrder for FindCoverDialog +Added TabOrder for ParseImDBDialog +Added TabOrder for ScanFolderFrame +Added TabOrder for AutomaticSettingsFrame";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-13 10:46:04";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:503;a:8:{s:3:"sha";s:40:"63f9a4447842f307179b73577227a0672a0eaa8a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:82:"1.6 Features + +Added TabOrder for AddMovieFrame +Added TabOrder for AddEpisodesFrame";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-12 10:06:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:504;a:8:{s:3:"sha";s:40:"6d04df812f43c1cc38d88fd700b436857ad6fa60";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"1.6 Updated ToDos 2";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-10 18:08:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:505;a:8:{s:3:"sha";s:40:"7b4031de568e4185a27c19c249598288171028da";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"1.6 Updated ToDos";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-09 18:06:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:506;a:8:{s:3:"sha";s:40:"ede6ec54d0181e2c92a4c7ad2e51273370c550af";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:26:"1.6 Bugfix + +Fixed trim bug";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-09 17:27:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:507;a:8:{s:3:"sha";s:40:"29208084dd0caeb00c5b5df30694518fab9a8858";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:122:"1.6 Features + +Added "Show in Browser" to Movies/Series Popup +Updated .gitignore +Updated Changelog (now finally not binary)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-08 11:00:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:508;a:8:{s:3:"sha";s:40:"698ee64785881d7ddd74f541a83927c0ea87982a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:294:"1.6 Features + +Better Sort of Genres in Table +Throw UserDataProblem/DatabaseError when Tabs at start/end of strings +Auto set Quality of Mass-added-Episodes +Added contextmenu->"save as" to Coverlabels +Fixed AV when adding a season +Added findCover to AddSeason +Added ErrorCount to InputErrorDialog";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-08 09:45:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:509;a:8:{s:3:"sha";s:40:"e38ab5a0bd0299735036f22d5f1126155122fc65";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:42:"1.5 Bugfix + +Fixed Bug when editing a Movie";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-05 18:10:47";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:510;a:8:{s:3:"sha";s:40:"48690bbde49d08b5a7f48c01e6b00bd19dbf5a85";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"1.5 Changelog + +Added Changelog";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-05 17:54:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:511;a:8:{s:3:"sha";s:40:"75f1f6a99fcb6d9bd3ac22c936ff7d945f435492";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"GIT Attributes Update";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-05 17:53:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:512;a:8:{s:3:"sha";s:40:"afd3c9bdb229f252c68753ab9a23a8a57444ef5c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:75:"1.5 UPDATE + +Completely redone the findCoverFrame (everything is better now)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-05 17:23:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:513;a:8:{s:3:"sha";s:40:"2543292439121c8d8d69598f089fa702e9a4e9e4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:743:"1.5 RELEASE + +Fixed CharSelctor (Less Buttons, but now all are visible) +Fixed IMDB-Background-Color not working with sorted Table +Added Lbl with Amount of Errors in CheckDatabaseFrame +Fixed Autofix-Filesize for Episodes +Added Display cover and ID to DebugMode (PreviewMovie and PreviewSeries) +Better delete Icon +Better Validate Icon +Added new Search Frame that also searches Paths, Seasons and Episodes +Renamed CheckDatabaseDialog to CheckDatabaseFrame +Added 2D Mode to CoverChooser +Added Option for 2D Mode +Added Borders to CoverChooser +Added Option for Border in CoverChooser +Changed Settings-Cateory from DIALOGS to OTHERFRAMES +Added Option to skip already rated Movies in MassChangeFrame +Added Border around Selected Cover in findCoverFrame";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-05 15:11:11";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:514;a:8:{s:3:"sha";s:40:"3cb4040ccdc81e888551e846447dcb5f55a1d4ce";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"1.5 Added Changelog + +Changelog";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-04 22:11:48";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:515;a:8:{s:3:"sha";s:40:"afb1ffc79cc2c24f41380c6d417c0cac733eb233";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:2428:"1.5 FEATURES AND BUGFIXES + +- Added UserDataError: Zyklus/Title is not trimmed +- Changed Errors from Bad-JSON to Warnings +- Removed Iterator Test Code +- Fixed Deadlock in parseIMDBFrame +- Improved Thread-Managment in parseIMDBFrame +- Removed Rawtype Warnings from a bunch of Frames (added +Generic-Parameters) +- Fixed Color Reset Bug in EditMovie(with empty Path-Edits) +- Added Language as Field to CompareDatabase +- Fixed NullpointerException in DatabaseComparator +- Added Path Info to CompareDatabase Dialog +- Fixed Wrong UserDataError when changing path of a Movie with an Zyklus +- Added UserDataError: Zyklus ends with Roman +- Added UserDataError: Wrong Quality +- Added DatabaseError: Zyklus ends with Roman +- Added DatabaseError: Wrong Quality +- Moved getMovieQualityForFilesize to CCMovieQuality.java +- Improved IntelliSort with larger roman Numbers (should now always work +correctly) +- Removed Unhelpful LocalID's from CheckDatabaseFrame +- Added Open Edit Window Action to CheckDatabaseErrorDialog +- Update Button with Count whenn Adding Movie in ScanFolderFrame +- Fixed Deadlock in findCoverDialog +- Fixed OK-Button in parseIMDB-Frame always being enabled +- Added "Edit Movie on DblClick" Setting +- Removed ChangeScore-Button from PreviewMovieFrame +- Improved Filename Parser: is parsed as "Men in +Black III - Men in Black" +- Improved Filename Parser: is parsed as +"Men in Black: The Subtitle" +- Improved FilenameRenderer: Use complete Filesize (Of all Parts) to +calculate Quality +- Changed Label in Statusbar from "Movies" to "Elements" +- Added a Autofix-Button to Autofix Database Errors +- Added Autofix for Error: Incontinous Genrelist +- Added Autofix for Error: Wrong Filesize +- Added Autofix for Error: Incontinous Partlist +- Added Autofix for Error: Wrong Format +- Added Autofix for Error: Non Trimmed Title/Zyklus +- Added Autofix for Error: Wrong Quality +- Improved Multithread-Handling of ProgressCallbackListener (more +Methods) +- Added ProgressCallbackHelper (Easy Progress Display in Multithreading) +- Added DatabaseError: Duplicate Movietitle +- Added UserDataError: Duplicate Movietitle +- Made UserDataErrors in LanguageFiles better readable by forcing a +two-digit-number +- Removed old and unused Code from DatabaseCoverElement +- Fixed English Caption in German Language (SettingsFrame) +- Added DatabaseError: Duplicate File +- Added UserDataError: Duplicate File";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-04 21:20:54";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:516;a:8:{s:3:"sha";s:40:"62a7eff338a1ab47662f0b370d83a0a385f6def9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:76:"1.5 MASSIVE TODOS UPDATE + +Added a fuckload of ToDos +(And fixed to easy bugs)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-04 11:29:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:517;a:8:{s:3:"sha";s:40:"bab743bef021a52e9014ff84fc18f21b0f4fed2f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:74:"Merge pull request #1 from Bigben37/master + +1.4 LANG Language Files fixed!";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-02 13:33:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:518;a:8:{s:3:"sha";s:40:"595f3d1183ce836ed9433b5a093f383d48b3cc89";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:42:"1.4 Update + +Changed Launch4j config to 1.4";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-02 12:58:48";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:519;a:8:{s:3:"sha";s:40:"3fa3624117006edf1d34f6eb2c42f7230251c73c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:134:"1.4 RELEASE + +Added Compare Frame +Changed Delete Icon +Fixed Language Problems in Filenameparser +Updated .gitignore to include libraries";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-02 12:57:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:520;a:8:{s:3:"sha";s:40:"08ffb9e50bfae0ed8a8ac7858703cd16e01216ce";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:52:"1.4 WIP-Feature + +Started Implementing Comparing DB's";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-01 22:06:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:521;a:8:{s:3:"sha";s:40:"ff1974765f9ceebe6c29be03961a1fefc78cce0f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:64:"1.4 Bugfix + +Added Better (non-Glitching) CoverCache-ID Mechanism";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-01 17:17:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:522;a:8:{s:3:"sha";s:40:"4099b790e54e28d28e1686792925ae0fdf3a440f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:11:"1.4 Imports";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-31 19:07:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:523;a:8:{s:3:"sha";s:40:"eafab3691fe7d9c48f3a64ef7014061150d6bd5c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:119:"1.4 Feature + +Added TimeKeeper for Simple Methode Performance Testing +Added MD5 Calculation for Movie-File +Updated ToDos";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-31 18:58:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:524;a:8:{s:3:"sha";s:40:"1736ecf57d6b018072670194d61e2b6262876881";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:64:"1.4 Documentation + +Added better comments to the FindCoverThreads";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-31 15:51:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:525;a:8:{s:3:"sha";s:40:"8e10169f7b2d47bd49ef993f980c3c545062f419";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:78:"1.4 Features + +Made disabled Spinner, Textfields and Comboboxes better readable";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-31 15:48:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:526;a:8:{s:3:"sha";s:40:"f347e539c1433a8da25f3ae857f4dd2c94499084";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:151:"1.4 Features + +- Moved Util (Database) Classes to util package +- Added iterator(), iteratorMovies() and iteratorSeries() +- Replaced Loops with iterators";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-31 14:21:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:527;a:8:{s:3:"sha";s:40:"925ce8e9d6bf6f6c36cf3b697454e75511e6cc12";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:12:"ToDo Updates";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-30 17:28:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:528;a:8:{s:3:"sha";s:40:"7476936e086e6c42c8618e88e23a19d0090cac2c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:230:"1.4 Features + +Implementes Serialization (XML) for +CCDatabaseElement +CCMovie +CCSeries +CCSeason +CCEpisode +Added Export as *.jxmlbkp Option (XML in Zip with Cover) +Fixed a Situation where you edit Swing Objects in an non-Event-Thread";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-30 17:20:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:529;a:8:{s:3:"sha";s:40:"e2ad697a2fad5ae605ffbcd683e92d9c6d39c524";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:119:"1.4 Features + +Added Hidden DebugMode Option (only in extended Settings Dialog) +Added Option to change the FilesizeDrift";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-30 13:41:00";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:530;a:8:{s:3:"sha";s:40:"f82fc6fecb82e9d0489588364e5fa361c006e4a4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:94:"1.3 Bugfix + +Fixed the non-displaying the duplicate Cover Error Message +Added proper Debug Mode";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-30 13:30:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:531;a:8:{s:3:"sha";s:40:"9ed017f44d4cfd251bc379ea385382feddfaa462";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:67:"1.3 Bugfix + +Fixed a Bug where you cant see which Elements have Bugs";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-29 22:49:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:532;a:8:{s:3:"sha";s:40:"7b52b9878eada09324ee379d85f2a4292fb720c6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"1.3 RELEASE + +- Added Score to AddMovieFrame";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-29 19:55:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:533;a:8:{s:3:"sha";s:40:"28b1de80c9f08a5511c69ac0591d6fc32e9da292";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"1.3 REALEASE + +- Added Score to AddMovieFrame";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-29 19:43:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:534;a:8:{s:3:"sha";s:40:"4b13487aa91e4bbe8dd3ecd69769474908725465";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:1043:"1.3 Features + +- Moved alle CheckUserDataMethods to the CheckUserData Class +- Added ToDos +- Do not Autoselect title in ParseImDB-Frame +- Use Progressbar when opening Page in ParseImDB-Frame +- Added (bannned) to AgeRatingParser +- Do not throw Warnings when parsing a Movie with minimal Infos +- Added UserDataWarning: Zyklus (or Title) has Leading or trailing +Spaces +- Added UserDataWarning: Zyklus already exists +- Fixed confusing Messages (and wrong algorithms) with the ZyklusNumbers +(-1 | 0 | Number) +- Added new Checks to CheckDatabaseDialogs : Leading / Trailing Spaces +- Added new Checks to CheckDatabaseDialogs : Wrong AddDate +- Added new Checks to CheckDatabaseDialogs : Wrong LastViewed +- Added new Checks to CheckDatabaseDialogs : Inconsistent AddDate and +isViewed +- Added new Checks to CheckDatabaseDialogs : Duplicate CoverFiles +- Changed JTextArea in CheckDatabaseFrame to JList +- Fixed Progressbar in CheckDatabaseFrame +- Exported CheckDatabase Code in to several extra Classes +- Changed DatabaseError Strings to Default :== German";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-22 23:00:46";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:535;a:8:{s:3:"sha";s:40:"67f9cadb0bc77ca1f7620487cf6d7be668765eb8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:118:"1.3 Features + +Fixed Title in Preview Movie hides Viewed-Eye +Added Are-you-sure Dialog to delete Episode +Updated ToDo's";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-20 08:31:12";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:536;a:8:{s:3:"sha";s:40:"7eecf57d9dc76715508e526cab3a7eb85086375f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:133:"1.3 Features + +Added Filenamerules +Added EBNF for Filenames +Added CCDateSpinner Bug +Updates ToDo List +Updated UserData to German Texts";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-19 14:45:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:537;a:8:{s:3:"sha";s:40:"9aba8840118d38dd5a3a287596e76e885ff49abb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:59:"GIT FIX + +Fixed Missing locae-Files (.gitignore failed hard)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-18 15:19:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:538;a:8:{s:3:"sha";s:40:"dfba0ed6543411f1a5fa0dbf732e0e963e5eab40";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:81:"1.3 Features + +Added Initial Sort Property +Improved CCRInt Property (Constructors)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-18 14:51:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:539;a:8:{s:3:"sha";s:40:"07b5af2a82a95104c12938e5408547e26c5d1dd1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:64:"1.2 Bugfix IV + +Bug vo BF III auch in CCSeason gefixt +Moar ToDo's";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-18 13:29:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:540;a:8:{s:3:"sha";s:40:"31e0cc88cf17fb814769424caafce91b46af5e87";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:158:"1.2 Bugfix III + +- Fixed Bug on Adding new Movie (deleting nonexistent cover) +- Fixed Auto-Calc Filesize when adding Movie +- Added ":" Syntax to Filenameparser";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-17 20:26:12";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:541;a:8:{s:3:"sha";s:40:"d4d4ce99f2acd592cca83839b203e8a5f6ea587e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:286:"1.2 Bugfix II + +-Fixed Text Glitch in editMovieFrame +-Fixed Filesize fixing itself when open editFrame +-Fixed non-auto-relative Path in editSeriesFrame +-Fixed wrong calculation of FileExists and Filesize in +PreviewSeriesFrame +-Fixed TableTypFilter not working +-Made MoveSeriesFrame modal";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-16 21:22:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:542;a:8:{s:3:"sha";s:40:"e18c13acc3b213d9e063fbba9cbdea352d20706f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:68:"1.2 Bugfix + +Fixed 2 massive Bugs in Covercache (Deleting and Adding)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-16 17:33:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:543;a:8:{s:3:"sha";s:40:"52bbab426f35b2414ab196a4d4695b266bec2b49";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:26:"1.2 Update + +Modality sucks";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-16 17:03:41";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:544;a:8:{s:3:"sha";s:40:"75c50dc3e873afa42917549a5068823820342268";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:109:"1.2 Release + +Fixed a load of Bugs +Added Context Menu to PreviewSeriesFrame +Added Search To PreviewSeriesFrame";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-16 16:29:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:545;a:8:{s:3:"sha";s:40:"a45e14003fd061101115624e7670b3770ef73f3b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:95:"1.1 Bugfixes + +Fixed AV when using StatusFilter +Fixed Checkbox in ScanFrame not correct disabled";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-15 23:49:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:546;a:8:{s:3:"sha";s:40:"07e061bf0d624b402e07d22562b2b77eae3c47a5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:45:"Removed *.exe Files from Repository (4th Try)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-15 23:35:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:547;a:8:{s:3:"sha";s:40:"92d008c22ab691ea3b39cbcbdf7a8eac1024d53a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:45:"Removed *.exe Files from Repository (3rd Try)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-15 23:34:07";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:548;a:8:{s:3:"sha";s:40:"739df0fbab3072f3e2e16dba63ba5c30dfc97d40";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:45:"Removed *.exe Files from Repository (2nd Try)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-15 23:28:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:549;a:8:{s:3:"sha";s:40:"06cf7971fd2dc4123c139fe10c508869bfb0de0d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Removed *.exe Files from Repository";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-15 23:25:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:550;a:8:{s:3:"sha";s:40:"11ffcefd473d2f656ec9bdb9a72408db000a07ce";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:276:"1.1 Realease + +-Added Change Score Frame +-Added Change Viewed Frame +-Added Move Series Frame +-Improved Quality Filter / Renderer +-Added Status-Filter to Sidebar +-Fixed Scan Folder Dialog +-Fixed multiple Layout Issues +-Fixed CheckDB Dialog Issues +-Added Series to CheckDB Dialog";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-15 22:56:34";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:551;a:8:{s:3:"sha";s:40:"502885b96fe846129757b7f19ad8924934040ec0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Added moar TODO's";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-14 21:52:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:552;a:8:{s:3:"sha";s:40:"1bd085d0d9a5205dea6bf95db94a48a1aafda784";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"INITIAL COMMIT";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-14 21:09:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:553;a:8:{s:3:"sha";s:40:"d0a3ecdb4d22d5e44371ac5853f4a58b1d66ad88";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:61:"[VERSION 2.3] Added TODO Regex Pattern (Search Special Lines)";s:10:"repository";a:13:{s:2:"id";i:19208822;s:4:"name";s:10:"jQCCounter";s:9:"full_name";s:20:"Mikescher/jQCCounter";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/jQCCounter";s:8:"language";s:4:"Java";s:8:"creation";r:149;s:4:"size";i:260;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/jQCCounter/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-22 19:16:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:554;a:8:{s:3:"sha";s:40:"fbd1e6324e4c3581a0f428c8b5d0b434de686876";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:41:"Added *.dpr to List of Sorcecodefiletypes";s:10:"repository";a:13:{s:2:"id";i:19208822;s:4:"name";s:10:"jQCCounter";s:9:"full_name";s:20:"Mikescher/jQCCounter";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/jQCCounter";s:8:"language";s:4:"Java";s:8:"creation";r:149;s:4:"size";i:260;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/jQCCounter/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-28 13:34:12";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:555;a:8:{s:3:"sha";s:40:"a38e4af1281ca4ea169ddaf07d22f7ec5ccc0b3c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"clean up build folder";s:10:"repository";a:13:{s:2:"id";i:19208822;s:4:"name";s:10:"jQCCounter";s:9:"full_name";s:20:"Mikescher/jQCCounter";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/jQCCounter";s:8:"language";s:4:"Java";s:8:"creation";r:149;s:4:"size";i:260;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/jQCCounter/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-27 16:01:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:556;a:8:{s:3:"sha";s:40:"89de1b03e7cc9316300d8e53599329f11c26d474";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"Commit current state (version 2.2)";s:10:"repository";a:13:{s:2:"id";i:19208822;s:4:"name";s:10:"jQCCounter";s:9:"full_name";s:20:"Mikescher/jQCCounter";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/jQCCounter";s:8:"language";s:4:"Java";s:8:"creation";r:149;s:4:"size";i:260;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/jQCCounter/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-27 15:58:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:557;a:8:{s:3:"sha";s:40:"8bbe734a0682eb06e7798e290d2eb0d5f5a002f6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Initial commit";s:10:"repository";a:13:{s:2:"id";i:19208822;s:4:"name";s:10:"jQCCounter";s:9:"full_name";s:20:"Mikescher/jQCCounter";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/jQCCounter";s:8:"language";s:4:"Java";s:8:"creation";r:149;s:4:"size";i:260;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/jQCCounter/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-27 15:56:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:558;a:8:{s:3:"sha";s:40:"aa0b7d30b8fe1e6ebd43d59fc5a06848c6ac3c5c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:41:"Added various classes from other projects";s:10:"repository";a:13:{s:2:"id";i:19209134;s:4:"name";s:23:"MikesSharpHelperClasses";s:9:"full_name";s:33:"Mikescher/MikesSharpHelperClasses";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:52:"https://github.com/Mikescher/MikesSharpHelperClasses";s:8:"language";s:2:"C#";s:8:"creation";r:166;s:4:"size";i:152;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:70:"https://api.github.com/repos/Mikescher/MikesSharpHelperClasses/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-27 18:14:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:559;a:8:{s:3:"sha";s:40:"ca51af41305caef0d05b85000e79608627501d23";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Initial commit";s:10:"repository";a:13:{s:2:"id";i:19209134;s:4:"name";s:23:"MikesSharpHelperClasses";s:9:"full_name";s:33:"Mikescher/MikesSharpHelperClasses";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:52:"https://github.com/Mikescher/MikesSharpHelperClasses";s:8:"language";s:2:"C#";s:8:"creation";r:166;s:4:"size";i:152;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:70:"https://api.github.com/repos/Mikescher/MikesSharpHelperClasses/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-27 16:07:54";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:560;a:8:{s:3:"sha";s:40:"f6b53784fa88fe59b48592f7ccb2af159e7196be";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:20:"Added Class Diagramm";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-15 14:55:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:561;a:8:{s:3:"sha";s:40:"f1b336f9c2e53e985010f0d87705ae9c2578470b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:26:"Added RS232 - RegisterLink";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-06 09:26:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:562;a:8:{s:3:"sha";s:40:"b0e99b544d80c281ec6223e3bdef9b9ec0169b90";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Updated Testdata";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-06 06:24:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:563;a:8:{s:3:"sha";s:40:"e51bb9d911ae37237a1d581b1593a0f33c99c941";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:52:"Fixed TRIS Register switched & Fixed PORTB Interrupt";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-06 06:24:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:564;a:8:{s:3:"sha";s:40:"e2b8026b67aad90c2829c8a7c120441457cc6df7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Fixed loading Source from LST";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-06 06:23:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:565;a:8:{s:3:"sha";s:40:"4b9132f4f08232456e81afe4118dd3b776e5ae5a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"Fixed Compiler AV (+ sleep)";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-28 10:53:36";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:566;a:8:{s:3:"sha";s:40:"30170ac1fdd198f436b4d05227e0e7306b3dd508";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Test 3 is running";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-28 10:51:11";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:567;a:8:{s:3:"sha";s:40:"1663ddaa05ee9fd5295aa8befde1a7b084ad03d4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:45:"[FIXED] Timer Prescaler on Multitakt Commands";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-28 10:50:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:568;a:8:{s:3:"sha";s:40:"1f4b6109c8702ac798af5e7712a8c699200e2c8e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"MANY BUGFIXES (+ new tests)";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-28 10:13:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:569;a:8:{s:3:"sha";s:40:"9b58b73de58d20c33c68cf41eb12c9c4914f8d56";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"Added more Testdata";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-22 12:07:29";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:570;a:8:{s:3:"sha";s:40:"6e1a1c4b4ce944e5f63639681efb801ce534388e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:57:"Updated ToolbarButtonTheme so it fades away on MouseLeave";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-16 11:32:21";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:571;a:8:{s:3:"sha";s:40:"cbba1584040603fcd42feaf53ee7ee8eaf91d1a4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Added greyable ToolbarButtons";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-14 11:57:29";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:572;a:8:{s:3:"sha";s:40:"b0ce8eb6e7bfa7f32c58a2dc4b67b62087d97dbd";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:45:"Fixed PICClocks not working on High Simu Freq";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-14 08:26:54";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:573;a:8:{s:3:"sha";s:40:"29f62dd3d28720e96db93fda24b1598b821358f3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:47:"Fixed CommandFreq (=1MHz) <> Quartzfreq (=4MHz)";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-14 08:26:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:574;a:8:{s:3:"sha";s:40:"a5043bca3f1114da691b6fc2f7b1e0c80e4cd213";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:26:"Fixed loading of LST Files";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-14 07:11:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:575;a:8:{s:3:"sha";s:40:"4b379079f16ebdf4121032f8c464c8e58cb53eb2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Fixed Wrong CommandCodeFormat in DECFSZ";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-14 07:11:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:576;a:8:{s:3:"sha";s:40:"45a9a7a8184799ca8a9005bdc35d06ff1a0356f5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:23:"Fixed Missing Cmd: CLRW";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-14 07:10:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:577;a:8:{s:3:"sha";s:40:"375704c636e947d0ac2d0e1613e0d888e874ad45";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:23:"Added official Testdata";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-14 07:10:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:578;a:8:{s:3:"sha";s:40:"c68e1f4fb14ff759d46f4aab396f5b5ac73a4cc9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"Impelmented External Clock(s) {4x}";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-11 17:20:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:579;a:8:{s:3:"sha";s:40:"6af0ba109de86e449f3f96585d606821377cf000";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"Added Ability to laod *.LST";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-10 17:23:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:580;a:8:{s:3:"sha";s:40:"3a33442b3d48e2e3d240d7fd16547139b433061c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"Added SLEEP Command";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-10 17:10:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:581;a:8:{s:3:"sha";s:40:"45774a58ee29c2f09ea06068f17d1d7de4c5f441";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:20:"Implemented Watchdog";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-10 16:38:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:582;a:8:{s:3:"sha";s:40:"6c8f43e01df4b90d158a502bb200152475f5d252";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:26:"Added Comments to Commands";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-10 14:23:54";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:583;a:8:{s:3:"sha";s:40:"2241af4cdced21d533a2a083b9b288177d504e38";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:42:"Fixed SWAPF | Added Test_3 | Finished 7Seg";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-09 16:50:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:584;a:8:{s:3:"sha";s:40:"8e455f888c13969143e56f846ab0b8056504b6ba";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:23:"Added 7 Segment Display";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-09 14:18:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:585;a:8:{s:3:"sha";s:40:"42939f41db0fb4639abef3a7b98c6813faffba9c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:66:"Added Bank Selection +--> Fixed Bug where Register 0xFF is accessed";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-08 19:09:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:586;a:8:{s:3:"sha";s:40:"424bbb8fa58c8dd67a59d392b7437902858293bf";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Scroll to the PC when debugging";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-08 18:40:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:587;a:8:{s:3:"sha";s:40:"52eb01f934c4e7c2198e706e7991309c1b9e4856";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"Added indirect adressing";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-08 18:05:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:588;a:8:{s:3:"sha";s:40:"4e144cfd9f8eb3e6a1ce65e3c5b86ed1441c89a8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"Fixed Stack Implementation - is now correct";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-08 12:49:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:589;a:8:{s:3:"sha";s:40:"acb508d27c1bc8d041b106a99219c8c4b722bbd2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:23:"Added PORT-RB Interrupt";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-07 18:31:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:590;a:8:{s:3:"sha";s:40:"95a8837df2449daf3f5a663d222efa666d314fab";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Implemented RB0/INT Interrupt";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-07 18:25:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:591;a:8:{s:3:"sha";s:40:"a909ac30af6bdee02da86b2bcd8204fffcc2331e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:41:"Added Unimplemented Register (0x07, 0x87)";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-07 18:12:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:592;a:8:{s:3:"sha";s:40:"0a3b9e964749463f71bc6ec1a57ccbc8787fa71a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"Abstracted PIC Register into class PICMemory";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-07 18:07:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:593;a:8:{s:3:"sha";s:40:"2345f14271baaebbf9d5bffffec3940dafd74ae8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:69:"Fixed Design of CircularStackDisplay +(Width shouldn't change anymore)";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-07 16:34:47";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:594;a:8:{s:3:"sha";s:40:"78eb7be6d2547cbe0e9e306663de763f8754d363";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:20:"Added TMR0 Interrupt";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-07 16:23:04";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:595;a:8:{s:3:"sha";s:40:"7ee026d18d3b934b7353dbc3f69b001a16d85679";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Fixed TMR0 Index";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-07 10:34:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:596;a:8:{s:3:"sha";s:40:"114e259e64ff7fb12a9e029176cd58b8e64ce5e8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:42:"Added Display for Option + Status + Intcon";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-07 10:24:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:597;a:8:{s:3:"sha";s:40:"b0fffd2484482820f697800faddf46019d22ef03";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:10:"Added TMR0";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-07 09:43:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:598;a:8:{s:3:"sha";s:40:"da0f1dc9aacc94ad269fe14d9da3775dd26b2780";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:20:"XAML Command Changes";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-07 08:28:04";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:599;a:8:{s:3:"sha";s:40:"5f2c377e14c0e0e4cc2ccc3baf370ac4e9920dad";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Fixed StackDisplay";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-07 07:52:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:600;a:8:{s:3:"sha";s:40:"62045c2d55ef2b21574654bcf08a000ace37e1c6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added (most) remaining Commands";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-06 19:04:54";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:601;a:8:{s:3:"sha";s:40:"5197cd1d52435b66b25e8881d0f09410c3c6a1e1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:42:"Fixed Encoding Error when reading Src-File";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-06 18:01:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:602;a:8:{s:3:"sha";s:40:"4b4014fc26b96332f82cff0095864b30138ddfa5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:97:"Gained a lot of Performance ... +by replacing all outgoing PIC-Events with a idle Loop in the View";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-06 17:56:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:603;a:8:{s:3:"sha";s:40:"37220f1577eab28f824f6bb6315e5696cf00d2ed";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Added Call Stack";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-06 16:18:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:604;a:8:{s:3:"sha";s:40:"420b06aabdf1165986bb41f9960fe46473b21768";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"Added Linked Register (and bugfixes ...)";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-06 14:07:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:605;a:8:{s:3:"sha";s:40:"de9801dba8a2299da9992af5ff592252698b1ec8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Added 13Bit PC";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-06 13:16:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:606;a:8:{s:3:"sha";s:40:"722d9d04f56aa67ed905addb7cfd8be6bc13adf9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:20:"Added a few Commands";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-06 12:33:10";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:607;a:8:{s:3:"sha";s:40:"94f770aaef1654600fb12ca8fb98fd1c68f67488";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"Added fancy effects";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-05 19:57:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:608;a:8:{s:3:"sha";s:40:"8fd1e9251b9d86f576a88f4cc0f814b0acd6e281";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added a Cycle-Counter & Display";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-05 16:33:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:609;a:8:{s:3:"sha";s:40:"f63d48741ea26ac0e1ff76dc0901a128cb65689a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:38:"Added the GUI Code for the IO-Regsiter";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-05 15:02:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:610;a:8:{s:3:"sha";s:40:"8686481b2d692d9c1064d5af440818a45cb75764";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added a little bit of debugging";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-04 16:09:11";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:611;a:8:{s:3:"sha";s:40:"5b2014f8f58ad71d41e77d7e5af69638278d3025";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Improved GUI (Icons) + Added PC Display";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-04 09:43:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:612;a:8:{s:3:"sha";s:40:"7252452a358238568b9ec4616b3b903207daab44";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"A little bit of GUI";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-04 07:38:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:613;a:8:{s:3:"sha";s:40:"bd70e6e862b419b5e3bf597f25b5466bc20e3e78";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Implemented and ";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-03 20:44:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:614;a:8:{s:3:"sha";s:40:"04f8213daaae3e21f109dff2121ff03e1c92cfc7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"Added first test of Running";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-02 18:59:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:615;a:8:{s:3:"sha";s:40:"7c8364a67d67367d0e0677d085e33b8f2cd3dd6b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Added missing commands";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-02 16:43:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:616;a:8:{s:3:"sha";s:40:"40e296ec6e40b13acbe1e73e56e8dd796234e5e8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Added a few more CMDs";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-02 10:34:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:617;a:8:{s:3:"sha";s:40:"e971acbbb760134f2e90e2652b929438dd990c64";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:26:"Added IORegister Component";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-02 10:13:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:618;a:8:{s:3:"sha";s:40:"bf1ac352bf34dbae74ba9b21a32465b1d1e7babf";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:10:"Fixed Tabs";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-02 09:06:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:619;a:8:{s:3:"sha";s:40:"6ad6117920eb2a5ccefd786eb674ddfe27bb653d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Finished RegisterGrid";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-02 09:00:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:620;a:8:{s:3:"sha";s:40:"e45b91085d6ebceda14e7cf9956895930451103c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Added RegisterGrid";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-02 07:29:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:621;a:8:{s:3:"sha";s:40:"d4c7638522dabdedd0d8fd3399cc9a5a6767a5b6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"Added parsing of LST Files (not really fin)";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-01 12:39:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:622;a:8:{s:3:"sha";s:40:"334465d015982af6bf8cf9589c27436a2316f51d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Added Compiling";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-01 11:20:36";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:623;a:8:{s:3:"sha";s:40:"2820e202f75f02ca9722ab442e7eda4625c9b881";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:51:"Added rudimentary File Handling (Load/Save/New etc)";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-01 09:45:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:624;a:8:{s:3:"sha";s:40:"4844140cdd80ae3bb9a4b9f58b9ffe7927d389c9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:13:"Design mockup";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-31 10:01:29";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:625;a:8:{s:3:"sha";s:40:"f150fdb00f3eaa67db4978578af2a3d37957ede8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"Initial Structure Commit";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-31 09:16:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:626;a:8:{s:3:"sha";s:40:"788e3cca646d03494a001a33c7fd3b125de0cf0e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Initial commit";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-31 09:11:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:627;a:8:{s:3:"sha";s:40:"74bf2120fad6af019f74ee917b0ef087d63471a9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"Merge remote-tracking branch 'origin/master'";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-14 11:31:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:628;a:8:{s:3:"sha";s:40:"b57e84486a2dabebd4e108c0cbd2c2b32a19cc0b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"Added processed directory";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-14 11:31:07";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:629;a:8:{s:3:"sha";s:40:"0ab016ab5aa42b2bc0479111c336b8ef5a136b40";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [043]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-14 11:25:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:630;a:8:{s:3:"sha";s:40:"ca5edf6752f6881d2f80e1e583ebf8102dd5f5c9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Update README.md";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-14 08:58:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:631;a:8:{s:3:"sha";s:40:"0e40a8c534deb8a9338ac84763713e6e9d44895c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [042]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-12 17:23:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:632;a:8:{s:3:"sha";s:40:"0baea03fff2f58bc0dbe4a7775bef87eb7d7837c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [041]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-12 15:18:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:633;a:8:{s:3:"sha";s:40:"7ee29daa75d523f6f50b49b8a26e119102091477";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:71:"Updated Problem [015-old] (fixed tapelength was set to 3 instead of 20)";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-12 11:26:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:634;a:8:{s:3:"sha";s:40:"90d4e1577e9a62a1d5c194df2c42f40ea7e61b5e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Update README.md";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-28 00:44:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:635;a:8:{s:3:"sha";s:40:"e566bc56e9cfccf06ad69072c39b9d9341b31845";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"Updated Description of Problem [037]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-25 21:46:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:636;a:8:{s:3:"sha";s:40:"9024a5e62555702656ac49cd98170a05a74b8a6a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:20:"Updated descriptions";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-24 21:40:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:637;a:8:{s:3:"sha";s:40:"6263322f579051a1768e0e025f33a94286fe8e6b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Update README.md";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-24 17:04:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:638;a:8:{s:3:"sha";s:40:"c57f602bbd59651d7df118ea6a4e46f021138bac";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [040]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-24 17:03:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:639;a:8:{s:3:"sha";s:40:"54cb3349f9fe8d09889c1b4155bca25e850fe778";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [039]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-24 14:49:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:640;a:8:{s:3:"sha";s:40:"4b7db8c7cb1df7667f6e2e7ccca2ef8a40124c14";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [038]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-24 14:49:04";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:641;a:8:{s:3:"sha";s:40:"b5a7d3c8a9f6036e6fb53263919171820ea18d59";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [037]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-24 14:48:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:642;a:8:{s:3:"sha";s:40:"61af9c328f9e563cf0f937d643a8dbc514b16a46";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"Updated Description of Problem [035]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-24 14:48:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:643;a:8:{s:3:"sha";s:40:"e1f96ad17003730b90a1ccb69c974ef3bcc1eedd";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [036]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-23 17:10:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:644;a:8:{s:3:"sha";s:40:"7daba7980725f7395a5b32e8bfca38f083ce210a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [035]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-23 17:10:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:645;a:8:{s:3:"sha";s:40:"c89b7ccfe7591ea7b61f706ff8ed032e289deed7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [034]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-23 17:10:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:646;a:8:{s:3:"sha";s:40:"f73136318319c50f902d8a68f8a8987c400e504f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [033]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-22 17:00:31";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:647;a:8:{s:3:"sha";s:40:"9649ec5b03d8a9ac673d13d6c1641c5d570e644c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [032]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-22 17:00:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:648;a:8:{s:3:"sha";s:40:"8642fad6dde765e9e58e37f74d80a05bd5f711a5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Update README.md";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-21 10:57:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:649;a:8:{s:3:"sha";s:40:"d9597beb1b7344176fc85c26c969e9fc16ad29e8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [027]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-21 10:55:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:650;a:8:{s:3:"sha";s:40:"60ad41b3c084903df00a774460af935be8443752";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [029]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-20 10:59:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:651;a:8:{s:3:"sha";s:40:"59d8b2ba40dbb48e5d5fdcf7f942fedef6409a9b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [030]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-18 17:00:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:652;a:8:{s:3:"sha";s:40:"13d76ab793092528346e59c5e5c0a9e9d7939771";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [031]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-18 16:13:36";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:653;a:8:{s:3:"sha";s:40:"7edd88e849b792fde0b9f4cd8cd57c3886f91456";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [028]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-18 16:13:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:654;a:8:{s:3:"sha";s:40:"618fc0cade23833c6877d090603df39955375673";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [026]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-17 21:28:04";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:655;a:8:{s:3:"sha";s:40:"37759ec9e722335cfb40355319db1c9bcbc71ab6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"Updated descriptions & slightly formatted old code";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-17 20:36:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:656;a:8:{s:3:"sha";s:40:"f03974dd8c3440739af58a3a686b85e2d569b04e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [025]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-17 14:53:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:657;a:8:{s:3:"sha";s:40:"4e9f8a511a95e925892a5e4cb8dbeea4cef9613f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [023]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-16 20:59:04";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:658;a:8:{s:3:"sha";s:40:"d55d1365963df8ccaf81aa10f3814eb77a85defc";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [022]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-16 20:18:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:659;a:8:{s:3:"sha";s:40:"a28ef3e61e57ff2977d3dfcc77aa263b753864f7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Update README.md";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-16 15:46:04";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:660;a:8:{s:3:"sha";s:40:"2b4b96a78c8fe91c40b952c4db4a0e325f25ffba";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Publish on Github";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-16 15:34:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:661;a:8:{s:3:"sha";s:40:"fdfa8bf98240ab57fa8bae85e098addeebfad734";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [024]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-16 15:21:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:662;a:8:{s:3:"sha";s:40:"1a384ecbed29e0dd82af564277a98004dcfcd3da";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [021]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-15 19:39:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:663;a:8:{s:3:"sha";s:40:"58ffa4825847709e1f2f1001c4c14e567d98d369";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [020]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-14 14:39:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:664;a:8:{s:3:"sha";s:40:"da6d17f3e0261e9af172fc4e4f4d98bcb5096b5e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [019]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-14 13:09:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:665;a:8:{s:3:"sha";s:40:"477bfcd71552fefb3062a3c6300c2ca1abe2fa7c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"Added Description to Problem [018]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-13 14:32:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:666;a:8:{s:3:"sha";s:40:"2c185a9b123dadfed36c39dc3956c43763f706de";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [067]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-13 14:32:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:667;a:8:{s:3:"sha";s:40:"08607dc6bd3252bfff484ba710454f46ccca5990";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [018]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-13 12:08:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:668;a:8:{s:3:"sha";s:40:"922f291344f24e1486e79283a6a76405a5e085e5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Added Descriptions";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-12 22:53:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:669;a:8:{s:3:"sha";s:40:"84d9bda31f168643deb2b0c49042fe261f32317e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"Added Solution to Problem [012] v2";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-12 21:56:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:670;a:8:{s:3:"sha";s:40:"200c9f6d35ab7837844512537d111f35fce245e4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Updated .gitignore";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-12 21:56:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:671;a:8:{s:3:"sha";s:40:"15a15986fb08703dedf6c9d64e17636d6df642c2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"Added Solution to Problem [015] v2";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-12 18:48:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:672;a:8:{s:3:"sha";s:40:"ca3a31833c57825d93b9e016b78597bc95b39733";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [017]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-12 17:16:00";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:673;a:8:{s:3:"sha";s:40:"bf31b9d5666254e7d8129213297d34dc1202101c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [016]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-12 15:52:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:674;a:8:{s:3:"sha";s:40:"6a2b0b387892916ba91b059e3ede9c95b1c1449f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [015]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-11 15:26:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:675;a:8:{s:3:"sha";s:40:"21671f552d602c452ceed8327af35a463107f2cf";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [014]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-11 05:10:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:676;a:8:{s:3:"sha";s:40:"b9db0c180e5da75a4eccd4a449c9aff7421439a4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [013]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-11 05:08:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:677;a:8:{s:3:"sha";s:40:"6764fe25c55e2b0a2ef76897128349b3bbee94d1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [012]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-11 05:08:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:678;a:8:{s:3:"sha";s:40:"6b84bc6a52145200bde6c2225a330db111564c96";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [011]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-06 12:26:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:679;a:8:{s:3:"sha";s:40:"dac6fa1ab79f0fee8df929301c89d10ca4a64403";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [010]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-06 12:26:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:680;a:8:{s:3:"sha";s:40:"66022da4dca5889df4bad3cb799ec517c62ea58f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [009]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-06 12:26:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:681;a:8:{s:3:"sha";s:40:"69acd60104432dded2efe0f8d8baa955354a5dcf";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [008]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-06 12:26:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:682;a:8:{s:3:"sha";s:40:"0614ea2a23ce100f943dbd374c004a28e0daf2e1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [007]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-06 12:26:36";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:683;a:8:{s:3:"sha";s:40:"03e66e9ae5f775382560523999b2f7388986c5b0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [006]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-06 12:26:52";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:684;a:8:{s:3:"sha";s:40:"f41065e62b3eadd109bcbf874a592bb35fe423ef";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [005]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-06 12:26:41";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:685;a:8:{s:3:"sha";s:40:"5184a93d79265983fb8c5509127cb700879fc7ce";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [004]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-06 12:26:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:686;a:8:{s:3:"sha";s:40:"4f844a4a24de93f4f338d25aeb4a762c769190b5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [003]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-03 21:10:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:687;a:8:{s:3:"sha";s:40:"8b8390f84fa6a5a22dba6a70a28e6354a1619d2e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [002]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-03 20:03:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:688;a:8:{s:3:"sha";s:40:"06ae6c5f413bfd1afe5bb86db1bf2c3b8cfa9b67";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [001]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-03 19:27:36";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:689;a:8:{s:3:"sha";s:40:"78b273325282b39cc8b01d72944cd9b1c6e03a7b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Initial commit";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-02 16:17:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:690;a:8:{s:3:"sha";s:40:"d96c1693eea59b217bbdd9265b903d3ed69fedde";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"Updated to new AndroidStudio version";s:10:"repository";a:13:{s:2:"id";i:12468934;s:4:"name";s:18:"RaplaPreviewWidget";s:9:"full_name";s:28:"Mikescher/RaplaPreviewWidget";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/RaplaPreviewWidget";s:8:"language";s:4:"Java";s:8:"creation";r:217;s:4:"size";i:952;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/RaplaPreviewWidget/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-30 22:10:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:691;a:8:{s:3:"sha";s:40:"f587e62a2ea737435e06452f8e6f8902486a3546";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:99:"Fixed bug when the SSL certificate is outdated / invalid (F*** Rapla) [3rd try ... SmartGit fail ?]";s:10:"repository";a:13:{s:2:"id";i:12468934;s:4:"name";s:18:"RaplaPreviewWidget";s:9:"full_name";s:28:"Mikescher/RaplaPreviewWidget";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/RaplaPreviewWidget";s:8:"language";s:4:"Java";s:8:"creation";r:217;s:4:"size";i:952;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/RaplaPreviewWidget/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-03 14:44:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:692;a:8:{s:3:"sha";s:40:"b70b04ed237adf77270ac4ec12a270a9ddcb1fcb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:56:"Added more Output and fixed config on Laptop (hopefully)";s:10:"repository";a:13:{s:2:"id";i:12468934;s:4:"name";s:18:"RaplaPreviewWidget";s:9:"full_name";s:28:"Mikescher/RaplaPreviewWidget";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/RaplaPreviewWidget";s:8:"language";s:4:"Java";s:8:"creation";r:217;s:4:"size";i:952;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/RaplaPreviewWidget/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-30 09:05:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:693;a:8:{s:3:"sha";s:40:"f3bad6addb0045796e19d21570e9da5d5b42e192";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Fixed Regexes with new Rapla Layout";s:10:"repository";a:13:{s:2:"id";i:12468934;s:4:"name";s:18:"RaplaPreviewWidget";s:9:"full_name";s:28:"Mikescher/RaplaPreviewWidget";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/RaplaPreviewWidget";s:8:"language";s:4:"Java";s:8:"creation";r:217;s:4:"size";i:952;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/RaplaPreviewWidget/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-13 15:52:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:694;a:8:{s:3:"sha";s:40:"f4443711bae8152143e6af4358796f9714d2708c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:131:"Added missing but planned features +Show seeking value on Updating +Added AlarmManager (untested) to the startTime of the next Event";s:10:"repository";a:13:{s:2:"id";i:12468934;s:4:"name";s:18:"RaplaPreviewWidget";s:9:"full_name";s:28:"Mikescher/RaplaPreviewWidget";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/RaplaPreviewWidget";s:8:"language";s:4:"Java";s:8:"creation";r:217;s:4:"size";i:952;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/RaplaPreviewWidget/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-07 14:14:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:695;a:8:{s:3:"sha";s:40:"367537c0e93fc569aeaf23f13243cdc04f38f6a3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Update README.md";s:10:"repository";a:13:{s:2:"id";i:12468934;s:4:"name";s:18:"RaplaPreviewWidget";s:9:"full_name";s:28:"Mikescher/RaplaPreviewWidget";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/RaplaPreviewWidget";s:8:"language";s:4:"Java";s:8:"creation";r:217;s:4:"size";i:952;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/RaplaPreviewWidget/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-02 05:40:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:696;a:8:{s:3:"sha";s:40:"7f836dfe0d439cb174af1b1f7d9bcefdb362645f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Bugfixes for Handy +Bigger Reload Button";s:10:"repository";a:13:{s:2:"id";i:12468934;s:4:"name";s:18:"RaplaPreviewWidget";s:9:"full_name";s:28:"Mikescher/RaplaPreviewWidget";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/RaplaPreviewWidget";s:8:"language";s:4:"Java";s:8:"creation";r:217;s:4:"size";i:952;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/RaplaPreviewWidget/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-01 21:25:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:697;a:8:{s:3:"sha";s:40:"1c84be6bcdc2d2b042cdc920cc136172d0a3d457";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:48:"Fixed Bugs (No weekday set) +Better Error Display";s:10:"repository";a:13:{s:2:"id";i:12468934;s:4:"name";s:18:"RaplaPreviewWidget";s:9:"full_name";s:28:"Mikescher/RaplaPreviewWidget";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/RaplaPreviewWidget";s:8:"language";s:4:"Java";s:8:"creation";r:217;s:4:"size";i:952;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/RaplaPreviewWidget/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-01 19:39:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:698;a:8:{s:3:"sha";s:40:"3af848b6e3db6fb9c358f949595971c8e0b08a09";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:169:"Feature Complete +Added Preview Image +Added App Icon +Implement HTML-Parsing +Implement Button Listener +java's Calendar class sucks +Added Reload Function +Added Helper class";s:10:"repository";a:13:{s:2:"id";i:12468934;s:4:"name";s:18:"RaplaPreviewWidget";s:9:"full_name";s:28:"Mikescher/RaplaPreviewWidget";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/RaplaPreviewWidget";s:8:"language";s:4:"Java";s:8:"creation";r:217;s:4:"size";i:952;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/RaplaPreviewWidget/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-01 19:25:07";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:699;a:8:{s:3:"sha";s:40:"bf7b137d8f3a18544e674476cdd2201bacd19eb4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"Created Widget Layout (xml)";s:10:"repository";a:13:{s:2:"id";i:12468934;s:4:"name";s:18:"RaplaPreviewWidget";s:9:"full_name";s:28:"Mikescher/RaplaPreviewWidget";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/RaplaPreviewWidget";s:8:"language";s:4:"Java";s:8:"creation";r:217;s:4:"size";i:952;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/RaplaPreviewWidget/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-31 22:02:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:700;a:8:{s:3:"sha";s:40:"91e574f05902500bfa151e17e8d2d1b82eacce6f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Added Getting and Parsing for RaplaData";s:10:"repository";a:13:{s:2:"id";i:12468934;s:4:"name";s:18:"RaplaPreviewWidget";s:9:"full_name";s:28:"Mikescher/RaplaPreviewWidget";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/RaplaPreviewWidget";s:8:"language";s:4:"Java";s:8:"creation";r:217;s:4:"size";i:952;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/RaplaPreviewWidget/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-30 18:55:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:701;a:8:{s:3:"sha";s:40:"1e4a6633c4a2396227544641d47d00d3293fe41f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Updated gitignore";s:10:"repository";a:13:{s:2:"id";i:12468934;s:4:"name";s:18:"RaplaPreviewWidget";s:9:"full_name";s:28:"Mikescher/RaplaPreviewWidget";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/RaplaPreviewWidget";s:8:"language";s:4:"Java";s:8:"creation";r:217;s:4:"size";i:952;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/RaplaPreviewWidget/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-30 18:54:11";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:702;a:8:{s:3:"sha";s:40:"6bacc4481282b083d6f44dfd8f062d73fe2a873f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:9:"Build APK";s:10:"repository";a:13:{s:2:"id";i:12468934;s:4:"name";s:18:"RaplaPreviewWidget";s:9:"full_name";s:28:"Mikescher/RaplaPreviewWidget";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/RaplaPreviewWidget";s:8:"language";s:4:"Java";s:8:"creation";r:217;s:4:"size";i:952;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/RaplaPreviewWidget/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-29 19:43:11";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:703;a:8:{s:3:"sha";s:40:"f2349891925cbad7fea242a0e4a3d6db8a472873";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Successfully compiled";s:10:"repository";a:13:{s:2:"id";i:12468934;s:4:"name";s:18:"RaplaPreviewWidget";s:9:"full_name";s:28:"Mikescher/RaplaPreviewWidget";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/RaplaPreviewWidget";s:8:"language";s:4:"Java";s:8:"creation";r:217;s:4:"size";i:952;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/RaplaPreviewWidget/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-29 19:42:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:704;a:8:{s:3:"sha";s:40:"3e7aea3b81137c484f9a75aae743cf41ab532f97";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"Example Widget (shows time)";s:10:"repository";a:13:{s:2:"id";i:12468934;s:4:"name";s:18:"RaplaPreviewWidget";s:9:"full_name";s:28:"Mikescher/RaplaPreviewWidget";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/RaplaPreviewWidget";s:8:"language";s:4:"Java";s:8:"creation";r:217;s:4:"size";i:952;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/RaplaPreviewWidget/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-29 19:31:31";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:705;a:8:{s:3:"sha";s:40:"c8041fae1aee15c238e84746633923635538e2f5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Initial commit";s:10:"repository";a:13:{s:2:"id";i:12468934;s:4:"name";s:18:"RaplaPreviewWidget";s:9:"full_name";s:28:"Mikescher/RaplaPreviewWidget";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/RaplaPreviewWidget";s:8:"language";s:4:"Java";s:8:"creation";r:217;s:4:"size";i:952;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/RaplaPreviewWidget/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-29 19:17:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:706;a:8:{s:3:"sha";s:40:"95d6d13c75aba0e55d693412ade5c267521c6637";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"Updated gitignore and Compiled Exe";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-09 06:47:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:707;a:8:{s:3:"sha";s:40:"996263fa8542370c103ae3b937137fdad5814abd";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Fixed FPS Drops 4 loooong Snake";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-26 19:46:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:708;a:8:{s:3:"sha";s:40:"112a31281ed013ab1017d421ceb102ab18446280";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Added FPS Limiter";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-26 18:36:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:709;a:8:{s:3:"sha";s:40:"82929a5cc5f0c7fd8367ee2c33f39688d3c46d2d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"NO MOAR WARNINGS \(^o^)/";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-26 15:19:21";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:710;a:8:{s:3:"sha";s:40:"78c7f89cce72ef8c17e98dd42513545eee15c434";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"Fixed corrupted Filter File";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-26 15:07:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:711;a:8:{s:3:"sha";s:40:"e6494ab184e4616f77c7acf36e258298476b50b3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:107:"Merge branch 'origin/CrazyMode' + +Conflicts: + .gitignore + Release/Serpilicum.exe + Serpilicum.vcxproj.filters";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-26 14:59:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:712;a:8:{s:3:"sha";s:40:"495a2d3eb6fb473f6ddfc455de5d6f677008b31a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"All Highscores are no in 1 File";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-26 14:51:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:713;a:8:{s:3:"sha";s:40:"5a80848806cad9cbb2344fa6449a39c3ba5f3419";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Added Menus 4 all Highscores";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-26 14:32:04";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:714;a:8:{s:3:"sha";s:40:"65a5de2ad562fe47af0a4fc20a4e76739e1203d7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"Added HideConsole Option";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-26 12:01:11";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:715;a:8:{s:3:"sha";s:40:"d7e9c59cc1e7dc2d34936c2fe1514957165ac185";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:42:"Added Border around Crazymode - Fixed Bugs";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-26 11:56:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:716;a:8:{s:3:"sha";s:40:"c867652758978828807ad40a0e9857ab1f5e37d7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Crazy Mode is now really crazy ;)";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-26 08:46:46";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:717;a:8:{s:3:"sha";s:40:"71487926af9a65956effcc449b1023d284f26fa1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:52:"Removed Highscore Files from Repository & Fixed Typo";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-25 19:39:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:718;a:8:{s:3:"sha";s:40:"96e26d640cb7e6d7d618fc7da30a38053f1c22a1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:41:"CrazyConsole works now exactly as OGL one";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-25 19:37:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:719;a:8:{s:3:"sha";s:40:"5991cdf1b2b0158baf8923f4ce09fc89d8e89404";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:54:"Started Coding for CrazyMode (needs proper OGL ThingZ)";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-25 16:30:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:720;a:8:{s:3:"sha";s:40:"475a4c3b20b475a3c45fabae60c791df6d7d19b1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Fixed choosen game mode in GMCM";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-21 12:28:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:721;a:8:{s:3:"sha";s:40:"ae8b42d9362293bd3f440f00f35f6e5528bd4693";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Added PointDisplay";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-21 12:13:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:722;a:8:{s:3:"sha";s:40:"8b28affac580b6749d753253a835573a9dd44f87";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"Added NAme for OPtionMenu";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-21 11:35:48";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:723;a:8:{s:3:"sha";s:40:"b2936025da766208ab91467f38804c675154f6dd";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:32:"ADded Transistion Effect for CGM";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-21 11:33:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:724;a:8:{s:3:"sha";s:40:"def9af2380f84dcd7b3f575a4d0b3dd93eb0128d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"Added Gamemodes (FÜANF)";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-20 22:15:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:725;a:8:{s:3:"sha";s:40:"f3abe5a23d1e077f96c8303cd24c3682a7d35e5b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Deleete temp files";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-19 10:44:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:726;a:8:{s:3:"sha";s:40:"ade0322a7006f60e29a2ef600b0b5a538462de7e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"Addde GameModeChooseMenu";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-19 10:42:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:727;a:8:{s:3:"sha";s:40:"de080329aed9123cf0d75d93fa2df34bc773953b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:64:"Merge branch 'master' of https://github.com/Mikescher/Serpilicum";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-19 09:08:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:728;a:8:{s:3:"sha";s:40:"c420d3c553fbdc534e16e1ba86aebe625e2b91ae";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:37:"Resolved Test Conflicts (with kdiff3)";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-19 09:07:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:729;a:8:{s:3:"sha";s:40:"800e0274da6dc99978203f319b989f22e3536a5e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:5:"test2";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-19 08:38:47";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:730;a:8:{s:3:"sha";s:40:"781a9bd0d14fac72e615f622d0733f6a44d06306";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Added Mergetool kdiff3";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-19 08:32:31";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:731;a:8:{s:3:"sha";s:40:"092aff44b7178bc9c8612a8835f007c0fc3d89c5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:13:"Merged thingZ";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-19 08:24:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:732;a:8:{s:3:"sha";s:40:"50c5f831b0d34f75ee09743771048344cedd7a12";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:10:"Did things";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-19 08:21:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:733;a:8:{s:3:"sha";s:40:"4dac567f14224e8ccbf4be5e8c5e9039cf995206";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Fixed Highscore == -1";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-18 18:12:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:734;a:8:{s:3:"sha";s:40:"c3975932262fd03d8b3ed983e3ba90e9bc9bea70";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Fixed Powerup spawning";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-18 16:08:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:735;a:8:{s:3:"sha";s:40:"bff96d3ef80de7946040b77f301d5eb04954fe19";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Added SplashScreen";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-18 13:32:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:736;a:8:{s:3:"sha";s:40:"4543c9e3d6a019791082b6b672679e257741b269";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"Merge branches (the -f stands for FUCK YOU)";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-18 12:32:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:737;a:8:{s:3:"sha";s:40:"22f5a58ace418597f5d4c83a5e5fd893dc6c094c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"Added GameOver Page";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-18 12:24:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:738;a:8:{s:3:"sha";s:40:"072e388f028a7ed6551ee9383a1e90c1c9a2f480";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Updated Filter";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-18 11:15:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:739;a:8:{s:3:"sha";s:40:"6f7e04631bc2de96589c5990081597f2fa7642d1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:64:"Merge branch 'master' of https://github.com/Mikescher/Serpilicum";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-18 10:54:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:740;a:8:{s:3:"sha";s:40:"287cc82949d880155028e58c597352615a439f29";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Added Cheats + Shards";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-18 10:53:47";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:741;a:8:{s:3:"sha";s:40:"077277cc24c5797cdbd5f89ed44f43a4b3517af0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"AddeAdded Zo00onO0om PowerUp";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-17 18:55:36";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:742;a:8:{s:3:"sha";s:40:"cf741eb0cc55550c2c83d49ea9b0cb07446fd5df";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:64:"Added Edit:Backspace + Better Edit Design + Better Button Design";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-17 15:26:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:743;a:8:{s:3:"sha";s:40:"2e69df245c23482d40b80eb59479610ed03a0192";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:64:"Merge branch 'master' of https://github.com/Mikescher/Serpilicum";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-17 15:05:21";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:744;a:8:{s:3:"sha";s:40:"08249336d3101de1c36853ff06684fb9fa010eb3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"Added Snakeparts and Death Animation";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-17 15:05:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:745;a:8:{s:3:"sha";s:40:"a395dd463ffd6bc719550d0dc080d12fc038db13";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Added Effects for Auto";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-16 19:58:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:746;a:8:{s:3:"sha";s:40:"0639b235db16218c4644fabdaeb3a856f0d0726f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Added AutoPowerUp";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-16 18:45:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:747;a:8:{s:3:"sha";s:40:"c7131c352ab2da253fe27ba95c7887739f8c3551";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"OGLC Header updated";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-15 14:54:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:748;a:8:{s:3:"sha";s:40:"d020a1533511b98501cef283b1404c209280cd6b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:179:"Bitmap Resources for OGL + +FUCKING C++ CRAP WITH NO GODDAMN METHODS OR INTERFACE FOR SUCH EASY +BULLSHIT LIKE LOADING A BULLSHIT RESOURCE +NOOOOO I DONT WANT A TUTORIAL IN GODDAMN C#";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-15 14:53:54";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:749;a:8:{s:3:"sha";s:40:"cedfe9bcbc14cc7dcd241aadb2a7dfa785df51ca";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"Updated errrmm things....";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-14 08:56:46";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:750;a:8:{s:3:"sha";s:40:"77ff9ffcb4944a45fb1def9167813d2b296095f8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:37:"Improved Pathfinding for NP-Not found";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-14 07:08:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:751;a:8:{s:3:"sha";s:40:"06d589e73614a97e5669c3729288b6a266913912";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:169:"Improved (and finished) Pathfinding for all Situations + +- Infinite Field +- Self Bite +- No Path found +- Bit verhindern (high priority) +- Radom Target wenn nearest failed";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-13 22:35:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:752;a:8:{s:3:"sha";s:40:"a2eb30ecbe9ded1eb36ec058061ff28f7fda0087";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:42:"Fixed MSVCP / MSVCR Error (\MD is now \MT)";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-13 20:26:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:753;a:8:{s:3:"sha";s:40:"2b9582121de2e8349f00892e1325c7d59573018f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"Fixed FPS Drop && Compile Warnings";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-13 19:56:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:754;a:8:{s:3:"sha";s:40:"6702430c85455089aab818c333454d9a8ae1ac79";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Removed Debug exe";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-13 19:08:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:755;a:8:{s:3:"sha";s:40:"6b439a07a8f8c047db51fa12ed1ea021d71e6487";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:20:"Updated da gitignore";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-13 19:07:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:756;a:8:{s:3:"sha";s:40:"2da0192e9b395c0b029d45877b1afdc9faac3ed4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:45:"Removed dat crappy Garbage from da Repository";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-13 18:53:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:757;a:8:{s:3:"sha";s:40:"6052b3f5b396db1f3d8523813d13ce7336591a15";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:26:"Added Pathfinding 'n' shit";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-13 18:50:52";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:758;a:8:{s:3:"sha";s:40:"c3d4506677eb40536ce45f9f5eb059e91c321244";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Added FPS Display";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-13 14:36:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:759;a:8:{s:3:"sha";s:40:"12b34fd32ee5ee52a979fcf39241dd0e4c31390a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:37:"Updated Gitignore to work with GitEye";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-12 18:58:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:760;a:8:{s:3:"sha";s:40:"e495c62792f6b72b7cd7d86ba3cbd3351e40e506";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Fixed KeyEvents in OGLConsole";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-12 12:57:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:761;a:8:{s:3:"sha";s:40:"615dcae5928bbab3b098219f068dffc9d355637a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"OpenGL is kinda working now";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-12 12:28:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:762;a:8:{s:3:"sha";s:40:"21d6e0ad1d7d28469ebaa3a341d5498a99d77e73";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:26:"Fixed Errors after merging";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-12 08:52:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:763;a:8:{s:3:"sha";s:40:"9f4e5e68402ee215e48e0abc2a32dffc9d95fcc5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:23:"Merge branch 'LinuxOGL'";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-12 08:43:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:764;a:8:{s:3:"sha";s:40:"eb079c9b2c17270bee1221d9599de7d0db431d09";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Fixed Files for Merge";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-12 08:43:41";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:765;a:8:{s:3:"sha";s:40:"697c9a3073c9edd4fa678a6cfca547c235e2a3ab";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Moved Srand to Console";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-12 07:49:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:766;a:8:{s:3:"sha";s:40:"7c17722aa6943917f788a849698df815035f96a2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Fixed KeyEvents";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-12 07:31:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:767;a:8:{s:3:"sha";s:40:"a0edb70eb0a22d53ddf5f87bc297f30a36e4e5af";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Added OGLConsole";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-11 22:05:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:768;a:8:{s:3:"sha";s:40:"f9160041ae5bdb89df8162994992b9f3a5ae2c09";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"Moved Files to src-Folder, Added OGL-Classes";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-11 21:11:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:769;a:8:{s:3:"sha";s:40:"bf245b546932466e6b981e91001bf1a3ee52ca14";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Added Abstract Console";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-11 15:33:21";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:770;a:8:{s:3:"sha";s:40:"2d991e1805b7c4f345a4a94549946473e0e52246";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:13:"Random Things";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-11 13:25:34";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:771;a:8:{s:3:"sha";s:40:"edcee9738442af3b8b48e2a393f26a0bf725027b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Alot of everything";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-11 12:22:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:772;a:8:{s:3:"sha";s:40:"c6f0dbd1d8611c4a8d7b1a9197ca4f5097760c14";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Added virtual to derm destructorZ";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-04 13:17:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:773;a:8:{s:3:"sha";s:40:"d10342ed373ba2eec83a8a52b23b2a535cd39e27";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:47:"Added various Snake Things + +Code and other shit";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-04 12:31:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:774;a:8:{s:3:"sha";s:40:"5e990667860738b2067bd59d88fe13f8e2001dc8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:87:"Finished SNake, Snake Element, Game, Level. Added PowerUps, PowerUpList,, HealthPowerup";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-28 17:23:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:775;a:8:{s:3:"sha";s:40:"734a654e553ad92f4f6e171b58229aede001646a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Added DoubleBuffered Console";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-21 13:06:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:776;a:8:{s:3:"sha";s:40:"34a2ceff7d188e96bcdfce8cb32ebdeec61c6160";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Initial VS Commit";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-21 07:16:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:777;a:8:{s:3:"sha";s:40:"e75cf10cd0680af86c0361168975250f881f1357";s:11:"author_name";s:9:"Mikescher";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Initial commit";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-17 12:10:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:778;a:8:{s:3:"sha";s:40:"a6238905ec144a71aa146e02bd10b032bd0354fe";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:23:"Added missing namespace";s:10:"repository";a:13:{s:2:"id";i:11131546;s:4:"name";s:8:"SharkSim";s:9:"full_name";s:18:"Mikescher/SharkSim";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/SharkSim";s:8:"language";s:1:"C";s:8:"creation";r:268;s:4:"size";i:98732;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/SharkSim/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-12 08:51:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:779;a:8:{s:3:"sha";s:40:"9fe763cb08aa9d83ae4616f422ce445ba65eb8c6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"print Settings on Startup";s:10:"repository";a:13:{s:2:"id";i:11131546;s:4:"name";s:8:"SharkSim";s:9:"full_name";s:18:"Mikescher/SharkSim";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/SharkSim";s:8:"language";s:1:"C";s:8:"creation";r:268;s:4:"size";i:98732;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/SharkSim/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-12 08:45:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:780;a:8:{s:3:"sha";s:40:"e6a2f4f578dbacab6db5ee6832ba27251e5316c2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Added Percentage to Settings";s:10:"repository";a:13:{s:2:"id";i:11131546;s:4:"name";s:8:"SharkSim";s:9:"full_name";s:18:"Mikescher/SharkSim";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/SharkSim";s:8:"language";s:1:"C";s:8:"creation";r:268;s:4:"size";i:98732;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/SharkSim/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-12 08:24:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:781;a:8:{s:3:"sha";s:40:"bc7b61b74cdbd1f67463cd9db2362f425400b149";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:76:"Added Step-By-Step Sim +Moved Constants to const +Randomized values on Map Gen";s:10:"repository";a:13:{s:2:"id";i:11131546;s:4:"name";s:8:"SharkSim";s:9:"full_name";s:18:"Mikescher/SharkSim";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/SharkSim";s:8:"language";s:1:"C";s:8:"creation";r:268;s:4:"size";i:98732;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/SharkSim/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-12 08:12:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:782;a:8:{s:3:"sha";s:40:"af93628a911e18ee7f6cf9a260468243fb460833";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Pause on Space";s:10:"repository";a:13:{s:2:"id";i:11131546;s:4:"name";s:8:"SharkSim";s:9:"full_name";s:18:"Mikescher/SharkSim";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/SharkSim";s:8:"language";s:1:"C";s:8:"creation";r:268;s:4:"size";i:98732;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/SharkSim/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-11 16:18:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:783;a:8:{s:3:"sha";s:40:"5279248e9463c0de911afce08fa3b9ed76a3f412";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:23:"Reset Map on SpaceClick";s:10:"repository";a:13:{s:2:"id";i:11131546;s:4:"name";s:8:"SharkSim";s:9:"full_name";s:18:"Mikescher/SharkSim";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/SharkSim";s:8:"language";s:1:"C";s:8:"creation";r:268;s:4:"size";i:98732;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/SharkSim/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-11 13:10:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:784;a:8:{s:3:"sha";s:40:"b65683efb2d39eaf6469b3a4cdbeb478b837b7d0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Only Show Graph when pressing TAB";s:10:"repository";a:13:{s:2:"id";i:11131546;s:4:"name";s:8:"SharkSim";s:9:"full_name";s:18:"Mikescher/SharkSim";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/SharkSim";s:8:"language";s:1:"C";s:8:"creation";r:268;s:4:"size";i:98732;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/SharkSim/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-09 08:57:36";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:785;a:8:{s:3:"sha";s:40:"972091f0aee8ef35d677aa09cb21cb32ae607abd";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Added Graph for Fishes and Sharks";s:10:"repository";a:13:{s:2:"id";i:11131546;s:4:"name";s:8:"SharkSim";s:9:"full_name";s:18:"Mikescher/SharkSim";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/SharkSim";s:8:"language";s:1:"C";s:8:"creation";r:268;s:4:"size";i:98732;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/SharkSim/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-08 20:40:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:786;a:8:{s:3:"sha";s:40:"1caf16851c706bb962091fab29ef8153755f4460";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"Multicore / Multithread FTW";s:10:"repository";a:13:{s:2:"id";i:11131546;s:4:"name";s:8:"SharkSim";s:9:"full_name";s:18:"Mikescher/SharkSim";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/SharkSim";s:8:"language";s:1:"C";s:8:"creation";r:268;s:4:"size";i:98732;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/SharkSim/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-08 10:49:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:787;a:8:{s:3:"sha";s:40:"a18eaa1340ea53529378f5d9425a279d6f291dc8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Simulation works";s:10:"repository";a:13:{s:2:"id";i:11131546;s:4:"name";s:8:"SharkSim";s:9:"full_name";s:18:"Mikescher/SharkSim";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/SharkSim";s:8:"language";s:1:"C";s:8:"creation";r:268;s:4:"size";i:98732;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/SharkSim/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-07 15:00:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:788;a:8:{s:3:"sha";s:40:"b5c8ab4c462818393b816627db081cf8ec3caba5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"It now renders Pixel YoY +Added WatorMap";s:10:"repository";a:13:{s:2:"id";i:11131546;s:4:"name";s:8:"SharkSim";s:9:"full_name";s:18:"Mikescher/SharkSim";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/SharkSim";s:8:"language";s:1:"C";s:8:"creation";r:268;s:4:"size";i:98732;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/SharkSim/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-05 12:45:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:789;a:8:{s:3:"sha";s:40:"ee933ef037703119f689c0490a9ed29c2d123c70";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:60:"Fixed strange VisualStudio things (compiled only on RELEASE)";s:10:"repository";a:13:{s:2:"id";i:11131546;s:4:"name";s:8:"SharkSim";s:9:"full_name";s:18:"Mikescher/SharkSim";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/SharkSim";s:8:"language";s:1:"C";s:8:"creation";r:268;s:4:"size";i:98732;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/SharkSim/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-03 07:51:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:790;a:8:{s:3:"sha";s:40:"f63a1ed8f74822e40380bb996c66793b9b8d2e6a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"Initial commit (Colorful OGL Quad)";s:10:"repository";a:13:{s:2:"id";i:11131546;s:4:"name";s:8:"SharkSim";s:9:"full_name";s:18:"Mikescher/SharkSim";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/SharkSim";s:8:"language";s:1:"C";s:8:"creation";r:268;s:4:"size";i:98732;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/SharkSim/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-02 18:21:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:791;a:8:{s:3:"sha";s:40:"6f66c74df4b17bfd4de234af07284d896316d816";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Initial commit";s:10:"repository";a:13:{s:2:"id";i:11131546;s:4:"name";s:8:"SharkSim";s:9:"full_name";s:18:"Mikescher/SharkSim";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/SharkSim";s:8:"language";s:1:"C";s:8:"creation";r:268;s:4:"size";i:98732;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/SharkSim/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-02 18:12:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:792;a:8:{s:3:"sha";s:40:"449f23a7b7cef2ac819bd1ffcc3a2c62e014515e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Directory fail ...";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-21 16:35:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:793;a:8:{s:3:"sha";s:40:"74db41306c1027b7fcfbcbc5b8444c4d476565aa";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:47:"##### RESTART ##### +Restart Project with Vaadis";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-21 16:06:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:794;a:8:{s:3:"sha";s:40:"f3b5410487a5714b8d9e7594f92b780f96950f24";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"Finished Use Case "Login"";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-23 13:08:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:795;a:8:{s:3:"sha";s:40:"820f9e0e08ea25bafda5d03b313b7ad51db0a421";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"COMPLETE REDONE WITH >>SpringMVC<<";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-20 12:52:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:796;a:8:{s:3:"sha";s:40:"addffcc82e762bfb7e7913590f1f3c503fcfedd9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Suppressed warnings in jQuery-UI.js";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-07 11:45:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:797;a:8:{s:3:"sha";s:40:"22932f15a1554ccaaa1ef311ad240a87d8f2081c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:48:"Fixed footerbox for style.css && style_boxed.css";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-02 13:35:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:798;a:8:{s:3:"sha";s:40:"187cbdf4afa897041dff386cfe6fa7ce429ccdf1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Added Footer from Timos style";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-02 13:30:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:799;a:8:{s:3:"sha";s:40:"a0338cca96097e909eaa790bd7f55b5d0d86077d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:62:"Moved Timos Design to style_boxed.css +Updated Login + Register";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-02 13:19:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:800;a:8:{s:3:"sha";s:40:"87325977b286437a81b7ff06fa4ecb172d3df2e7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"Readded newArticle.jsp from reverted commit";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-02 12:47:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:801;a:8:{s:3:"sha";s:40:"c18a3d6d8b9c8064de2fa1884105f70be003d1a5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:96:"Revert "mainframe / some changes" + +This reverts commit 6bd4878bf5aab6ef64971aeb799edc475bb1667d.";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-02 12:41:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:802;a:8:{s:3:"sha";s:40:"24b92532525d40fce08977cc9bbb16a70e3c9ce2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Conflict test 2";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-30 10:31:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:803;a:8:{s:3:"sha";s:40:"16481a45b059eb750b0e1f0b0bb914406a92a778";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:54:"Fixed sidebar clickable area not high enough (F** css)";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-29 22:58:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:804;a:8:{s:3:"sha";s:40:"23e4fdcc292da1bddfe49412e86850d9cbd5c8c6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:86:"Added new elements and styles to register Menu +Moved register scripts to external file";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-29 21:57:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:805;a:8:{s:3:"sha";s:40:"8c08297d7b5525f5e7575f91f76285cb069fb895";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:159:"Added Header + Sidebar +Alot of css magic ¯\_(ツ)_/¯ +Moved sidebar code -> sidebar.jsp +Moved header code -> header.jsp +Moved importlist -> commonimports.jsp";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-29 21:50:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:806;a:8:{s:3:"sha";s:40:"4378bc299ae52609f8ae97f737c861f9d0a8f33c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:197:"Added cheks to register frame +Added check for email +Added check for password equals +added check for empty fields +added check marks +added shake effect on failed check + +moved scripts to commonscripts";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-29 12:44:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:807;a:8:{s:3:"sha";s:40:"9e50cb16cbc49f71cca27fcc198e059f1bd42086";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"We will make confilcts :3";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-29 11:02:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:808;a:8:{s:3:"sha";s:40:"2143bfa12f0cac7097f9b46315645738e37b19e2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:277:"Many Things: (see below) 'v' +Cleaned up unused files +Added 2nd pw field (and js to show it when entering 1st) +Added password strength bar +proper use of jQuery everywhere +cleaned up css +fixed bugs in testpw +a little bit of refactoring around a few files +added temp. index file";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-28 22:13:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:809;a:8:{s:3:"sha";s:40:"7f55c37363b1bd05506a6264bf3a8dbecf713f2f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:52:"Fixed Formatting & wrong used id's && class/id names";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-28 20:06:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:810;a:8:{s:3:"sha";s:40:"50374403a88e5575435cd8b4d4192c98521c6a28";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Fixed merge artifacts";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-28 19:46:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:811;a:8:{s:3:"sha";s:40:"3598948562035b234501cb31fb1b5fadcc166fc9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added proper style for +
+ Update + + diff --git a/www/protected/views/msmain/admin_egh_ajaxReload.php b/www/protected/views/msmain/admin_egh_ajaxReload.php new file mode 100644 index 0000000..1e7e0dc --- /dev/null +++ b/www/protected/views/msmain/admin_egh_ajaxReload.php @@ -0,0 +1,20 @@ +addSecondaryUsername("Sam-Development"); + +$v->addSecondaryRepository("Anastron/ColorRunner"); + +//########################################################## + +$v->setToken(file_get_contents('api_token.secret')); +$v->collect(); + +//########################################################## + +$v->generateAndSave(); \ No newline at end of file diff --git a/www/protected/views/msmain/admin_egh_ajaxStatus.php b/www/protected/views/msmain/admin_egh_ajaxStatus.php new file mode 100644 index 0000000..f6b0024 --- /dev/null +++ b/www/protected/views/msmain/admin_egh_ajaxStatus.php @@ -0,0 +1,5 @@ +pageTitle = 'Update EGH - ' . Yii::app()->name; - -$this->breadcrumbs = - [ - 'Admin', - ]; - - -$v = new ExtendedGitGraph('Mikescher'); - -$v->setToken(MsHelper::getStringDBVar('egg_auth-token')); -$v->collect(); - -$v->generateAndSave(); - -$v->output_flushed('Generated and Finished'); - -$v->output_flushed('back'); \ No newline at end of file