Releases: gitroomhq/postiz-app
Releases · gitroomhq/postiz-app
Upload pictures on paste / drag and drop
Continuing with minor polishing improvements:
- You can drag pictures (multiple) onto the editor, and it will upload them.
- You can paste pictures (multiple) onto the editor, and it will upload them.
- When uploading a picture from the popup, remove the step of selecting an image; it will be selected automatically.
Image compression
- Added compression to images in the client that will solve 99% of the problems people have
Better UX
- Collapsable menu for customers
- Tooltip on popup over the picture
- Scrolling if there are too many account
Fix for openai key undefined
Full Changelog: v1.11.3...v1.11.4
Fix for Tavily not defined
Full Changelog: v1.11.1...v1.11.3
v1.11.2 - Fixes for LinkedIn
Full Changelog: v1.11.1...v1.11.2
Public API
What's Changed
- Public API by @nevo-david in #490
Full Changelog: v1.10.1...v1.11.1
LinkedIn Hotfix
What's Changed
- Weird behavior with LinkedIn not posting PNG even though it uploads them by @nevo-david in #481
Full Changelog: v1.10.0...v1.10.1
Introducing Plugs!
This is the new version of plugs!
This is a concept that you can find in some other tools that can boost your engagement for you current posts.
Here are some examples:
- Once your post reaches X amount of likes, repost it (to regain visibility to it)
- Once your post reaches X amount of likes, add another message to it (all your existing commenters will get a notification)
We have created it super simple to add each plug, you can find in each provider something like this:
@Plug({
identifier: 'x-autoRepostPost',
title: 'Auto Repost Posts',
description:
'When a post reached a certain number of likes, repost it to increase engagement (1 week old posts)',
runEveryMilliseconds: 21600000,
totalRuns: 3,
fields: [
{
name: 'likesAmount',
type: 'number',
placeholder: 'Amount of likes',
description: 'The amount of likes to trigger the repost',
validation: /^\d+$/,
},
],
})
async autoRepostPost(
integration: Integration,
id: string,
fields: { likesAmount: string }
) {
...code
}
Once you add an annotation and a function like this, it will automatically reveal it in the frontend, and trigger it when needed.
Super simple!
What's Changed
- feat: autofill name based on username or let it be random string by @divyaswormakai in #474
- Plugs by @nevo-david in #479
New Contributors
- @divyaswormakai made their first contribution in #474
Full Changelog: v1.9.0...v1.10.0
Tag companies on LinkedIn
What's Changed
- Tag companies on LinkedIn by @nevo-david in #478
Full Changelog: v1.8.1...v1.9.0