diff --git a/config/pixelfed.php b/config/pixelfed.php index ffdd5b633..0717479d6 100644 --- a/config/pixelfed.php +++ b/config/pixelfed.php @@ -23,7 +23,7 @@ return [ | This value is the version of your PixelFed instance. | */ - 'version' => '0.1.4', + 'version' => '0.1.5', /* |-------------------------------------------------------------------------- diff --git a/database/migrations/2018_08_12_042648_update_status_table_change_caption_to_text.php b/database/migrations/2018_08_12_042648_update_status_table_change_caption_to_text.php new file mode 100644 index 000000000..caad9472b --- /dev/null +++ b/database/migrations/2018_08_12_042648_update_status_table_change_caption_to_text.php @@ -0,0 +1,38 @@ +getDatabasePlatform() + ->registerDoctrineTypeMapping('enum', 'string'); + } + + /** + * Run the migrations. + * + * @return void + */ + public function up() + { + Schema::table('statuses', function ($table) { + $table->text('caption')->change(); + $table->text('rendered')->change(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + // + } +} diff --git a/resources/assets/sass/custom.scss b/resources/assets/sass/custom.scss index 2957176f8..cb6394607 100644 --- a/resources/assets/sass/custom.scss +++ b/resources/assets/sass/custom.scss @@ -189,6 +189,10 @@ body, button, input, textarea { } @media (max-width: map-get($grid-breakpoints, "sm")) { + .card-md-border-0 { + border-width: 0!important; + border-radius: 0!important; + } .card-md-rounded-0 { border-width: 1px 0; border-radius:0 !important; @@ -289,4 +293,4 @@ details summary::-webkit-details-marker { .details-animated[open] > summary { display: none!important; -} \ No newline at end of file +} diff --git a/resources/views/discover/home.blade.php b/resources/views/discover/home.blade.php index 5bd9e3c3b..1995e2b5e 100644 --- a/resources/views/discover/home.blade.php +++ b/resources/views/discover/home.blade.php @@ -6,16 +6,16 @@

Discover People

@foreach($people as $profile) -
-
+
+
-

{{$profile->username}}

-

{{$profile->name}}

+

{{$profile->username}}

+

{{$profile->name}}