AiDon Posted January 22, 2018 Posted January 22, 2018 1 hour ago, johneb21945 said: Question: If I want to download and install the beta version, can I still keep and run the released version on the same computer? Yes, it will install to a different directory. Both PC’s Win 11 x64 System PC1 ASUS ROG Strix - AMD Ryzen 9 6900X CPU @ 3.3GHz. 32GB RAM - GPU 1: AMD Radeon integrated. GPU 2: NVIDIA RTX 3060, 6GB PC2 ASUS ProArt PZ13 - Snapdragon X Plus X1P42100 (8 CPUs), 16GB RAM - Neural Processor - Qualcomm® Hexagon™ NPU up to 45TOPS - GPU 1: Qualcomm Adreno Graphics,
Pšenda Posted January 22, 2018 Posted January 22, 2018 5 hours ago, johneb21945 said: Question: If I want to download and install the beta version, can I still keep and run the released version on the same computer? Yes. Affinity Store (MSI/EXE): Affinity Suite (ADe, APh, APu) 2.5.7.2948 (Retail) Dell OptiPlex 7060, i5-8500 3.00 GHz, 16 GB, Intel UHD Graphics 630, Dell P2417H 1920 x 1080, Windows 11 Pro, Version 24H2, Build 26100.2605. Dell Latitude E5570, i5-6440HQ 2.60 GHz, 8 GB, Intel HD Graphics 530, 1920 x 1080, Windows 11 Pro, Version 24H2, Build 26100.2605. Intel NUC5PGYH, Pentium N3700 2.40 GHz, 8 GB, Intel HD Graphics, EIZO EV2456 1920 x 1200, Windows 10 Pro, Version 21H1, Build 19043.2130.
Mark Ingram Posted January 22, 2018 Author Posted January 22, 2018 8 hours ago, johneb21945 said: Question: If I want to download and install the beta version, can I still keep and run the released version on the same computer? Yes, they're separate.
Dennis585 Posted January 22, 2018 Posted January 22, 2018 When is this beta becoming available as final in the Windows 10 Store?
dominik Posted January 22, 2018 Posted January 22, 2018 4 minutes ago, Dennis585 said: When is this beta becoming available as final in the Windows 10 Store? Hello @Dennis585 I am just a regular forum user. From what I know from past releases they don't give a certain date for the next release. We just have to be patient Cheers, d. Mark Ingram, Hofnaar and Dennis585 3 Affinity Suite on Windows (V2) and iPad (V2). Beta testing when available. Windows 11 64-bit - Core i7 - 16GB - Intel HD Graphics 4600 & NVIDIA GeForce GTX 960M iPad pro 9.7" + Apple Pencil
johneb21945 Posted January 22, 2018 Posted January 22, 2018 Thank you everyone who responded about my beta installation inquiry. I downloaded it, and started playing with it. I definitely see improvements already. Nice job guys! John Mark Ingram 1
Dennis585 Posted January 23, 2018 Posted January 23, 2018 Can anyone in here confirm that RAF files from a Fujifilm X-A3 work in this beta?
AlainP Posted January 23, 2018 Posted January 23, 2018 1 hour ago, Dennis585 said: Can anyone in here confirm that RAF files from a Fujifilm X-A3 work in this beta? Can someone test this file in the Affinity Photo beta? I could not open it in the latest beta. All I get is a vertical white stripe with a few dots on it. See this post to send it to the developpers. Quote -- Window 11 - 32 gb - Intel I7 - 8700 - NVIDIA GeForce GTX 1060 -- iPad Pro 2020 - 12,9 - 256 gb - Apple Pencil 2 -- iPad 9th gen 256 gb - Apple Pencil 1 -- Macbook Air 15" - Mac mini M2-Pro - 16 gb
samojede Posted January 23, 2018 Posted January 23, 2018 I could not open it in the latest beta. All I get is a vertical white stripe with a few dots on it. Roland
Staff MEB Posted January 23, 2018 Staff Posted January 23, 2018 3 hours ago, Dennis585 said: Can anyone in here confirm that RAF files from a Fujifilm X-A3 work in this beta? Hi Dennis585, Welcome to Affinity Forums No, this camera is not yet supported on Affinity Photo for Windows, only on Mac using the Apple (Core Image RAW) engine on macOS High Sierra. We still have to add support for it on our own RAW engine (Serif Labs). A Guide to Learning Affinity Software
Dennis585 Posted January 23, 2018 Posted January 23, 2018 1 hour ago, MEB said: Hi Dennis585, Welcome to Affinity Forums No, this camera is not yet supported on Windows, only on Mac using the Apple (Core Image RAW) engine on macOS High Sierra. The RAF files work for me on Windows 10 using: Adobe Photoshop, Lightroom, RAW Converter and XnView.
Staff MEB Posted January 23, 2018 Staff Posted January 23, 2018 When i said supported on Windows i meant supported by our RAW engine (Serif Labs) in Affinity Photo for Windows. Each of these programs use their own engine to display/process RAW images. A Guide to Learning Affinity Software
Dennis585 Posted January 23, 2018 Posted January 23, 2018 9 minutes ago, MEB said: When i said supported on Windows i meant supported by our RAW engine (Serif Labs) in Affinity Photo for Windows. Each of these programs use their own engine to display/process RAW images. When will it be supported in Affinity Photo for Windows?
Staff MEB Posted January 23, 2018 Staff Posted January 23, 2018 Hi Dennis585, I don't know for sure. We usually ship/add camera updates with new upgrades so there's a chance it may be supported in Affinity Photo v1.7 but i can't assure you this at this point, sorry. Dennis585 1 A Guide to Learning Affinity Software
eppx Posted January 23, 2018 Posted January 23, 2018 On 1/18/2018 at 2:05 AM, Mark Ingram said: The author of PTLens is welcome to come to our forum and talk to us. I've already worked with FilterForge to improve our Photoshop filter support. Well, here I am. I'm using the standard interface to transfer images plus a special interface to obtain EXIF data as that's needed for PTLens. Do you want to take this offline? Being a developer you probably have access to my email address. // examine EXIF info uint8 *exif = NULL; rc = getProperty(0x3842494D, propEXIFData, 0, &simpProp, &compProp); if (rc == 0) { size = getSize(compProp); if (size) { exif = (uint8 *)lock(compProp, false); if (exif) { processExif(exif, size); unlock(compProp); } } dispose(compProp); if (!exif && gbl->dlg.pspHost) getPSPexif(); } // also try XMP for lens info getProperty = gFr->propertyProcs->getPropertyProc; rc = getProperty(0x3842494D, propXMP, 0, &simpProp, &compProp); if (rc == 0) { size = getSize(compProp); if (size) { char *xmp = (char *)lock(compProp, false); if (xmp) { processXmp(xmp, size); unlock(compProp); } } dispose(compProp); } komtur, Hofnaar, altae and 5 others 8
Mark Ingram Posted January 24, 2018 Author Posted January 24, 2018 9 hours ago, eppx said: Well, here I am. I'm using the standard interface to transfer images plus a special interface to obtain EXIF data as that's needed for PTLens. Do you want to take this offline? Being a developer you probably have access to my email address. I've sent an email to the address on your forum profile. Hopefully you've got it!
Heckmann Posted January 31, 2018 Posted January 31, 2018 Hello, I like this Beta. It's a big enhancement. Unfortunatly the selection brush doesn't work at all. In the normal version it's fine. Greetings from Germany!
Staff MEB Posted January 31, 2018 Staff Posted January 31, 2018 Hi Heckmann, Welcome to Affinity Forums Make sure you don't have the Mode in the context toolbar set to Subtract. If so set it to Add. Let me know if it still doesn't work. A Guide to Learning Affinity Software
hybit Posted January 31, 2018 Posted January 31, 2018 Just wanted to drop a quick note, that for my system (Lenovo T430s, i5 2nd gen, 8 GB RAM, nVidia NVS 5200M, SSD) this beta build came with a massive improvement of performance, which is a great relief. lags in font selection are gone export dialogue opens immediately now (was delayed by roughly 2 seconds before) switching between various tools is much swifter Overall, big step forward for me. Thanks guys! PaulAffinity 1
Recommended Posts