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?

FileSeek 6.2.1 Now Available!

October 8, 2019

We're very excited to announce that FileSeek 6.2.1 is now available for download! This release fixes a few minor issues from 6.2.0.

FileSeek 6.2.1 Changes

  • Fix: Resolved an issue that caused FileSeek to take a very long time to open on some systems
  • Fix: Accelerator keys (e.g. Alt + Q to jump to the Query box) now work on the Search tab
  • Fix: Resolved an issue where Date Filters were not correctly applying to Folders in the results

Updating FileSeek

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 FileSeek Change Log. We would also like to thank all of the translators who have helped translate FileSeek to their native languages.

FileSeek Screenshots

FileSeek Search
FileSeek Search

Top WallpaperFusion Members for September 2019

October 1, 2019
Congratulations to our top contributing members for September 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.
Mikelly's profile on WallpaperFusion.com
2.
Carlos Vieites' profile on WallpaperFusion.com
3.
Debra Spicher's profile on WallpaperFusion.com
4.
izann's profile on WallpaperFusion.com
5.
artistunique's profile on WallpaperFusion.com
6.
DLJunkie's profile on WallpaperFusion.com
7.
Judith Lane's profile on WallpaperFusion.com
8.
Daniel Parker's profile on WallpaperFusion.com
9.
LavenderGirl54's profile on WallpaperFusion.com
10.
Kirk Meyer's profile on WallpaperFusion.com
JigsawMania
1.
masa2's profile on WallpaperFusion.com
2.
LoverBoy's profile on WallpaperFusion.com
3.
coffeeboy's profile on WallpaperFusion.com
4.
Turtle God's profile on WallpaperFusion.com
5.
Mirus' profile on WallpaperFusion.com
6.
Laodurias' profile on WallpaperFusion.com
7.
Elmer1's profile on WallpaperFusion.com
8.
Willy13's profile on WallpaperFusion.com
9.
redticks' profile on WallpaperFusion.com
10.
Maria11's profile on WallpaperFusion.com
Check out the current top members or look at previous months on our Top Members page!

Top WallpaperFusion Members for August 2019

September 2, 2019
Congratulations to our top contributing members for August 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.
Mikelly's profile on WallpaperFusion.com
2.
artistunique's profile on WallpaperFusion.com
3.
A. J. Mullenders' profile on WallpaperFusion.com
4.
Carlos Vieites' profile on WallpaperFusion.com
5.
TMG Triple monitor gaming's profile on WallpaperFusion.com
6.
GraveDigger's profile on WallpaperFusion.com
7.
djunet julianto's profile on WallpaperFusion.com
8.
DLJunkie's profile on WallpaperFusion.com
9.
Judith Lane's profile on WallpaperFusion.com
10.
Judy Bright23628's profile on WallpaperFusion.com
JigsawMania
1.
masa2's profile on WallpaperFusion.com
2.
Turtle God's profile on WallpaperFusion.com
3.
LongJohn's profile on WallpaperFusion.com
4.
Beagle's profile on WallpaperFusion.com
5.
cis1's profile on WallpaperFusion.com
6.
coffeeboy's profile on WallpaperFusion.com
7.
Elmer1's profile on WallpaperFusion.com
8.
Mirus' profile on WallpaperFusion.com
9.
Mike427's profile on WallpaperFusion.com
10.
LoverBoy's profile on WallpaperFusion.com
Check out the current top members or look at previous months on our Top Members page!

FileSeek 6.2 Now Available!

August 23, 2019

We're very excited to announce that FileSeek 6.2 is now available for download! We've fixed up a bunch of DPI scaling issues, and a few other minor issues.

FileSeek 6.2 Changes

  • New tabs no longer broken after using "Close All But This"
  • Search tab buttons no longer continually increase in size when using font scaling
  • Various other font scaling fixes
  • Help button next to the Query box now correctly takes you to the Text Query help
  • Custom encoding option now works correctly for .txt files when file handlers are enabled
  • You can now specify multiple encoding types in the Custom File Encoding advanced setting
  • Exact match operator (=) now matches on word boundary instead of entire line
  • Added an Encoding column to the results pane (disabled by default, you can enable it in the Settings window)
  • General Fixes and improvements

Updating FileSeek

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 FileSeek Change Log. We would also like to thank all of the translators who have helped translate FileSeek to their native languages.

FileSeek Screenshots

FileSeek Search
FileSeek Search

CheckCentral Mobile App Improvements!

August 21, 2019

We're happy to announce that we're rolling out some updates to the CheckCentral mobile apps! The apps are updated with a new framework, and most of the changes are behind the scenes improvements. Here's the full list:

  • Improved device support (including support for Amazon devices)
  • The Microsoft Store (UWP) app now supports push notifications
  • We've made some reliability improvements to the push registration process
  • The Android apps have been posted to the Play Store and Amazon App Store, and iOS is coming soon

If you're not already using the CheckCentral mobile app, we encourage you to try it out. As always, if you have any feedback, we'd love to hear from you!

CheckCentral Mobile App
CheckCentral Mobile App

CheckCentral API Documentation: createUser Endpoint

August 19, 2019

The CheckCentral API provides an endpoint for adding users programmatically. All of the configuration options are available through the API, detailed below. To add a new user 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/createUser/?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 the properties below to configure the new user's settings. Any properties not passed will be set to their default value.

For example, to add a new user you could send the following json in the body of the request:

Code

{
  "name": "Person Somename",
  "email": "person@myorg.realdomain",
  "accessLevel": "User",
  "sendWelcomeEmail": true,
  "userGroups": [
    "userGroupID"
  ],
  "notifications": [
    { 
        "type": "failures",
        "services": [
            "sms",
            "push"
        ]
    }
  ]
}

The user data must include an email property as well as an accessLevel at minimum.

The complete list of possible properties for user creation are as follows:

User Structure

Parameter Type/Allowed Values Default

email

The email address of the new user.

The email parameter is required.

String

accessLevel

The access level to grant the new user.

The accessLevel parameter is required.

One of:

  • disabled
  • custom
  • readonly
  • user
  • editor
  • manager
  • administrator

name

The name for the new user.

If the name parameter is not included, the user's name will be set to their email address.

String

sendWelcomeEmail

Pass the sendWelcomeEmail flag to have CheckCentral send an introductory email to the new user.

Boolean false

userGroups

Pass an array of user group IDs to add the user to those user groups. User group IDs can be retrieved with the getUserGroups API endpoint.

An array containing user group IDs.

[]

notifications

Pass an array of json objects to configure which services CheckCentral should use to communicate with the user.

Array[NotificationConfig] []

NotificationConfig

Parameter Type/Allowed Values Default

type

Pass the type of notification to configure.

The type parameter is required for NotificationConfig objects.

One of:

  • digest
  • failures
  • warnings
  • unmatched

services

The list of services that CheckCentral should use to alert the user about the configured type of notification. Any services not included in the array will be disabled for the notification type.

Any of:

  • email
  • sms
  • push
  • pushbullet
  • pushover
[]
First Page
Previous Page
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
Next Page
Last Page