GOG-API Documentation Release 0.1

Total Page:16

File Type:pdf, Size:1020Kb

GOG-API Documentation Release 0.1 GOG-API Documentation Release 0.1 Gabriel Huber Jun 05, 2018 Contents 1 Contents 3 1.1 Authentication..............................................3 1.2 Account Management..........................................5 1.3 Listing.................................................. 21 1.4 Store................................................... 25 1.5 Reviews.................................................. 27 1.6 GOG Connect.............................................. 29 1.7 Galaxy APIs............................................... 30 1.8 Game ID List............................................... 45 2 Links 83 3 Contributors 85 HTTP Routing Table 87 i ii GOG-API Documentation, Release 0.1 Welcome to the unoffical documentation of the APIs used by the GOG website and Galaxy client. It’s a very young project, so don’t be surprised if something is missing. But now get ready for a wild ride into a world where GET and POST don’t mean anything and consistency is a lucky mistake. Contents 1 GOG-API Documentation, Release 0.1 2 Contents CHAPTER 1 Contents 1.1 Authentication 1.1.1 Introduction All GOG APIs support token authorization, similar to OAuth2. The web domains www.gog.com, embed.gog.com and some of the Galaxy domains support session cookies too. They both have to be obtained using the GOG login page, because a CAPTCHA may be required to complete the login process. 1.1.2 Auth-Flow 1. Use an embedded browser like WebKit, Gecko or CEF to send the user to https://auth.gog.com/auth. An add-on in your desktop browser should work as well. The exact details about the parameters of this request are described below. 2. Once the login process is completed, the user should be redirected to https://www.gog.com/on_login_success with a login “code” appended at the end. Use the callbacks of your browser engine to detect it, take the code and use it to request a token. 3. Renew the token when it expires after about an hour. Check the original response for an accurate lifetime. 1.1.3 Authorizing a Request To authorize a request set the Authorization header to Bearer <token>. This has to be done for each call. Example request: GET /library/windows HTTP/1.1 Host: embed.gog.com Authorization: Bearer ,!xpIjnwyncascjBf20yz1n1tu8jo9spxyvy3zlvlL0rfoiiuly2hu5xnfgjysnuyhjqI7cmcatscp3ybgDjeqzwCggttnombuuicn_ ,!t6dbqybzYvpoieqtamaKuxpgclnUlt_q4jf_haj2emwgtrkzdlkhwinu7o93bpxWrbjdxr 3 GOG-API Documentation, Release 0.1 1.1.4 Methods GET /auth Redirects to the login site. Don’t use this directly from your client, it’s not a JSON API, visit it with a web browser instead. Query Parameters • client_id (str) – OAuth2 Client ID. Use 46899977096215655. • redirect_uri (str) – URL where the browser will be redirected after the login has been completed. Use https://embed.gog.com/on_login_success?origin=client • response_type (str) – Use code • layout (str) – Use client2 Example request: GET /auth?client_id=46899977096215655&redirect_uri=https%3A%2F%2Fembed.gog.com ,!%2Fon_login_success%3Forigin%3Dclient&response_type=code&layout=client2 HTTP/1.1 Host: auth.gog.com Example redirect: http://localhost:8000/token? ,!code=oF8OSgZVMFb7a8Y3Dolrz4YPqDUnG7TCTsekYKcWnFNcmWWCJH7XJS3RN9d9NB0slx4FS1kss- ,!llBEXvgkCX8oNTP1u3yYG1p56f35jVZCclrCQMk803k5LmQLKM1Wb7 GET /token Generates a new auth token from a login code or refreshes an old one. Query Parameters • client_id (str) – OAuth2 client ID. Use 46899977096215655 • client_secret (str) – OAuth2 secret. Use 9d85c43b1482497dbbce61f6e4aa173a433796eeae2ca8c5f6129f2dc4de46d9 • grant_type (str)– authorization_code for new logins, refresh_token for refreshs. • code (str)– Only for new logins: Login code you got from the auth redirect. • redirect_uri (str)– Only for new logins: The redirect URL you used in the auth request. • refresh_token (str)– Only for refreshes: The refresh_token you got from an old token. This is a separate entry, not the old access token. Example request: GET /token?client_id=46899977096215655&client_ ,!secret=9d85c43b1482497dbbce61f6e4aa173a433796eeae2ca8c5f6129f2dc4de46d9&grant_ ,!type=authorization_code& ,!code=oF8OSgZVMFb7a8Y3Dolrz4YPqDUnG7TCTsekYKcWnFNcmWWCJH7XJS3RN9d9NB0slx4FS1kss- ,!llBEXvgkCX8oNTP1u3yYG1p56f35jVZCclrCQMk803k5LmQLKM1Wb7&redirect_uri=http%3A%2F ,!%2Flocalhost%3A8000%2Ftoken HTTP/1.1 Host: auth.gog.com Example response: 4 Chapter 1. Contents GOG-API Documentation, Release 0.1 { "expires_in": 3600, "scope":"", "token_type": "bearer", "access_token": ,!"xpIjnwyncascjBf20yz1n1tu8jo9spxyvy3zlvlL0rfoiiuly2hu5xnfgjysnuyhjqI7cmcatscp3ybgDjeqzwCggttnombuuicn_ ,!t6dbqybzYvpoieqtamaKuxpgclnUlt_q4jf_haj2emwgtrkzdlkhwinu7o93bpxWrbjdxr", "user_id": "48628349957132247", "refresh_token": "48il-pjxfpknX0hwtxvBnRgNr-n5JAOTKpczaLEBHW7F65iTchjO46f7I-HAV- ,!Cb", "session_id": "6354900816570477251" } 1.2 Account Management Methods used to manage the user’s account. 1.2.1 User GET /userData.json Information about the logged in user. GET /userData.json HTTP/1.1 Host: embed.gog.com Example response: { "country": "AT", "currencies":[ { "code": "EUR", "symbol":" C" }, { "code": "USD", "symbol": "$" } ], "selectedCurrency":{ "code": "EUR", "symbol":" C" }, "preferredLanguage":{ "code": "en", "name": "English" }, "ratingBrand": "PEGI", "isLoggedIn": true, "checksum":{ "cart": null, "games": "c1fc44f3808bd755560e1b00d34451a1", "wishlist": "fcfd279ac1042f8baf8e659729ab1b89", (continues on next page) 1.2. Account Management 5 GOG-API Documentation, Release 0.1 (continued from previous page) "reviews_votes": null, "games_rating": null }, "updates":{ "messages":0, "pendingFriendRequests":0, "unreadChatMessages":0, "products":0, "forum":0, "total":0 }, "userId": "48628349971017", "username": "Yepoleb", "email": "[email protected]", "personalizedProductPrices": [], "personalizedSeriesPrices": [] } GET /user/set-redirect-url Sets URL to redirect to after login. You shouldn’t need this with a native client which is always logged in. Query Parameters • url – Redirect URL, the only accepted value seems to be checkout Example request: GET /user/set-redirect-url?url=checkout HTTP/1.1 Host: embed.gog.com Example response: No content GET /user/reviewTipsStatus.json Checks if the user has read the tips that pop up before you can write your first review. Example request: GET /user/reviewTipsStatus.json HTTP/1.1 Host: embed.gog.com Example response: { "userId": "48628349971017", "readTips": false } GET /users/info/(int: user_id) Returns the public information about a user. Query Parameters • expand (str) – Additional sections to request. Possible values: friendStatus, wishlistSta- tus, blockedStatus Response JSON Object • friendStatus.status (int)– 6 Chapter 1. Contents GOG-API Documentation, Release 0.1 – ANONYMOUS_USER = 0: No special relationship with this user. – INVITED_USER = 1: You have sent this user a friend request. – INVITED_BY_USER = 2: You have received a friend request from this user. – FRIEND = 3: You are friends with this user. • friendStatus.dateCreated (int) – Timestamp of when a friend request was sent or null. • friendStatus.dateAccepted (int) – Timestamp of when a friend request was ac- cepted or null. • wishlistStatus.sharing (int)– – WISHLIST_PRIVATE = 0 – WISHLIST_PUBLIC = 1 – WISHLIST_FOR_FRIENDS = 2 Example request: GET /users/info/48628349971017?expand=friendStatus,wishlistStatus,blockedStatus ,!HTTP/1.1 Host: embed.gog.com Example response: { "id": "48628349971017", "username": "Yepoleb", "userSince": 1449237763, "avatars":{ "small": "https://images.gog.com/ ,!3f9e109ac09308f7d52c607c8571e63d5fb482acca499a83e767dfff7f00d57d_avs.jpg", "small2x": "https://images.gog.com/ ,!3f9e109ac09308f7d52c607c8571e63d5fb482acca499a83e767dfff7f00d57d_avs2.jpg", "medium": "https://images.gog.com/ ,!3f9e109ac09308f7d52c607c8571e63d5fb482acca499a83e767dfff7f00d57d_avm.jpg", "medium2x": "https://images.gog.com/ ,!3f9e109ac09308f7d52c607c8571e63d5fb482acca499a83e767dfff7f00d57d_avm2.jpg", "large": "https://images.gog.com/ ,!3f9e109ac09308f7d52c607c8571e63d5fb482acca499a83e767dfff7f00d57d_avl.jpg", "large2x": "https://images.gog.com/ ,!3f9e109ac09308f7d52c607c8571e63d5fb482acca499a83e767dfff7f00d57d_avl2.jpg" }, "friendStatus":{ "id": "48628349971017", "status":0, "dateCreated": null, "dateAccepted": null }, "wishlistStatus":{ "sharing":2, "url": "https://embed.gog.com/u/Yepoleb/wishlist" }, "blockedStatus":{ "blocked": false }, (continues on next page) 1.2. Account Management 7 GOG-API Documentation, Release 0.1 (continued from previous page) "chatStatus":{ "url": "https://embed.gog.com/u/Yepoleb/chat", "isChatRestricted": false } } 1.2.2 Games & Movies GET /user/data/games List of games and movies the account owns. Use GET /account/getFilteredProducts for more than just the IDs. Example request: GET /user/data/games HTTP/1.1 Host: embed.gog.com Example response: { "owned":[ 1207658691, 1207658713, 1207658805, 1207658924, 1207658930, 1207658945, 1207658957, 1929434313, 1949616134, 1432207890, 1444035366, 1444036272, 1443696086 ] } GET /account/gameDetails/(int: game_id).json Returns detailed information about a game. Seems to work with movies as well, but they have their own method. Example request: GET /account/gameDetails/1207658691.json HTTP/1.1 Host: embed.gog.com Example response: { "title": "Unreal Tournament 2004 Editor's Choice Edition", "backgroundImage": "//images-4.gog.com/ ,!ebed1d5546a4fa382d7d36db8aee7f298eac7db3a8dc2f4389120b5b7b3155a9", "cdKey":"", "textInformation":"", "downloads":[ [ (continues on next page) 8 Chapter 1. Contents GOG-API Documentation, Release 0.1 (continued from previous page) "English", {
Recommended publications
  • Balance Sheet Also Improves the Company’S Already Strong Position When Negotiating Publishing Contracts
    Remedy Entertainment Extensive report 4/2021 Atte Riikola +358 44 593 4500 [email protected] Inderes Corporate customer This report is a summary translation of the report “Kasvupelissä on vielä monta tasoa pelattavana” published on 04/08/2021 at 07:42 Remedy Extensive report 04/08/2021 at 07:40 Recommendation Several playable levels in the growth game R isk Accumulate Buy We reiterate our Accumulate recommendation and EUR 50.0 target price for Remedy. In 2019-2020, Remedy’s (previous Accumulate) strategy moved to a growth stage thanks to a successful ramp-up of a multi-project model and the Control game Accumulate launch, and in the new 2021-2025 strategy period the company plans to accelerate. Thanks to a multi-project model EUR 50.00 Reduce that has been built with controlled risks and is well-managed, as well as a strong financial position, Remedy’s (previous EUR 50.00) Sell preconditions for developing successful games are good. In addition, favorable market trends help the company grow Share price: Recommendation into a clearly larger game studio than currently over this decade. Due to the strongly progressing growth story we play 43.75 the long game when it comes to share valuation. High Low Video game company for a long-term portfolio Today, Remedy is a purebred profitable growth company. In 2017-2018, the company built the basis for its strategy and the successful ramp-up of the multi-project model has been visible in numbers since 2019 as strong earnings growth. In Key indicators 2020, Remedy’s revenue grew by 30% to EUR 41.1 million and the EBIT margin was 32%.
    [Show full text]
  • Concert Review: Symphony Help Breathe Life Into Video Games | Deseret News
    11/23/2016 Concert review: Symphony help breathe life into video games | Deseret News Family Concert review: Symphony help breathe life into video games By Scott Iwasaki Published: March 29, 2008 12:00 a.m. "VIDEO GAMES LIVE!" Utah Symphony, Abravanel Hall, Friday, additional performance today, 355-2787 With strobe lights, a big video screen, mirror balls and an electric guitar, it was clear that "Video Games Live!" is not a typical symphony concert. And to have the Utah Symphony give two acts of video-game music life in a place other than the TV was nothing short of a rush. By the end of the show, the symphony did exactly what narrator and game composer and "Video Game Live!" co-founder Tommy Tallarico said it would do — "Show how culturally significant video games and video game music is in the world today." Conducted by video-game-music composer and "Video Game Live!" co-founder Jack Wall, the symphony, aided by the Snow College Choir, took the nearly sold-out audience on a journey from the early days of video gaming to the present. Kicking off the evening with the "blip-bleep" of "Pong" and ending with a rousing crescendo of "Final Fantasy VII," the concert brought old and young gamers together. With a symphonic suite, the concert highlighted pioneering games such as "Donkey Kong," "Dragon's Lair," "Tetris," "Frogger" and "Space Invaders," to name a few. In keeping with the "Space Invaders" theme, Tallarico chose a member from the audience to play a giant screen version of the game while the symphony performed the theme.
    [Show full text]
  • Theescapist 055.Pdf
    in line and everything will be just fine. two articles I fired up Noctis to see the Which, frankly, is about how many of us insanity for myself. That is the loneliest think to this day. With the exception of a game I’ve ever played. For those of you who fell asleep during very brave few. the classical mythology portion of your In response to “Development in a - Danjo Olivaw higher education, the stories all go like In this issue of The Escapist, we take a Vacuum” from The Escapist Forum: this: Some guy decides he no longer look at the stories of a few, brave souls As for the fact that thier isolation has In response to “Footprints in needs the gods, sets off to prove as in the game industry who, for better or been a benefit to them rather than a Moondust” from The Escapist Forum: much and promptly gets smacked down. worse, decided that they, too, were hindrance, that’s what I discussed with I’d just like to say this was a fantastic destined to make their dreams a reality. Oveur (Nathan Richardsson) while in article. I think I’ll have to read Olaf Prometheus, Sisyphus, Icarus, Odysseus, Some actually succeeded, while others Vegas earlier this year at the EVE the stories are full of men who, for crashed and burned. We in the game Gathering. The fact that Iceland is such whatever reason, believed that they industry may not have jealous, angry small country, with a very unique culture were not bound by the normal gods against which to struggle, but and the fact that most of the early CCP constraints of mortality.
    [Show full text]
  • Redeye-Gaming-Guide-2020.Pdf
    REDEYE GAMING GUIDE 2020 GAMING GUIDE 2020 Senior REDEYE Redeye is the next generation equity research and investment banking company, specialized in life science and technology. We are the leading providers of corporate broking and corporate finance in these sectors. Our clients are innovative growth companies in the nordics and we use a unique rating model built on a value based investment philosophy. Redeye was founded 1999 in Stockholm and is regulated by the swedish financial authority (finansinspektionen). THE GAMING TEAM Johan Ekström Tomas Otterbeck Kristoffer Lindström Jonas Amnesten Head of Digital Senior Analyst Senior Analyst Analyst Entertainment Johan has a MSc in finance Tomas Otterbeck gained a Kristoffer Lindström has both Jonas Amnesten is an equity from Stockholm School of Master’s degree in Business a BSc and an MSc in Finance. analyst within Redeye’s tech- Economic and has studied and Economics at Stockholm He has previously worked as a nology team, with focus on e-commerce and marketing University. He also studied financial advisor, stockbroker the online gambling industry. at MBA Haas School of Busi- Computing and Systems and equity analyst at Swed- He holds a Master’s degree ness, University of California, Science at the KTH Royal bank. Kristoffer started to in Finance from Stockholm Berkeley. Johan has worked Institute of Technology. work for Redeye in early 2014, University, School of Business. as analyst and portfolio Tomas was previously respon- and today works as an equity He has more than 6 years’ manager at Swedbank Robur, sible for Redeye’s website for analyst covering companies experience from the online equity PM at Alfa Bank and six years, during which time in the tech sector with a focus gambling industry, working Gazprombank in Moscow he developed its blog and on the Gaming and Gambling in both Sweden and Malta as and as hedge fund PM at community and was editor industry.
    [Show full text]
  • Strategic Features and Terrain Generation for Balanced Heroes of Might and Magic III Maps
    See discussions, stats, and author profiles for this publication at: https://www.researchgate.net/publication/328307880 Strategic Features and Terrain Generation for Balanced Heroes of Might and Magic III Maps Conference Paper · August 2018 DOI: 10.1109/CIG.2018.8490430 CITATIONS READS 2 142 6 authors, including: Jakub Kowalski University of Wroclaw 25 PUBLICATIONS 95 CITATIONS SEE PROFILE Some of the authors of this publication are also working on these related projects: Evolutionary algorithm for DFA synchronization View project "The length of a minimal synchronizing word and the \v{C}erny conjecture' View project All content following this page was uploaded by Jakub Kowalski on 07 November 2018. The user has requested enhancement of the downloaded file. Strategic Features and Terrain Generation for Balanced Heroes of Might and Magic III Maps Jakub Kowalski, Radosław Miernik, Piotr Pytlik, Maciej Pawlikowski, Krzysztof Piecuch, Jakub S˛ekowski Institute of Computer Science, University of Wrocław Wrocław, Poland [email protected], [email protected], [email protected], [email protected], [email protected], [email protected] Abstract—This paper presents an initial approach to a generic algorithms, simulation-based evaluations, or neural networks algorithm for constructing balanced multiplayer maps for strat- [5]. However, their implementations usually have a purely egy games. It focuses on the placement of so-called strategic scientific character, as they are applied mostly to test-bed features – map objects that have a crucial impact on gameplay, usually providing benefits for the players who control them. games and tools [6], [7], [8], [9], [10], [11], [12], [13], The algorithm begins with constructing a logical layout of the indie games [14], or reimplementations of older titles [15], map from the perspective of a single player.
    [Show full text]
  • Download Download
    JOURNAL FOR TRANSCULTURAL PRESENCES & DIACHRONIC IDENTITIES FROM ANTIQUITY TO DATE THERSITES 7/2018 www.thersites.uni-mainz.de CHRISTIAN ROLLINGER (Universität Trier) Battling the Gods An Interview with the Creators of “Apotheon” (2015): Jesse McGibney (Creative Director), Maciej Paprocki (Classical Scholar), Marios Aristopoulos (Composer) in: thersites 7 (2018), 11-29. KEYWORDS Game Studies, Game design, Ancient Mythology, Music design Christian Rollinger Introduction In 2015, Alientrap Games, a small, independent game studio based in To- ronto, released the video game Apotheon for Windows/PC, Mac OS X, Linux, and PlayStation 4. Apotheon is a visually striking side-scrolling ac- tion-adventure game, in which the player takes on the role of an ancient Greek hero fighting against Olympian deities.1 As Nikandreos, his mission is to wrest divine powers from the Gods, in the process becoming a deity himself. The game has received generally favourable reviews and holds an aggregated Metacritic score of 78/100.2 Reviews have lauded the game for its ‘old school’ appeal, being a classic scrolling action title in a time that almost exclusively focuses on 3D action games in the God of War vein.3 While reviews of the game were not universally favourable, with some crit- icising the game’s inventory system and combat modes,4 the distinctive graphics, inspired by Greek vase paintings, and soundtrack have garnered widespread applause, and reviewers praise the game’s “stunning look and feel”5, stating that playing Apotheon “is like being an archaeologist explor- ing and unearthing the mysteries of an unknown world. […] Like the ochre- stained walls of an Athenian temple circa 500 BC, Apotheon’s characters are little more than black silhouettes.”6 1 http://www.alientrap.com/presskit/sheet.php?p=apotheon (accessed 18.09.2018).
    [Show full text]
  • Cosmopolitan Games a Cultural Perspective on Digital Games Jochen Koubek Stefan Werning
    Cosmopolitan Games A Cultural Perspective on Digital Games jochen Koubek Stefan Werning Cosmopolitan Cinema. Arts and politics in the second modernity 03.-05. April 2014 Prof. Dr. Jochen Koubek, Dr. Stefan Werning | Universität Bayreuth | Digitale Medien I. Digital Games and National Identity Winter Games (1985) National Gaming Charts http://www.vgchartz.com/ UK: 14.-23.03.2014 Japan: 14.-23.03.2014 International StarCraft 2 Ranking http://aligulac.com/ National Developments http://en.wikipedia.org/wiki/Category:Video_games_developed_in_Canada Vander Caballero: Papa & Yo. Minority (CA), 2012 National Gaming Industry http://www.industriekompass-games.de/start Developer Publisher Business Service Technical Service National Gaming Culture Organisations Patrizier, 1992 Festivals Awards Anno 1602, 1998 Funding Associations Productions Fußballmanager National Discourses German Angst Localization National Gaming Culture „Consoles have been banned in China since the year 2000,“ Lisa Hanson from market researcher Niko Partners tells Kotaku. „The government thought that was the best way to protect Chinese youth from wasting their minds on video games, after a parental outcry.“ The following year, online gaming exploded, and the market size hit $100 million. So the ban, Hanson says, „didn't stop the 'problem'.“ http://kotaku.com/5587577/why-are-consoles-banned-in-china http://www.youtube.com/watch?v=t8zVzws3lIY National Narratives 1984-95 2010 1996 1989 1999 1999 National History 1492 1776 1863 1880 1915 1929 1937 1940 1944 1947 1957 1963 1967 1986 1990 2004 National Images 1893 World Fair 2013 Bioshock Infinite http://games.parsons.edu/2012/02/the-shadow-of-the-white-cloud/ Capcom: Ōkami (⼤神 ), 2006 Vanillaware: Muramasa: The Demon Blade (朧村正 ), 2009 National Luditives „Football and American Identity examines the social conditions and cultural implications found in the football subculture, represented by core values such as competition, conflict, diversity, power, economic success, fair play, liberty, and patriotism.“ Gerhard Falk: Football and American Identity.
    [Show full text]
  • Multi-User Game Development
    California State University, San Bernardino CSUSB ScholarWorks Theses Digitization Project John M. Pfau Library 2007 Multi-user game development Cheng-Yu Hung Follow this and additional works at: https://scholarworks.lib.csusb.edu/etd-project Part of the Software Engineering Commons Recommended Citation Hung, Cheng-Yu, "Multi-user game development" (2007). Theses Digitization Project. 3122. https://scholarworks.lib.csusb.edu/etd-project/3122 This Project is brought to you for free and open access by the John M. Pfau Library at CSUSB ScholarWorks. It has been accepted for inclusion in Theses Digitization Project by an authorized administrator of CSUSB ScholarWorks. For more information, please contact [email protected]. ' MULTI ;,..USER iGAME DEVELOPMENT '.,A,.'rr:OJ~c-;t.··. PJ:es·~nted ·t•o '.the·· Fa.8lllty· of. Calif0rr1i~ :Siat~:, lJniiV~r~s'ity; .•, '!' San. Bernardinti . - ' .Th P~rt±al Fu1fillrnent: 6f the ~~q11l~~fuents' for the ;pe'gree ···•.:,·.',,_ .. ·... ··., Master. o.f.·_s:tience•· . ' . ¢ornput~r •· ~6i~n¢e by ,•, ' ' .- /ch~ng~Yu Hung' ' ' Jutie .2001. MULTI-USER GAME DEVELOPMENT A Project Presented to the Faculty of California State University, San Bernardino by Cheng-Yu Hung June 2007 Approved by: {/4~2 Dr. David Turner, Chair, Computer Science ate ABSTRACT In the Current game market; the 3D multi-user game is the most popular game. To develop a successful .3D multi-llger game, we need 2D artists, 3D artists and programme.rs to work together and use tools to author the game artd a: game engine to perform \ the game. Most of this.project; is about the 3D model developmept using too.ls such as Blender, and integration of the 3D models with a .level editor arid game engine.
    [Show full text]
  • Metadefender Core V4.13.1
    MetaDefender Core v4.13.1 © 2018 OPSWAT, Inc. All rights reserved. OPSWAT®, MetadefenderTM and the OPSWAT logo are trademarks of OPSWAT, Inc. All other trademarks, trade names, service marks, service names, and images mentioned and/or used herein belong to their respective owners. Table of Contents About This Guide 13 Key Features of Metadefender Core 14 1. Quick Start with Metadefender Core 15 1.1. Installation 15 Operating system invariant initial steps 15 Basic setup 16 1.1.1. Configuration wizard 16 1.2. License Activation 21 1.3. Scan Files with Metadefender Core 21 2. Installing or Upgrading Metadefender Core 22 2.1. Recommended System Requirements 22 System Requirements For Server 22 Browser Requirements for the Metadefender Core Management Console 24 2.2. Installing Metadefender 25 Installation 25 Installation notes 25 2.2.1. Installing Metadefender Core using command line 26 2.2.2. Installing Metadefender Core using the Install Wizard 27 2.3. Upgrading MetaDefender Core 27 Upgrading from MetaDefender Core 3.x 27 Upgrading from MetaDefender Core 4.x 28 2.4. Metadefender Core Licensing 28 2.4.1. Activating Metadefender Licenses 28 2.4.2. Checking Your Metadefender Core License 35 2.5. Performance and Load Estimation 36 What to know before reading the results: Some factors that affect performance 36 How test results are calculated 37 Test Reports 37 Performance Report - Multi-Scanning On Linux 37 Performance Report - Multi-Scanning On Windows 41 2.6. Special installation options 46 Use RAMDISK for the tempdirectory 46 3. Configuring Metadefender Core 50 3.1. Management Console 50 3.2.
    [Show full text]
  • Interim Report • 1 January – 30 September 2018
    THQ NORDIC AB (PUBL) REG NO.: 556582-6558 INTERIM REPORT • 1 JANUARY – 30 SEPTEMBER 2018 EBIT INCREASED 278% TO SEK 90.8 MILLION We had another stable quarter with continued momentum. The strategy of diversification is paying off. Net sales increased by 1,403% to a record SEK 1,272.7 million in the quarter. EBITDA increased by 521% to SEK 214.8 million and EBIT increased by 278% to SEK 90.8 million compared to the same period last year. The gross margin percentage decreased due to a large share of net sales with lower margin within Partner Publishing. Cash flow from operating activities in the quarter was SEK –740.1 million, mainly due to the decision to replace forfaiting of receivables with bank debt within Koch Media. Both THQ Nordic and Koch Media contributed to the group’s EBIT during the quarter. Net sales in the THQ Nordic business area were up 47% to SEK 124.2 million. This was driven by the release of Titan Quest, Red Faction Guerilla Re-Mars-tered and This is the Police 2, in addition to continued performance of Wreckfest. Net sales of Deep Silver were SEK 251.8 million, driven by the release of Dakar 18 and a good performance of Pathfinder Kingmaker at the end of the quarter. The digital net sales of the back-catalogue in both business areas continued to have solid performances. Our Partner Publishing business area had a strong quarter driven by significant releases from our business partners Codemasters, SquareEnix and Sega. During the quarter, we acquired several strong IPs such as Alone in the Dark, Kingdoms of Amalur and Time- splitters.
    [Show full text]
  • Abstract the Goal of This Project Is Primarily to Establish a Collection of Video Games Developed by Companies Based Here In
    Abstract The goal of this project is primarily to establish a collection of video games developed by companies based here in Massachusetts. In preparation for a proposal to the companies, information was collected from each company concerning how, when, where, and why they were founded. A proposal was then written and submitted to each company requesting copies of their games. With this special collection, both students and staff will be able to use them as tools for the IMGD program. 1 Introduction WPI has established relationships with Massachusetts game companies since the Interactive Media and Game Development (IMGD) program’s beginning in 2005. With the growing popularity of game development, and the ever increasing numbers of companies, it is difficult to establish and maintain solid relationships for each and every company. As part of this project, new relationships will be founded with a number of greater-Boston area companies in order to establish a repository of local video games. This project will not only bolster any previous relationships with companies, but establish new ones as well. With these donated materials, a special collection will be established at the WPI Library, and will include a number of retail video games. This collection should inspire more people to be interested in the IMGD program here at WPI. Knowing that there are many opportunities locally for graduates is an important part of deciding one’s major. I knew I wanted to do something with the library for this IQP, but I was not sure exactly what I wanted when I first went to establish a project.
    [Show full text]
  • THQ Nordic Acquires Award-Winning Warhorse Studios, the Studio Behind Kingdom Come: Deliverance
    NOT FOR RELEASE, PUBLICATION OR DISTRIBUTION IN WHOLE OR IN PART, DIRECTLY OR INDIRECTLY, WITHIN OR TO THE UNITED STATES, AUSTRALIA, CANADA, NEW ZEALAND, HONG KONG, JAPAN, SOUTH AFRICA OR ANY OTHER JURISDICTION WHERE SUCH RELEASE, PUBLICATION OR DISTRIBUTION WOULD BE UNLAWFUL OR WOULD REQUIRE REGISTRATION OR ANY OTHER MEASURES. Press release Karlstad (Sweden), 13 February 2019, 6:30 a.m. CET THQ Nordic acquires award-winning Warhorse Studios, the studio behind Kingdom Come: Deliverance THQ Nordic AB's indirectly wholly owned subsidiary Koch Media GmbH has today entered into an agreement to acquire Prague based Warhorse Studios s.r.o., a leading game developer behind the successful award-winning title Kingdom Come: Deliverance. The purchase price amounts to 33.2MEUR on a cash and debt free basis. Warhorse’s Net Revenues in 2018 amounted to approximately 42 MEUR1 , with an adjusted EBIT of approximately 28 MEUR1. ”Warhorse Studios is one of the leading independent studios in Europe and I am proud to welcome them to the THQ Nordic group. Kingdom Come: Deliverance, which has now sold over 2 million copies, has been a great success since the release exactly one year ago. I look forward to continue working with the founders who will continue managing the studio under strong creative freedom for many years to come", says Lars Wingefors, CEO of THQ Nordic AB. The transaction in brief • THQ Nordic AB ("THQ Nordic" or "The Company") acquires 100 percent of the shares in Warhorse Studios s.r.o. ("Warhorse") through its indirectly wholly owned subsidiary Koch Media GmbH ("Koch Media").
    [Show full text]