Processing Ajax...

Title

Message

Confirm

Confirm

Confirm

Confirm

Are you sure you want to delete this item?

Confirm

Are you sure you want to delete this item?

Confirm

Are you sure?

Playlist Capability Added to Audio Player App!

March 19, 2019

We're very excited to announce a feature upgrade for the Audio Player app! You can now configure a playlist of audio files to rotate through.

To get started with the Audio Player app, first upload some audio files on the Content page.

Content Page
Content Page

Next, add the Audio Player app to one of your devices.

App Selector
App Selector

In the Audio Player configuration dialog, click "Add Audio File," then choose the audio files you'd like to add to the playlist. If you need to change the order of the audio files, you can select one or more in the list and then click "Move Up" or "Move Down" to adjust their positions.

Adding Audio Files
Adding Audio Files

When you're finished configuring the list of audio files, click the green "Save" button, and you're all set! If the changes don't show up on your device immediately, click the "Reload Content Frames" link at the top of the device page to force a refresh.

URL Slideshow Option Added to the Custom URL App

March 8, 2019

We're very excited to announce a feature upgrade for the Custom URL app! You can now configure a list of websites to rotate through on a set interval. Using this you can now rotate through websites in a single large frame, rather than trying to fit a bunch of smaller Custom URL frames on one display.

To configure the URL slideshow, first, add a Custom URL app to your CloudShow device.

App Selector
App Selector

In the Custom URL configuration dialog, click "Add Website URL," paste in the URL, then click the green "Add Website URL" button. Repeat this process for any other websites you'd like to add to the list.

Adding URLs
Adding URLs

To configure how long you want each website to be shown, specify the interval in minutes. The default is 15 minutes, but you can set it as low as 1 minute.

Setting the Interval
Setting the Interval

When you're finished configuring the list of websites and the interval, click the green "Save" button, and you're all set! If the changes don't show up on your device immediately, click the "Reload Content Frames" link at the top of the device page to force a refresh.

Top WallpaperFusion Members for February 2019

March 1, 2019
Congratulations to our top contributing members for February 2019! They have been hard at work submitting, rating, and discussing images on WallpaperFusion, and have racked up some impressive reputation scores along the way!
Contributors
1.
Alan Wade's profile on WallpaperFusion.com
2.
izann's profile on WallpaperFusion.com
3.
Laodurias' profile on WallpaperFusion.com
4.
Tony Kohlruss' profile on WallpaperFusion.com
5.
DLJunkie's profile on WallpaperFusion.com
6.
Judith Lane's profile on WallpaperFusion.com
7.
Kirk Meyer's profile on WallpaperFusion.com
8.
Nicolas Deleglise's profile on WallpaperFusion.com
9.
Daniel Parker's profile on WallpaperFusion.com
10.
michael oakes5's profile on WallpaperFusion.com
JigsawMania
1.
Laodurias' profile on WallpaperFusion.com
2.
sandy17's profile on WallpaperFusion.com
3.
cherbear48's profile on WallpaperFusion.com
4.
masa2's profile on WallpaperFusion.com
5.
Tsula's profile on WallpaperFusion.com
6.
Pamala McGlothlin's profile on WallpaperFusion.com
7.
aba3's profile on WallpaperFusion.com
8.
Moanerz77's profile on WallpaperFusion.com
9.
Sly's profile on WallpaperFusion.com
10.
BGL's profile on WallpaperFusion.com
Check out the current top members or look at previous months on our Top Members page!

Introducing Widgets!

February 25, 2019

We're very excited to announce a powerful new feature, Widgets! CloudShow Widgets allow you to overlay extra information on your content frames. You can add clocks, weather information, custom text/HTML, background audio/music, and more. To get started with Widgets just click the App icon for your content frame to open the radial menu.

Widgets
Widgets

Once the radial menu is open, click the Widgets icon and you'll be presented with a list of all the currently available widgets. Select the Widget you would like to add, then adjust it's settings and position.

Widgets
Widgets

Voila, you're all set! In the preview below you can see a clock overlaid on the News app. You can customize the look, location, size and more for each widget.

Content Frame with Clock Widget
Content Frame with Clock Widget

Try out the new Widgets feature today!

CheckCentral API Documentation: createCheck Endpoint

February 21, 2019

The CheckCentral API provides an endpoint for creating checks programmatically. All of the configuration options are available through the API, detailed below. To create a new check through the API, you will require an API token for your organization with Read/Write access. Organization administrators can create tokens through the API portal on your dashboard.

The endpoint is located at https://api.checkcentral.cc/createCheck/?apiToken=APITOKEN where the APITOKEN placeholder is replaced with your valid token. The request must be made with the Content-Type header set to application/json. The body of the request should contain as many of the properties listed below as required to define the check. Any properties not passed will be set to their default value.

For example, to create a new check that:

  • Receives messages at the address "demo+apicheck@mycheckcentral.cc"
  • Expects messages every two hours
  • Expects messages only on weekdays
  • Is set to Failure unless the message subject is "Message Success" or the message body has the text "No Errors Reported"

you would send the following json in the body of the request:

Code

{
  "name": "An API Check",
  "email_alias": "apicheck",
  "interval_type": "hour",
  "interval_value": 2,
  "active_days": [
    "mon",
    "tue",
    "wed",
    "thu",
    "fri"
  ],
  "success_conditions": {
    "required_conditions": "any",
    "conditions": [
      {
        "message_field": "subject",
        "matches": "exactly",
        "value": "Message Success"
      },
      {
        "message_field": "body",
        "matches": "contains",
        "value": "No Errors Reported"
      }
    ]
  }
}

The check data must include a name property, as well as at least one of email_alias and matching_conditions to allow the check to be matched against incoming messages.

The complete list of possible properties for check configuration are as follows:

Check Structure

Parameter Type/Allowed Values Default

name

The name for the new check.

The name parameter is required.

String

email_alias

The plus alias for the check. This will be used to generate the custom email address for the Check along with your organization account name: account_name+email_alias@mycheckcentral.cc.

At least one of the email_alias or matching_conditions parameters must be specified.

String

matching_conditions

The rules that will be used to match incoming messages. See the definition of a ConditionGroup below.

At least one of the email_alias or matching_conditions parameters must be specified.

ConditionGroup {}

group_id

The ID of the group to assign this check. IDs may be retrieved from the getGroups API endpoint.

String

description

A text description for the check.

String

interval_type

The interval unit CheckCentral will use to calculate the expected arrival time of incoming messages

One of:

  • minute
  • hour
  • day
  • week
  • month
day

interval_value

The number of interval units (see above) used when calculating the expected arrival of incoming messages.

Integer 1

overdue_minutes

How many minutes after the interval has elapsed CheckCentral will wait before flagging the check as failed.

Integer 30

window_start

An optional time of day when messages will begin to be received.

String 00:00

window_end

An optional time of day when messages will cease to be received.

String 00:00

active_days

Pass an array of days to indicate which days the check should expect to receive messages.

An array containing either "all", or any of:

  • sun
  • mon
  • tue
  • wed
  • thu
  • fri
  • sat
[ "all" ]

enabled_notifications

Pass an array of personal notification services to configure the check to send alerts via those services.

An array containing any of:

  • email
  • sms
  • push
  • pushbullet
  • pushover
[]

enabled_notification_channels

Pass an array of organization notification channel IDs to configure the check to send alerts via those services. IDs may be retrieved from the getNotificationChannels API endpoint.

Array[String]

[]

enabled_ticketing_systems

Pass an array of organization external ticketing system IDs to configure the check to create and update tickets via those services. IDs may be retrieved from the getTicketingSystems API endpoint.

Array[String]

[]

notify_returned_to_success

Checks with this flag will send an alert when they are restored to a success state by an incoming message.

Bool true

notify_outside_window

Checks with this flag set to false will only send alerts during the time window and active days configured above.

Bool true

notify_consecutive_alerts

This parameter controls when CheckCentral will send alerts about repeated failure or warning messages.

One of:

  • always
  • first
  • after_n
  • every_nth
always

notify_consecutive_alerts_limit

If notify_consecutive_alerts is set to either after_n or every_nth, this parameter configures how many consecutive failures or consecutive warnings will trigger alerts.

Integer 1

notify_failure_grace_period

The number of minutes this check will wait to send alerts about failures. If the check is returned to successful status before this period elapses, any pending alerts will be cancelled.

Integer 0

default_status

The default status for incoming messages that don't match against any of the conditions below.

One of:

  • success
  • warning
  • failure
failure

success_conditions

The rules that determine whether incoming messages will be set to success. See the definition of a ConditionGroup below.

ConditionGroup {}

warning_conditions

The rules that determine whether incoming messages will be set to warning. See the definition of a ConditionGroup below.

ConditionGroup {}

failure_conditions

The rules that determine whether incoming messages will be set to failure. See the definition of a ConditionGroup below.

ConditionGroup {}

ConditionGroup

Parameter Type/Allowed Values Default

required_conditions

This parameter controls whether incoming messages must meet any or all of the conditions defined below to be considered a match.

One of:

  • all
  • any
"all"

condense_whitespace

If this flag is set, all of the conditions defined in this group will treat multiple whitespace characters as a single space.

Bool false

conditions

The list of conditions for this ConditionGroup to match messages against. See the definition of a Condition below.

Array[Condition] []

Condition

Parameter Type/Allowed Values Default

message_field

Which part of the incoming message will be examined for this condition.

One of:

  • subject
  • body
  • to
  • cc
  • attachments
  • attachment_text
  • from
  • originally_to
subject

matches

What matching rule this condition will use.

One of:

  • contains
  • not_contains
  • exactly
  • empty
  • not_empty
  • has_attachments
  • has_no_attachments
  • filename_contains
  • filename_not_contains
  • filename_exact
  • text_contains
  • text_not_contains
  • complex_match
  • complex_filename_match
  • complex_text_match
contains

value

The value to use with the above matching rule and message component.

String

ClipboardFusion 5.5 Now Available!

February 21, 2019

We're very excited to announce that ClipboardFusion 5.5 is now available for download! We've fixed a few bugs, improved the way our servers talk to ClipboardFusion, and added a new Macro function for a listview box with filtering capabilities!

ClipboardFusion 5.5 Highlights

  • Change: Push syncing improvements
  • Change: New Macro function to open a listview window with filter (BFS.Dialog.GetUserInputListViewWithFilter)
  • Fix: UI no longer hangs during a sync
  • Fix: Settings restore now restores and binds the hotkeys correctly
  • Fix: General fixes and improvements

Updating ClipboardFusion

We encourage everyone to update to the new version today to take advantage of these improvements. If you would like to see a complete list of all the changes, please view the ClipboardFusion Change Log. We would also like to thank all of the translators who have helped translate ClipboardFusion to their native languages.

ClipboardFusion Screenshots

Clipboard Manager > History List
Clipboard Manager > History List
First Page
Previous Page
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
Next Page
Last Page