Move repository to Kanboard organization

This commit is contained in:
Frederic Guillot
2016-07-21 17:46:17 -04:00
parent 3dd20c9c78
commit df423ae4af
11 changed files with 15 additions and 15 deletions

View File

@@ -9,7 +9,7 @@ static:
archive: archive:
@ echo "Build archive: version=${version}, destination=${dst}" @ echo "Build archive: version=${version}, destination=${dst}"
@ rm -rf ${BUILD_DIR}/kanboard ${BUILD_DIR}/kanboard-*.zip @ rm -rf ${BUILD_DIR}/kanboard ${BUILD_DIR}/kanboard-*.zip
@ cd ${BUILD_DIR} && git clone --depth 1 -q https://github.com/fguillot/kanboard.git @ cd ${BUILD_DIR} && git clone --depth 1 -q https://github.com/kanboard/kanboard.git
@ cd ${BUILD_DIR}/kanboard && composer --prefer-dist --no-dev --optimize-autoloader --quiet install @ cd ${BUILD_DIR}/kanboard && composer --prefer-dist --no-dev --optimize-autoloader --quiet install
@ rm -rf ${BUILD_DIR}/kanboard/data/*.sqlite @ rm -rf ${BUILD_DIR}/kanboard/data/*.sqlite
@ rm -rf ${BUILD_DIR}/kanboard/data/*.log @ rm -rf ${BUILD_DIR}/kanboard/data/*.log

View File

@@ -15,16 +15,16 @@ Official website: <https://kanboard.net>
- Open source and self-hosted - Open source and self-hosted
- Super simple installation - Super simple installation
- Translated in many languages - Translated in many languages
- Distributed under [MIT License](https://github.com/fguillot/kanboard/blob/master/LICENSE) - Distributed under [MIT License](https://github.com/kanboard/kanboard/blob/master/LICENSE)
- The complete [list of features are available on the website](https://kanboard.net/features) - The complete [list of features are available on the website](https://kanboard.net/features)
- [Change Log](https://github.com/fguillot/kanboard/blob/master/ChangeLog) - [Change Log](https://github.com/kanboard/kanboard/blob/master/ChangeLog)
- [Documentation](https://github.com/fguillot/kanboard/blob/master/doc/index.markdown) - [Documentation](https://github.com/kanboard/kanboard/blob/master/doc/index.markdown)
Authors Authors
------- -------
- Main developer: [Frédéric Guillot](https://github.com/fguillot) - Main developer: [Frédéric Guillot](https://github.com/fguillot)
- [List of contributors](https://github.com/fguillot/kanboard/blob/master/CONTRIBUTORS.md) - [List of contributors](https://github.com/kanboard/kanboard/blob/master/CONTRIBUTORS.md)
Installation and Upgrade Installation and Upgrade
------------------------ ------------------------

View File

@@ -1,7 +1,7 @@
{ {
"name": "Kanboard", "name": "Kanboard",
"description": "Kanboard is a simple visual task board", "description": "Kanboard is a simple visual task board",
"repository": "https://github.com/fguillot/kanboard", "repository": "https://github.com/kanboard/kanboard",
"logo": "https://kanboard.net/assets/img/icon.svg", "logo": "https://kanboard.net/assets/img/icon.svg",
"keywords": ["kanboard", "kanban", "php", "agile"], "keywords": ["kanboard", "kanban", "php", "agile"],
"addons": ["heroku-postgresql:hobby-dev"] "addons": ["heroku-postgresql:hobby-dev"]

View File

@@ -9,7 +9,7 @@
</li> </li>
<li> <li>
<?= t('Author:') ?> <?= t('Author:') ?>
<strong>Frédéric Guillot</strong> (<a href="https://github.com/fguillot/kanboard/blob/master/CONTRIBUTORS.md" target="_blank"><?= t('contributors') ?></a>) <strong>Frédéric Guillot</strong> (<a href="https://github.com/kanboard/kanboard/blob/master/CONTRIBUTORS.md" target="_blank"><?= t('contributors') ?></a>)
</li> </li>
<li> <li>
<?= t('License:') ?> <?= t('License:') ?>

View File

@@ -93,4 +93,4 @@ References
- [Official Kanboard images](https://registry.hub.docker.com/u/kanboard/kanboard/) - [Official Kanboard images](https://registry.hub.docker.com/u/kanboard/kanboard/)
- [Docker documentation](https://docs.docker.com/) - [Docker documentation](https://docs.docker.com/)
- [Dockerfile stable version](https://github.com/kanboard/docker) - [Dockerfile stable version](https://github.com/kanboard/docker)
- [Dockerfile dev version](https://github.com/fguillot/kanboard/blob/master/Dockerfile) - [Dockerfile dev version](https://github.com/kanboard/kanboard/blob/master/Dockerfile)

View File

@@ -4,7 +4,7 @@ Deploy Kanboard on Heroku
You can try Kanboard for free on [Heroku](https://www.heroku.com/). You can try Kanboard for free on [Heroku](https://www.heroku.com/).
You can use this one click install button or follow the manual instructions below: You can use this one click install button or follow the manual instructions below:
[![Deploy](https://www.herokucdn.com/deploy/button.png)](https://heroku.com/deploy?template=https://github.com/fguillot/kanboard) [![Deploy](https://www.herokucdn.com/deploy/button.png)](https://heroku.com/deploy?template=https://github.com/kanboard/kanboard)
Requirements Requirements
------------ ------------
@@ -17,7 +17,7 @@ Manual instructions
```bash ```bash
# Get the last development version # Get the last development version
git clone https://github.com/fguillot/kanboard.git git clone https://github.com/kanboard/kanboard.git
cd kanboard cd kanboard
# Push the code to Heroku (You can also use SSH if git over HTTP doesn't work) # Push the code to Heroku (You can also use SSH if git over HTTP doesn't work)

View File

@@ -28,7 +28,7 @@ From the repository (development version)
You must install [composer](https://getcomposer.org/) to use this method. You must install [composer](https://getcomposer.org/) to use this method.
1. `git clone https://github.com/fguillot/kanboard.git` 1. `git clone https://github.com/kanboard/kanboard.git`
2. `composer install --no-dev` 2. `composer install --no-dev`
3. Go to the third step just above 3. Go to the third step just above

View File

@@ -35,6 +35,6 @@ This object must implement the interface `Kanboard\Core\User\UserProviderInterfa
Example of authentication plugins Example of authentication plugins
--------------------------------- ---------------------------------
- [Authentication providers included in Kanboard](https://github.com/fguillot/kanboard/tree/master/app/Auth) - [Authentication providers included in Kanboard](https://github.com/kanboard/kanboard/tree/master/app/Auth)
- [Reverse-Proxy Authentication with LDAP support](https://github.com/kanboard/plugin-reverse-proxy-ldap) - [Reverse-Proxy Authentication with LDAP support](https://github.com/kanboard/plugin-reverse-proxy-ldap)
- [SMS Two-Factor Authentication](https://github.com/kanboard/plugin-sms-2fa) - [SMS Two-Factor Authentication](https://github.com/kanboard/plugin-sms-2fa)

View File

@@ -52,4 +52,4 @@ $groupManager->register(new MyCustomLdapBackendGroupProvider($this->container));
Examples Examples
-------- --------
- [Group providers included in Kanboard (LDAP and Database)](https://github.com/fguillot/kanboard/tree/master/app/Group) - [Group providers included in Kanboard (LDAP and Database)](https://github.com/kanboard/kanboard/tree/master/app/Group)

View File

@@ -5,7 +5,7 @@ Note: The plugin API is **considered alpha** at the moment.
Plugins are useful to extend the core functionalities of Kanboard, adding features, creating themes or changing the default behavior. Plugins are useful to extend the core functionalities of Kanboard, adding features, creating themes or changing the default behavior.
Plugin creators should specify explicitly the compatible versions of Kanboard. Internal code of Kanboard may change over time and your plugin must be tested with new versions. Always check the [ChangeLog](https://github.com/fguillot/kanboard/blob/master/ChangeLog) for breaking changes. Plugin creators should specify explicitly the compatible versions of Kanboard. Internal code of Kanboard may change over time and your plugin must be tested with new versions. Always check the [ChangeLog](https://github.com/kanboard/kanboard/blob/master/ChangeLog) for breaking changes.
- [Creating your plugin](plugin-registration.markdown) - [Creating your plugin](plugin-registration.markdown)
- [Using plugin hooks](plugin-hooks.markdown) - [Using plugin hooks](plugin-hooks.markdown)

View File

@@ -10,7 +10,7 @@ Important things to do before updating
- **Always make a backup of your data before upgrading** - **Always make a backup of your data before upgrading**
- Check that your backup is valid - Check that your backup is valid
- Always read the [change log](https://github.com/fguillot/kanboard/blob/master/ChangeLog) to check for breaking changes - Always read the [change log](https://github.com/kanboard/kanboard/blob/master/ChangeLog) to check for breaking changes
- Always close all user sessions (flush all sessions on the server) - Always close all user sessions (flush all sessions on the server)
From the archive (stable version) From the archive (stable version)