Skip to content

Releases: gitroomhq/postiz-app

Fix for Tavily not defined

26 Dec 06:58
Compare
Choose a tag to compare

v1.11.2 - Fixes for LinkedIn

25 Dec 11:35
Compare
Choose a tag to compare

Public API

14 Dec 11:57
Compare
Choose a tag to compare

What's Changed

LinkedIn Hotfix

09 Dec 15:34
8966bf9
Compare
Choose a tag to compare

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!

09 Dec 09:47
b17727b
Compare
Choose a tag to compare

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

New Contributors

Full Changelog: v1.9.0...v1.10.0

Tag companies on LinkedIn

08 Dec 11:55
77c79f9
Compare
Choose a tag to compare

What's Changed

Add customer seperation

07 Dec 16:00
a9630b6
Compare
Choose a tag to compare

What's Changed

Added stories and collaborators to instagram, fixed Linkedin cutoff, date for people in america

04 Dec 15:20
Compare
Choose a tag to compare

What's Changed

  • Rename old TWITTER_CLIENT_ID(and SECRET) to new X_CLIENT_ID naming convention by @honzapatCZ in #430
  • bugfix: The teams component, remove button, was not visible in light mode by @jamesread in #429
  • bugfix: Component property needs braces by @jamesread in #456
  • [FEAT] change dates to the American people #156 by @Aspireve in #461
  • instagram stories, add collaborators, infrastructure for settings in validation by @nevo-david in #468

New Contributors

Full Changelog: v1.6.12...v1.7.12

Hot fixes for empty avatar, analytics, and package-lock problems

20 Nov 04:54
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.6.11...v1.6.12

Quick Fix for uploading, confusing instagram

13 Nov 10:38
313f1f3
Compare
Choose a tag to compare

What's Changed