1
0
Fork 0

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 1394 additions and 1384 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)

2
public/js/rempos.js vendored

File diff suppressed because one or more lines are too long

2
public/js/rempro.js vendored

File diff suppressed because one or more lines are too long

View File

@ -1,7 +1,7 @@
{
"name": "Pixelfed",
"short_name": "Pixelfed",
"start_url": ".",
"start_url": "/?source=pwa",
"display": "standalone",
"background_color": "#f5f8fa",
"description": "Federated Image Sharing",

View File

@ -25,8 +25,8 @@
"/js/profile.js": "/js/profile.js?id=e0365f377fb6c574fda4",
"/js/profile-directory.js": "/js/profile-directory.js?id=e63d5f2c6f2d5710a8bd",
"/js/quill.js": "/js/quill.js?id=4769f11fc9a6c32dde50",
"/js/rempos.js": "/js/rempos.js?id=0bbc655fe5c21a01626e",
"/js/rempro.js": "/js/rempro.js?id=802ab1bd700e9d0d0723",
"/js/rempos.js": "/js/rempos.js?id=f528b9382369fdc5b3c3",
"/js/rempro.js": "/js/rempro.js?id=25dc0589246b60f678ce",
"/js/search.js": "/js/search.js?id=33a848ea20efb0c4f71f",
"/js/status.js": "/js/status.js?id=ce91385c7214bfa91c29",
"/js/story-compose.js": "/js/story-compose.js?id=e93760b2356732faecf8",

File diff suppressed because it is too large Load Diff

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() {