I think you may need to re-tag it in Composer after making the change. I'm still not seeing the update via composer update.
Share Social
- Edited
luceos JRay clicking update on packagist should be sufficient
Good to know. I hope my friend @BinhQuang clicks it.
BinhQuang Version in composer isn't needed.
just release a new version in github and update in packagist.
santiagobiali update in packagist.
...which you can configure to happen automatically whenever you push a commit or a tag.
Maybe one of you should be more specific
Bottomline:
- Do not set a version attribute in the composer.json of your package, because it will overrule any other method of setting the package version (eg by pushing a tag to github).
- Releasing a new version on github is by pushing a tag to your repository:
git tag 0.2.0 git push --tags
- If you want to have packagist automatically update your package:
- in your packagist.org profile click show api token copy the shown token
- in your github package settings page, click webhooks & services, add service. Search for packagist and click, under username fill in your packagist username, under token the previously copied token, leave domain empty ensure active is checked and add.
C'est ca.
Seems like your extension doesn't like the dark theme.
- Edited
EDIT: In response to posts since deleted.
Zelakto Tags, Sticky and Lock are core extensions for Flarum. What you've screenshotted doesn't relate to this extension as far as I can see. Maybe a bit more explanation could help us understand what you're pointing out?
jordanjay29 I installed the extension, and it works correctly. However when I go and use any drop menu, and loads them as white, not dark.
- Edited
EDIT: In response to posts since deleted.
Zelakto Hmm, are you sure it's this extension and not @Davis's Social Profile extension? I can confirm the problem with Davis' but not with this one.
Does the problem persist if you disable all extensions but this one (and your language)?
jordanjay29 You know what, you're right. The issue was caching, ugh. I deleted my posts because it doesn't affect this extension, sorry for the confusion.
Zelakto I would have left them, but no matter. I submitted the issue to Davis, and he'll likely see the tag as well.
Hello. Is it possible to add to share list social network VK.com ?
Holly cow...
POST https://xxx.xxxx/api/extensions/davis-socialprofile
<br />
<b>Fatal error</b>: Class 'Flarum\Database\AbstractMigration' not found in <b>/srv/users/serverpilot/apps/xxxx/public/vendor/davis/flarum-ext-socialprofile/migrations/2016_01_14_000000_create_socialbuttons_table.php</b> on line <b>4</b><br />
- Edited
I updated it by myself ? ?
Edit file: /vendor/davis/flarum-ext-socialprofile/migrations/2016_01_14_000000_create_socialbuttons_table.php
With:
<?php
namespace Davis\SocialProfile\Migration;
use Flarum\Database\Migration;
use Illuminate\Database\Schema\Blueprint;
return Migration::createTable(
'socialbuttons',
function (Blueprint $table) {
$table->increments('id');
$table->integer('user_id')->unsigned();
$table->longText('buttons');
}
);
Works perfect ?