diff --git a/CHANGELOG.md b/CHANGELOG.md index f13985ce..790df6b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,6 +23,8 @@ - Update ImportService, filter deleted posts from getImportedPosts endpoint ([10dd348c](https://github.com/pixelfed/pixelfed/commit/10dd348c)) - Update FixStatusCount, improve command and support remote count resync ([04f4f8ba](https://github.com/pixelfed/pixelfed/commit/04f4f8ba)) - Update StatusRemoteUpdatePipeline, fix missing mime and size attributes that cause empty media previews on our mobile app ([ea54413e](https://github.com/pixelfed/pixelfed/commit/ea54413e)) +- Update ComposeModal.vue, fix scroll issue and dont hide scrollbar ([2d959fb3](https://github.com/pixelfed/pixelfed/commit/2d959fb3)) +- Update AccountImport, add select first 100 posts button ([625a76a5](https://github.com/pixelfed/pixelfed/commit/625a76a5)) - ([](https://github.com/pixelfed/pixelfed/commit/)) ## [v0.11.8 (2023-05-29)](https://github.com/pixelfed/pixelfed/compare/v0.11.7...v0.11.8) diff --git a/public/js/account-import.js b/public/js/account-import.js index 8621685e..dede345a 100644 Binary files a/public/js/account-import.js and b/public/js/account-import.js differ diff --git a/public/js/compose.chunk.b06ad48bdb08a28c.js b/public/js/compose.chunk.6464688bf5b5ef97.js similarity index 57% rename from public/js/compose.chunk.b06ad48bdb08a28c.js rename to public/js/compose.chunk.6464688bf5b5ef97.js index 72c28cc8..5e132d12 100644 Binary files a/public/js/compose.chunk.b06ad48bdb08a28c.js and b/public/js/compose.chunk.6464688bf5b5ef97.js differ diff --git a/public/js/compose.js b/public/js/compose.js index 7401cd4b..9ef2d3e6 100644 Binary files a/public/js/compose.js and b/public/js/compose.js differ diff --git a/public/js/manifest.js b/public/js/manifest.js index 14dab025..7380d20e 100644 Binary files a/public/js/manifest.js and b/public/js/manifest.js differ diff --git a/public/mix-manifest.json b/public/mix-manifest.json index 8fb7730f..7874f175 100644 Binary files a/public/mix-manifest.json and b/public/mix-manifest.json differ diff --git a/resources/assets/components/AccountImport.vue b/resources/assets/components/AccountImport.vue index c7df9f1f..b669345d 100644 --- a/resources/assets/components/AccountImport.vue +++ b/resources/assets/components/AccountImport.vue @@ -105,6 +105,9 @@

Tap on posts to include them in your import.

{{ selectedPostsCounter }} posts selected for import

+ + +
@@ -590,6 +593,19 @@ window.location.href = '/site/contact' } }); + }, + + handleSelectAll() { + let medias = this.postMeta.slice(0, 100); + for (var i = medias.length - 1; i >= 0; i--) { + let m = medias[i]; + this.toggleSelectedPost(m); + } + }, + + handleClearAll() { + this.selectedMedia = [] + this.selectedPostsCounter = 0; } } } diff --git a/resources/assets/js/components/ComposeModal.vue b/resources/assets/js/components/ComposeModal.vue index 09cc0831..578679d3 100644 --- a/resources/assets/js/components/ComposeModal.vue +++ b/resources/assets/js/components/ComposeModal.vue @@ -193,7 +193,7 @@ class="list-group-item cursor-pointer" :class="{ 'text-primary': licenseId === item.id, - 'font-weight-bold': licenseId === item.id + 'font-weight-bold': licenseId === item.id }" @click="toggleLicense(item)"> {{item.name}} @@ -1884,13 +1884,9 @@ export default {