changed repository url (#3708)

This commit is contained in:
Kevin Papst
2022-12-26 17:09:07 +01:00
committed by GitHub
parent 84cc65b008
commit 6a524f9f7c
18 changed files with 51 additions and 51 deletions

View File

@@ -17,11 +17,11 @@ class Constants
/**
* The current release version
*/
public const VERSION = '1.30.0';
public const VERSION = '1.30.1';
/**
* The current release: major * 10000 + minor * 100 + patch
*/
public const VERSION_ID = 13000;
public const VERSION_ID = 13001;
/**
* The current release status, either "stable" or "dev"
*/
@@ -37,7 +37,7 @@ class Constants
/**
* Used in multiple views
*/
public const GITHUB = 'https://github.com/kevinpapst/kimai2/';
public const GITHUB = 'https://github.com/kimai/kimai/';
/**
* Homepage, used in multiple views
*/

View File

@@ -42,7 +42,7 @@ class UserType extends AbstractType
// an array of users, which will always be included in the result list
// why? if the base entity could include disabled users, which should not be hidden in/removed from the list
// eg. when editing a team that has disabled users, these users would be removed silently
// see https://github.com/kevinpapst/kimai2/pull/1841
// see https://github.com/kimai/kimai/pull/1841
'include_users' => [],
'documentation' => [
'type' => 'integer',

View File

@@ -105,7 +105,7 @@ abstract class AbstractSpreadsheetRenderer extends AbstractRenderer
}
if ($contentLooksLikeFormula && $firstReplacerPos === 0) {
// see https://github.com/kevinpapst/kimai2/pull/2054
// see https://github.com/kimai/kimai/pull/2054
$cell->setValueExplicit($value, DataType::TYPE_STRING);
} else {
$cell->setValue($value);

View File

@@ -16,7 +16,7 @@ use Doctrine\DBAL\Schema\Schema;
/**
* Adds the timezone column to the timesheet table
* See https://github.com/kevinpapst/kimai2/pull/372 for further information.
* See https://github.com/kimai/kimai/pull/372 for further information.
*
* @version 0.8
*/

View File

@@ -27,7 +27,7 @@ final class Version20210802174320 extends AbstractMigration
public function up(Schema $schema): void
{
$teams = $schema->getTable('kimai2_teams');
// @see https://github.com/kevinpapst/kimai2/issues/2706
// @see https://github.com/kimai/kimai/issues/2706
if ($teams->hasForeignKey('FK_3BEDDC7F8F7DE5D7')) {
$teams->removeForeignKey('FK_3BEDDC7F8F7DE5D7');
}

View File

@@ -81,7 +81,7 @@ final class RateService implements RateServiceInterface
}
$factor = 1.00;
// do not apply once a value was calculated - see https://github.com/kevinpapst/kimai2/issues/1988
// do not apply once a value was calculated - see https://github.com/kimai/kimai/issues/1988
if ($record->getFixedRate() === null && $record->getHourlyRate() === null) {
$factor = $this->getRateFactor($record);
}