Merge pull request #2809 from pixelfed/staging

Staging
This commit is contained in:
daniel 2021-06-18 05:08:21 -06:00 committed by GitHub
commit e24c11c5ff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 1389 additions and 1379 deletions

View file

@ -19,6 +19,7 @@
- Updated RemoteProfile component, implement pagination. ([02b04a4b](https://github.com/pixelfed/pixelfed/commit/02b04a4b))
- Updated AP Helpers, generate notification for remote replies. ([8edd8294](https://github.com/pixelfed/pixelfed/commit/8edd8294))
- Updated like api, store status_profile_id and is_comment. ([c8c6b983](https://github.com/pixelfed/pixelfed/commit/c8c6b983))
- Updated Remote Post + Profile hashtag to redirect to local urls. ([1fa08644](https://github.com/pixelfed/pixelfed/commit/1fa08644))
- ([](https://github.com/pixelfed/pixelfed/commit/))
## [v0.11.0 (2021-06-01)](https://github.com/pixelfed/pixelfed/compare/v0.10.10...v0.11.0)

BIN
public/js/rempos.js vendored

Binary file not shown.

BIN
public/js/rempro.js vendored

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -591,6 +591,9 @@ export default {
if(this.showReadMore == true) {
window.pixelfed.readmore();
}
document.querySelectorAll('.hashtag').forEach(function(i, e) {
i.href = App.util.format.rewriteLinks(i);
});
},
methods: {

View file

@ -227,6 +227,12 @@
this.fetchProfile();
},
updated() {
document.querySelectorAll('.hashtag').forEach(function(i, e) {
i.href = App.util.format.rewriteLinks(i);
});
},
methods: {
fetchProfile() {