Processing Ajax...

Title
Close Dialog

Message

Confirm
Close Dialog

Confirm
Close Dialog

Confirm
Close Dialog

Top WallpaperFusion Members for September 2019Top 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.
Kirk Meyer's profile on WallpaperFusion.com
10.
LavenderGirl54'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.
ashley ward'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 2019Top 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!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!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 EndpointCheckCentral 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
[]

Top WallpaperFusion Members for July 2019Top WallpaperFusion Members for July 2019

August 1, 2019
Congratulations to our top contributing members for July 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.
LavenderGirl54's profile on WallpaperFusion.com
4.
Judy Bright23628's profile on WallpaperFusion.com
5.
Monkeyshack's profile on WallpaperFusion.com
6.
A. J. Mullenders' profile on WallpaperFusion.com
7.
Alan Wade's profile on WallpaperFusion.com
8.
izann's profile on WallpaperFusion.com
9.
Judith Lane's profile on WallpaperFusion.com
10.
Joseph Di Giovanni's profile on WallpaperFusion.com
JigsawMania
1.
Turtle God's profile on WallpaperFusion.com
2.
masa2's profile on WallpaperFusion.com
3.
Mike427's profile on WallpaperFusion.com
4.
cis1's profile on WallpaperFusion.com
5.
trucker47's profile on WallpaperFusion.com
6.
Elmer1's profile on WallpaperFusion.com
7.
Unkn0wn_t0_all's profile on WallpaperFusion.com
8.
Beagle's profile on WallpaperFusion.com
9.
MOMMOOT's profile on WallpaperFusion.com
10.
Mirus' profile on WallpaperFusion.com
Check out the current top members or look at previous months on our Top Members page!

Configuring the DisplayFusion Photos Screen SaverConfiguring the DisplayFusion Photos Screen Saver

July 24, 2019
The DisplayFusion Photos Screen Saver allows you to show off your photos while your computer is idle. The steps below show how to configure it.
  • Right-click the DisplayFusion icon and click "Settings."
    Tray Menu - Settings
  • Click on the Screen Saver tab.
  1. If you haven't already, enable the "Allow DisplayFusion to manage the Screen Saver" checkbox.
  2. Select the monitor that you want to run the DisplayFusion Photos Screen Saver on.
  3. Choose "DisplayFusion Photos Screen Saver" from the drop-down next to the Browse button.
  4. Click the "Settings" button to the right of the Browse button to open the settings window for the DisplayFusion Photos Screen Saver.
Screen Saver tab
  • In the DisplayFusion Photos Screen Saver settings window, click the Browse button and choose Browse, then choose the folder of images that you want to use for the DisplayFusion Photos Screen Saver. If you'd like to add more folders, click Browse, then choose "Browse & Append."
    Photo Screen Saver Settings
  • Modify any of the other options as you like, then click OK, and OK again to apply the main DisplayFusion Settings window.

Working with Mouse ManagementWorking with Mouse Management

July 2, 2019
DisplayFusion has a variety of options on the Mouse Management tab that can help you use the mouse more efficiently across multiple monitors. This guide details each option.
To access the Mouse Management features:
  1. Right-click the DisplayFusion icon and click "Settings."
    Tray Menu - Settings
  2. Click the "Mouse Management" tab.
    Mouse Management tab
  3. Enable the features you want and click OK or Apply.
The options are as follows:
  • Allow the mouse wheel to scroll windows under the mouse cursor that are not in focus: This feature will allow you to scroll up or down in using the mouse wheel when hovering over any application window, even if it's not the currently focused window. This comes in handy in situations like having a Word document open on one screen, and a website open on the other screen. You can keep the keyboard focus on Word, but still scroll up/down in the web browser with the mouse. In Windows 7, DisplayFusion handles this behaviour. In Windows 10, this functionality is built-in, so the option in the DisplayFusion Settings just enables/disables the Windows option for this.
  • Wrap mouse cursor around left/right monitor edges: Normally when you move the monitor to the far edge of a monitor, it stops. When this feature is enabled, moving the mouse to the far edge will cause it to wrap around to the other far edge. For example, with two monitors side-by-side, you can move the mouse to the far left of the left monitor, and it will continue moving on the far right of the right monitor.
  • Wrap mouse cursor around top/bottom monitor edges: This feature behaves the same as the left/right wrapping (see above), but with the top/bottom instead.
  • Only wrap mouse cursor when more than one monitor is connected: When either mouse wrapping option (see above) is enabled, this option will only allow the mouse to wrap if there's more than one monitor connected and enabled.
  • Prevent mouse cursor from snagging on unaligned left/right monitor edges: If you've got monitors with different screen resolutions, you may run into issues with the mouse getting stuck when trying to move it between the two monitors. This is because one monitor has a shorter edge than the other monitor, and Windows only allows the mouse to cross where both monitor edges line up. If you enable this feature, you can cross the mouse over at any left or right monitor edge.
  • Prevent mouse cursor from snagging on unaligned top/bottom monitor edges: This feature behaves the same as the left/right snagging prevention (see above), but with top/bottom edges instead.
  • Prevent mouse cursor from sticking in Sticky Corners: (Windows 11, 10 only) Windows will catch the mouse in the corners to prevent accidental movement to the other monitor when intending to click on elements in the corners (Start button, window close button, show desktop button). Enabling this feature will allow you to move the mouse to the other monitor without it getting caught in the corners.

Introducing User Groups, Check Group Permissions & More!Introducing User Groups, Check Group Permissions & More!

July 2, 2019
We’re pleased to announce some great new CheckCentral features that have recently been rolled out. These new features make organizing your checks and users easier than ever.


NEW! Creating User Groups, Setting Security on Check Groups


It is now possible to manage access to your individual CheckCentral check groups thanks to the introduction of user groups, and check group permissions. To get started, simply head to the user groups page via the Organization tab to quickly create new user groups.


Create User Group
Create User Group



Once you have user groups created, they can be used to assign permissions to a check group. Simply visit the check groups page (under the Checks tab) and select the check group you’d like to modify the permissions for. You’ll see a Permissions section where you are able to add a permissions entry for your new user group, specifying what level of access that group should have.


Add Permission
Add Permission



NEW! Improved Organization via Labels


You can now set labels on your checks. Checks with the same label will be grouped together on the Dashboard and Checks page, allowing you to organize checks within a check group.


Check Labels
Check Labels



You’ll see the new Label field when creating or editing a check. You can also set labels in bulk via the Checks page.


Improvements to custom dashboards and more!


Custom dashboards can now be configured to only display specific check groups, making your custom dashboards even more flexible.


As always, we welcome your feedback about these updates, as well as the service as a whole, so please feel free to reach out.

Top WallpaperFusion Members for June 2019Top WallpaperFusion Members for June 2019

July 2, 2019
Congratulations to our top contributing members for June 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.
Laodurias' profile on WallpaperFusion.com
3.
artistunique's profile on WallpaperFusion.com
4.
izann's profile on WallpaperFusion.com
5.
GraveDigger's profile on WallpaperFusion.com
6.
Delphinidae's profile on WallpaperFusion.com
7.
Alan Wade's profile on WallpaperFusion.com
8.
LavenderGirl54's profile on WallpaperFusion.com
9.
Judith Lane's profile on WallpaperFusion.com
10.
djunet julianto's profile on WallpaperFusion.com
JigsawMania
1.
masa2's profile on WallpaperFusion.com
2.
MOMMOOT's profile on WallpaperFusion.com
3.
cis1's profile on WallpaperFusion.com
4.
Turtle God's profile on WallpaperFusion.com
5.
Mouse3's profile on WallpaperFusion.com
6.
Penni's profile on WallpaperFusion.com
7.
trucker47's profile on WallpaperFusion.com
8.
nova100's profile on WallpaperFusion.com
9.
cherbear48's profile on WallpaperFusion.com
10.
Mirus' profile on WallpaperFusion.com
Check out the current top members or look at previous months on our Top Members page!
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899