

Latest News
Play’n GO conduct an electrical revolution in Spark of Genius
Play’n GO pits Woodrow and Jačova against one another in a race against bolts in Spark of Genius.
Play’n GO has an extensive slot portfolio of over 300+ dynamic titles. With the newest addition to the slot roster, the iGaming titan once again channels innovation and quality game design with Spark of Genius.
In this dynamic 6×6 grid slot, players are transported to the dawn of the 20th century, where the clash between industry pioneers Maynard Woodrow and Tess Jačova ignites. Players will harness the power of Resonant Energy and Manifest Energy as these characters vie for dominance over the grid.
Players must the learn the abilities of Tess Jačova and Maynard Woodrow, opening gameplay advantages in the epic quest for scientific supremacy. With features like Gyrota and Relay – this slot’s home to thrilling spins and explosive wins.
This slot has features that’ll make any slot enthusiast’s hair stand on end. The abilities of our two scientists are vital for accessing the Bonus Round, where Tess introduces Gyrota and Dynamo, offering strategic symbol rotations and special connectors for increased winning potential.
Meanwhile, Maynard presents Relay and Overload, obliterating symbols and cascading disruptions. Maynard’s Empire Energy Spin boasts a 2×2 connector – potentially securing players up to 35 Free Spins with surging Win Multipliers.
Spark of Genius seamlessly blends historical rivalries with cutting-edge gameplay and our signature FuseWays mechanics drawing players into intrigue and excitement. Fans of science-driven and sci-fi slots like Dr Toonz and Fortune Rewind will feel right at home with this electrifying adventure.
Games Ambassador at Play’n GO, Magnus Wallentin said: “We’re excited for the fandom to experience the spectacle that is Spark of Genius. This title is a little different, because it uses real-world science to influence the grid slot setup, alongside our signature new mechanic FuseWays which is really cool and something we haven’t done before. From the powerful Empire Energy Spin to character-driven abilities, this slot’s got lots of dynamic quirks we’re sure fans will love.”
With unique abilities, an immersive historical setting and thrilling features – Spark of Genius promises an electrifying gaming experience like no other.
The post Play’n GO conduct an electrical revolution in Spark of Genius appeared first on European Gaming Industry News.
Diffusion 6.12
DiffusionData Releases Diffusion 6.12

DiffusionData, the pioneer and leader in real-time data streaming, today announced the release of Diffusion 6.12. The latest enhancements have been introduced to speed up development, optimize resource usage, and guarantee consistent, high-performance real-time data delivery.
Grethe Brown, CEO of DiffusionData, said: “As a company, we’ve always been driven by the insights of our community, ensuring our solution directly aligns with client needs. By listening closely to evolving requirements, we’ve introduced enhancements to our framework that addresses real-world developer challenges while boosting operational efficiency. These improvements are designed to accelerate productivity, reduce complexity, and create tangible business value. The ongoing feedback from our customers fuels continuous innovation in Diffusion, enabling our clients to deliver better outcomes and stay competitive.”
Enhancements in Diffusion 6.12 include:
Enhancements to the ‘Set’ Operation in Topic Views
The ‘set’ operation within the Topic Views process clause has been enhanced to support additional use cases and provide greater flexibility when shaping output data. Key improvements include:
Ability to Clear Output Structures
Output structures (objects, arrays, or even the root) can now be emptied prior to selectively copying required items into the output. This simplifies scenarios where large input datasets need to be reduced to only a few items. New special values are available: empty_object and empty array (or, for short, $O and $A respectively). For example, set(, $O) clears the entire output, while set(/pointer, $O) clears only a specific structure.
Copying Items to the Same Output Location
A new “set to pointer” capability allows items (scalars or structures) to be copied directly to the same pointer location in the output. This is particularly useful when repopulating a structure that was previously cleared.
Support for Copying Complete Data Structures
This enhancement enables copying of entire objects or arrays in addition to scalar values, making it possible to move complete structures from input to output which is useful if a higher-level structure has been cleared, but also allows for copying to entirely different structures.
Metric Alerts
There is a new Metrics notifications feature which allows metrics alerts to be notified to topics when certain criteria are satisfied. For example, an alert could be set up which will write to a topic when the memory utilisation exceeds a specified threshold.
Session Authentication – Expiry
There is now a new session property called “$ExpiryTime” which lets an authenticator define when a session should automatically close, in milliseconds. If not set, the session won’t expire. Clients can now use the new re-authenticate method – replacing changePrincipal – to either switch principals or re-authenticate with the same one, while also updating session properties if needed. Clients can check their own fixed session properties, including expiry time, with getSessionProperties. Finally, administrators can use revokeAuthentication to immediately close another client’s session.
Put together, these changes mean that sessions now have clearer lifecycles. They can expire automatically, be refreshed by re-authentication, and be forcibly revoked by administrators when necessary.
Topic View insert ’s now Allowed at any Point in the Specification
Topic view inserts can now appear anywhere in the specification, not just at the end, allowing them to be interspersed with other transformations.
Regular Expression Matching for String Comparison in Topic Views
There is now a new matches or =~ operator available in topic view “process” conditionals. This allows for advanced string comparisons using regular expressions, providing greater flexibility and precision.
Session Lock Query API
There is now a new API available in the ClientControl feature, which enables control clients to query session locks. There is a getSessionLocks method, which returns details of all current session locks, as well as a getSessionLock method to query a specific named session lock.
SubscriptionControl Feature now Cluster Aware
Previously, the SubscriptionControl feature methods to subscribe and unsubscribe sessions would only work for sessions connected to the same server as the control client using the feature. This meant that when Diffusion was running in a cluster a control client would need to connect separately to all servers in the cluster in order to manage all sessions. In this release, all methods in the SubscriptionControl feature apply to all sessions across a cluster.
SELECT_TOPIC Permissions Changes
In 6.12, the SELECT_TOPIC path permission is required for all paths that a topic selector may match — not just the path prefix. In earlier versions, SELECT_TOPIC permission was only required for the prefix of a topic selector. A session could use a selector to access an entire branch of the topic tree as long as it had permission at the top-level path. As a result, it was not possible to selectively remove access from a sub-branch — access to the parent path implicitly granted access to everything below it.
The permission model has now been made more restrictive. To fetch or subscribe using a topic selector, a session must now have SELECT_TOPIC permission for each individual path that the selector may match. This allows SELECT_TOPIC to be granted to a branch of the topic tree and explicitly revoked for specific sub-branches.
For full path pattern topic selectors, the model is even more restrictive: SELECT_TOPIC permission is required for all paths at and below the path prefix. This is necessary to prevent circumvention using advanced regular expressions. This enhancement delivers more granular, flexible, and secure topic access management.
Improvements to the Journal Feature
In 6.12, the Journal feature has been simplified. The feature is now configured in the Server.xml configuration file, and the issued file contains a sample block with the feature disabled. A sample configuration file is now issued in the Diffusion ./etc installation directory which has all possible actions that can be configured, but with all disabled.
Topic Selection Scopes
In previous versions of Diffusion, if two different components of a client application, sharing a single Diffusion connection, subscribed to a topic and one of them later unsubscribed, the topic would be unsubscribed for the session and consequently for all components. Now, it is possible to specify a named scope when subscribing, such that a later unsubscription specifying that scope has no effect on other subscriptions that named a different scope. This allows subscriptions to be localised to the components that need them. There are now new subscription and unsubscription methods that take a scope parameter to support this. Applications using the old methods will continue to work as before, as their subscriptions will all be assigned to a default scope.
Other Improvements
- In 6.12, both the Diffusion server and Java Client require Java 17. Older clients can still connect, but the 6.12 Java Client is needed to access all new features.
- The JavaScript Client and Console now support the Safari browser.
- The Dotnet SDK client can now specify a custom URL path to connect to Diffusion through use of the new parameterless ISessionFactory Open and OpenAsync API in conjunction with the new ISessionFactory attributes: ServerHost , ServerPort , SecureTransport and RequestPath .
The post DiffusionData Releases Diffusion 6.12 appeared first on Gaming and Gambling Industry in the Americas.
Latest News
SkillOnNet Strengthens Casino Offering with Launch of TaDa Gaming Content

TaDa Gaming content now live across SkillOnNet brands
Global entertainment brand SkillOnNet has announced a new content partnership with Malta-based TaDa Gaming, which sees the fast-rising studio’s portfolio of cutting-edge games rolled out to its network of brands and operators.
Players at SkillOnNet brands like PlayOJO and LuckyNiki now have access to TaDa Gaming’s growing catalogue of more than 200 titles, spanning video slots, crash games, fish-shooting, table and card formats, and bingo. Highlights include player favourites such as TriLuck™’s 3 Charge Buffalo, Fortune Hook, and Golden Bank 2 – all known for their strong maths models, engaging features and immersive design.
The launch follows a series of high-profile content deals for TaDa Gaming in 2025, demonstrating the studio’s commitment to global expansion and localization, blending globally appealing mechanics with regionally tailored themes.
For SkillOnNet, the deal reinforces its strategy of building the world’s most awe-inspiring games library by partnering with the very best emerging and established developers in the industry. With licenses from key jurisdictions including the UK, Malta, Sweden and Greece, SkillOnNet offers TaDa Gaming an unbeatable route to market across Europe and beyond.
Jani Kontturi, Head of Games at SkillOnNet said: “We’re constantly expanding our content offering to give our operator partners the very best in entertainment. TaDa Gaming has quickly established itself as a studio that delivers variety, quality, and innovation, and we’re delighted to bring its titles to our platform. We believe its content will resonate strongly across multiple markets.”
Ray Lee, Director of Business Development at TaDa Gaming said: “Partnering with SkillOnNet marks another important milestone for TaDa. Their wide distribution network and strong operator relationships will allow us to showcase our content to more players worldwide. We’re excited to see how our games perform with SkillOnNet brands.”
The post SkillOnNet Strengthens Casino Offering with Launch of TaDa Gaming Content appeared first on European Gaming Industry News.
Latest News
SPAYZ.io white paper uncovers the opportunities, challenges and ambitions on the minds of payments professionals

SPAYZ.io, a global provider of advanced payment technologies, has launched a new white paper that reveals the opportunities, concerns and ambitions of the payments sector. Titled “Optimizing Merchant Payment Flows in Challenging iGaming Markets”, the white paper draws from the insight of leading industry professionals, backed by the insights SPAYZ.io has compiled throughout the year from its extensive network of merchants and partners.
The white paper provides timely insight into the latest payments trends for operators and payment processors that operate in high risk industries, giving a qualitative and quantitative analysis of the user payment behaviours and habits, the existing and future challenges that prevent transaction completions and the in-demand payment solutions.
It also highlights the strategic recommendations for businesses seeking to future-proof their operations. From embracing alternative payment methods to navigating evolving compliance frameworks, the report equips stakeholders with actionable intelligence to stay ahead of disruption and capture new growth opportunities in a rapidly shifting landscape.
The insight bridges the gap between users, operators and payment providers, giving advice on how to choose the right payment provider and the importance of trust in the industry.
“The payments sector is scaling at pace. To be successful, payments processors and operators need to be equipped with the latest knowledge and insight to make sure they are actively responding to market needs, particularly in emerging markets,” Tatiana Sokolova, Head of Marketing at SPAYZ.io commented.
“SPAYZ.io is known for its market intelligence, which is why we have decided to release this whitepaper. It provides a useful snapshot for where the industry is at the moment, and what needs to be factored into the future decisions of operators and merchants as they begin to map out their growth strategies for 2026.”
Copies of the whitepaper can be downloaded here https://bit.ly/3JS7iW7
The post SPAYZ.io white paper uncovers the opportunities, challenges and ambitions on the minds of payments professionals appeared first on European Gaming Industry News.
-
gaming3 years ago
ODIN by 4Players: Immersive, state-of-the-art in-game audio launches into the next generation of gaming
-
EEG iGaming Directory8 years ago
iSoftBet continues to grow with new release Forest Mania
-
News7 years ago
Softbroke collaborates with Asia Live Tech for the expansion of the service line in the igaming market
-
News7 years ago
Super Bowl LIII: NFL Fans Can Bet on the #1 Sportsbook Review Site Betting-Super-Bowl.com, Providing Free Unbiased and Trusted News, Picks and Predictions
-
iGaming Industry8 years ago
Rick Meitzler appointed to the Indian Gaming Magazine Advisory Board for 2018
-
News7 years ago
REVEALED: Top eSports players set to earn $3.2 million in 2019
-
iGaming Industry8 years ago
French Senator raises Loot Boxes to France’s Gambling Regulator
-
News7 years ago
Exclusive Interview with Miklos Handa (Founder of the email marketing solutions, “MailMike.net”), speaker at Vienna International Gaming Expo 2018