Autor Thema: Portable Software und Tools für USB-Sticks  (Gelesen 1521214 mal)

0 Mitglieder und 7 Gäste betrachten dieses Thema.

Offline SiLæncer

  • Cheff-Cubie
  • *****
  • Beiträge: 191383
  • Ohne Input kein Output
    • DVB-Cube
Google Chrome Portable Beta 58.0.3029.68
« Antwort #9510 am: 19 April, 2017, 13:00 »
Zitat
The beta channel has been updated to 58.0.3029.68 for Windows, Mac, and Linux.
A partial list of changes is available in the log.

Quelle : https://chromereleases.googleblog.com/2017/04/beta-channel-update-for-desktop_12.html

Download : Klick

http://portableapps.com/

Arbeits.- Testrechner :

Intel® Core™ i7-6700 (4 x 3.40 GHz / 4.00 GHz)
16 GB (2 x 8 GB) DDR4 SDRAM 2133 MHz
250 GB SSD Samsung 750 EVO / 1 TB HDD
ZOTAC Geforce GTX 1080TI AMPExtreme Core Edition 11GB GDDR5
MSI Z170A PC Mate Mainboard
DVD-Brenner Laufwerk
Microsoft Windows 10 Home 64Bit

TT S2 3200 ( BDA Treiber 5.0.1.8 ) + Terratec Cinergy 1200 C ( BDA Treiber 4.8.3.1.8 )

Offline SiLæncer

  • Cheff-Cubie
  • *****
  • Beiträge: 191383
  • Ohne Input kein Output
    • DVB-Cube
Google Chrome Portable Dev 59.0.3071.9
« Antwort #9511 am: 19 April, 2017, 13:30 »
Zitat
The dev channel has been updated to 59.0.3071.9/.10 for Windows and 59.0.3071.9 for Mac and Linux.
A partial list of changes is available in the log.

Quelle : https://chromereleases.googleblog.com/2017/04/dev-channel-update-for-desktop_18.html

Download : Klick

http://portableapps.com/

Arbeits.- Testrechner :

Intel® Core™ i7-6700 (4 x 3.40 GHz / 4.00 GHz)
16 GB (2 x 8 GB) DDR4 SDRAM 2133 MHz
250 GB SSD Samsung 750 EVO / 1 TB HDD
ZOTAC Geforce GTX 1080TI AMPExtreme Core Edition 11GB GDDR5
MSI Z170A PC Mate Mainboard
DVD-Brenner Laufwerk
Microsoft Windows 10 Home 64Bit

TT S2 3200 ( BDA Treiber 5.0.1.8 ) + Terratec Cinergy 1200 C ( BDA Treiber 4.8.3.1.8 )

Offline SiLæncer

  • Cheff-Cubie
  • *****
  • Beiträge: 191383
  • Ohne Input kein Output
    • DVB-Cube
GPU-Z Portable 1.20.0
« Antwort #9512 am: 19 April, 2017, 16:15 »
GPU-Z is a lightweight utility designed to give you all information about your video card and GPU.

Freeware

Whats new:>>

Fixed BIOS extraction resulting in corrupted BIOS on Radeon RX 500 Series

http://portableapps.com/

Arbeits.- Testrechner :

Intel® Core™ i7-6700 (4 x 3.40 GHz / 4.00 GHz)
16 GB (2 x 8 GB) DDR4 SDRAM 2133 MHz
250 GB SSD Samsung 750 EVO / 1 TB HDD
ZOTAC Geforce GTX 1080TI AMPExtreme Core Edition 11GB GDDR5
MSI Z170A PC Mate Mainboard
DVD-Brenner Laufwerk
Microsoft Windows 10 Home 64Bit

TT S2 3200 ( BDA Treiber 5.0.1.8 ) + Terratec Cinergy 1200 C ( BDA Treiber 4.8.3.1.8 )

Offline SiLæncer

  • Cheff-Cubie
  • *****
  • Beiträge: 191383
  • Ohne Input kein Output
    • DVB-Cube
Portable Java Runtime Environment 8 Update 131
« Antwort #9513 am: 19 April, 2017, 17:30 »
Changelog

CHANGES:

MD5 added to jdk.jar.disabledAlgorithms Security property:

This JDK release introduces a new restriction on how MD5 signed JAR files are verified. If the signed JAR file uses MD5, signature verification operations will ignore the signature and treat the JAR as if it were unsigned. This can potentially occur in the following types of applications that use signed JAR files:

Applets or Web Start Applications

Standalone or Server Applications that are run with a SecurityManager enabled and are configured with a policy file that grants permissions based on the code signer(s) of the JAR file.
The list of disabled algorithms is controlled via the security property, jdk.jar.disabledAlgorithms, in the java.security file. This property contains a list of disabled algorithms and key sizes for cryptographically signed JAR files.
To check if a weak algorithm or key was used to sign a JAR file, one can use the jarsigner binary that ships with this JDK. Running "jarsigner -verify" on a JAR file signed with a weak algorithm or key will print more information about the disabled algorithm or key.

New system property to control caching for HTTP SPNEGO connection:

A new JDK implementation specific system property to control caching for HTTP SPNEGO (Negotiate/Kerberos) connections is introduced. Caching for HTTP SPNEGO connections remains enabled by default, so if the property is not explicitly specified, there will be no behavior change.
When connecting to an HTTP server that uses SPNEGO to negotiate authentication, and when connection and authentication with the server is successful, the authentication information will then be cached and reused for further connections to the same server. In addition, connecting to an HTTP server using SPNEGO usually involves keeping the underlying connection alive and reusing it for further requests to the same server. In some applications, it may be desirable to disable all caching for the HTTP SPNEGO (Negotiate/Kerberos) protocol in order to force requesting new authentication with each new request to the server.

With this change, we now provide a new system property that allows control of the caching policy for HTTP SPNEGO connections. If jdk.spnego.cache is defined and evaluates to false, then all caching will be disabled for HTTP SPNEGO connections. Setting this system property to false may, however, result in undesirable side effects:

Performance of HTTP SPNEGO connections may be severely impacted as the connection will need to be re-authenticated with each new request, requiring several communication exchanges with the server.
Credentials will need to be obtained again for each new request, which, depending on whether transparent authentication is available or not, and depending on the global Authenticator implementation, may result in a popup asking the user for credentials for every new request.

New system property to control caching for HTTP NTLM connection:

A new JDK implementation specific system property to control caching for HTTP NTLM connection is introduced. Caching for HTTP NTLM connection remains enabled by default, so if the property is not explicitly specified, there will be no behavior change.
On some platforms, the HTTP NTLM implementation in the JDK can support transparent authentication, where the system user credentials are used at system level. When transparent authentication is not available or unsuccessful, the JDK only supports getting credentials from a global authenticator. If connection to the server is successful, the authentication information will then be cached and reused for further connections to the same server. In addition, connecting to an HTTP NTLM server usually involves keeping the underlying connection alive and reusing it for further requests to the same server. In some applications, it may be desirable to disable all caching for the HTTP NTLM protocol in order to force requesting new authentication with each new requests to the server.

With this change, we now provide a new system property that allows control of the caching policy for HTTP NTLM connections. If jdk.ntlm.cache is defined and evaluates to false, then all caching will be disabled for HTTP NTLM connections. Setting this system property to false may, however, result in undesirable side effects:

Performance of HTTP NTLM connections may be severely impacted as the connection will need to be re-authenticated with each new request, requiring several communication exchanges with the server.
Credentials will need to be obtained again for each new request, which, depending on whether transparent authentication is available or not, and depending on the global Authenticator implementation, may result in a popup asking the user for credentials for every new request.

New version of VisualVM:

VisualVM 1.3.9 was released on October 4th, 2016 and has been integrated into 8u131.

BUG FIXES:

Correction of IllegalArgumentException from TLS handshake:

A recent issue from the JDK-8173783 fix can cause issue for some TLS servers. The problem originates from an IllegalArgumentException thrown by the TLS handshaker code: java.lang.IllegalArgumentException: System property jdk.tls.namedGroups(null) contains no supported elliptic curves. The issue can arise when the server doesn't have elliptic curve cryptography support to handle an elliptic curve name extension field (if present). Users are advised to upgrade to this release. By default, JDK 7 Updates and later JDK families ship with the SunEC security provider which provides elliptic curve cryptography support. Those releases should not be impacted unless security providers are modified.
[close]

Download:

Java Runtime Environment 8 Update 131

Java Runtime Environment 8 Update 131 x64

Arbeits.- Testrechner :

Intel® Core™ i7-6700 (4 x 3.40 GHz / 4.00 GHz)
16 GB (2 x 8 GB) DDR4 SDRAM 2133 MHz
250 GB SSD Samsung 750 EVO / 1 TB HDD
ZOTAC Geforce GTX 1080TI AMPExtreme Core Edition 11GB GDDR5
MSI Z170A PC Mate Mainboard
DVD-Brenner Laufwerk
Microsoft Windows 10 Home 64Bit

TT S2 3200 ( BDA Treiber 5.0.1.8 ) + Terratec Cinergy 1200 C ( BDA Treiber 4.8.3.1.8 )

Offline SiLæncer

  • Cheff-Cubie
  • *****
  • Beiträge: 191383
  • Ohne Input kein Output
    • DVB-Cube
Money Manager Ex Portable 1.3.3
« Antwort #9514 am: 19 April, 2017, 18:31 »
Money Manager Ex is a personal finance software that helps you to organize your finances and keeps track of where, when and how the money goes. It is also a great tool to get a bird's eye view of your financial worth.

License: GPL

Features

    * AES Encryption Support
    * Maintain checking, credit card, savings, stock investment accounts
    * Budgeting
    * Maintain and Track Fixed Assets with depreciation
    * Reminders for recurring Bills and Deposits
    * Simple one click reporting
    * Cash Flow Forecasting
    * Graphs, Piecharts
    * International language support (Available in 24 languages)
    * Import data from any CSV format, QIF [ Microsoft Money ]
    * Printing, Exporting to HTML, CSV
    * Non-Proprietary SQLite Database

Changelog

Fix: assets #1074 #1070
Feature: Search box not working #1060

[close]

Download : Klick

http://portableapps.com/

Arbeits.- Testrechner :

Intel® Core™ i7-6700 (4 x 3.40 GHz / 4.00 GHz)
16 GB (2 x 8 GB) DDR4 SDRAM 2133 MHz
250 GB SSD Samsung 750 EVO / 1 TB HDD
ZOTAC Geforce GTX 1080TI AMPExtreme Core Edition 11GB GDDR5
MSI Z170A PC Mate Mainboard
DVD-Brenner Laufwerk
Microsoft Windows 10 Home 64Bit

TT S2 3200 ( BDA Treiber 5.0.1.8 ) + Terratec Cinergy 1200 C ( BDA Treiber 4.8.3.1.8 )

Offline SiLæncer

  • Cheff-Cubie
  • *****
  • Beiträge: 191383
  • Ohne Input kein Output
    • DVB-Cube
Portable VirtualBox 5.1.20-114628
« Antwort #9515 am: 19 April, 2017, 20:00 »
Changelog

This is a maintenance release. The following items were fixed and/or added:

GUI: don't check if the Extension Pack is up-to-date if the user is about to install a new Extension Pack (bug #16317)
GUI: fixed a possible crash when switching a multi-monitor VM into full-screen or seamless mode
GUI: fixed non-literal shortcuts if the keyboard is not captured (5.1.10 regression; Windows hosts only)
GUI: several mini-toolbar fixes in full-screen / seamless mode (X11 hosts only)
GUI: don't crash on restoring defaults in the appliance import dialog
Windows Additions: another fix for automatic logins for Windows Vista and newer (bug #15904)
ICH9: fix for Windows guests with a huge amount (>64G) of guest memory
BIOS: fixed El Torito hard disk emulation geometry calculation (thanks Dwight Engen)

[close]

https://www.upload.ee/files/6764398/VirtualBox_Portable_5.1.x_32-64_Multilingual_Online.exe.html

In first screen enter (twice if Extension Pack needed): 5.1.20-114628

Arbeits.- Testrechner :

Intel® Core™ i7-6700 (4 x 3.40 GHz / 4.00 GHz)
16 GB (2 x 8 GB) DDR4 SDRAM 2133 MHz
250 GB SSD Samsung 750 EVO / 1 TB HDD
ZOTAC Geforce GTX 1080TI AMPExtreme Core Edition 11GB GDDR5
MSI Z170A PC Mate Mainboard
DVD-Brenner Laufwerk
Microsoft Windows 10 Home 64Bit

TT S2 3200 ( BDA Treiber 5.0.1.8 ) + Terratec Cinergy 1200 C ( BDA Treiber 4.8.3.1.8 )

Offline SiLæncer

  • Cheff-Cubie
  • *****
  • Beiträge: 191383
  • Ohne Input kein Output
    • DVB-Cube
OpenTTD Portable 1.7.0
« Antwort #9516 am: 19 April, 2017, 20:15 »
Changelog

- Feature: [NewGRF] Extend the DCxx range to D800-DFFF (r27769)
- Feature: [NewGRF, script] Increase the maximum number of GameScript texts to 64k, and NewGRF texts to 512k (r27758)
- Feature: [NewGRF] CB 37 results 0x0401 and 0x0800-0BFF for improved control of display of input cargos in the industry GUI (r27751)
- Feature: Sprites missing in outdated basesets are now provided by openttd.grf (r27732, r27731, r27730)
- Feature: [NewGRF] String command 9A 1E to print the name of a cargo type (r27707, r27706)
- Feature: [Debug] Assign descriptive names to threads [FS#6471] (r27674, r27673, r27670)
- Feature: [NewGRF] Allow composing vehicles from multiple sprites (r27668)
- Change: Enable realistic train and road vehicle acceleration by default (r27760)
- Change: Hide the drive-in stops from the tram station picker (r27734)
- Change: Do not count static NewGRF when checking for the maximum number of NewGRFs in a game (r27729)
- Change: Limit waypoint area by maximum station spread during dragging (r27710)
- Change: [Build] Re-enable Wnarrowing for gcc 4.9+ [FS#6532] (r27709, r27703)
- Change: List railtype of rail tiles explicitly in the tile info window (r27686)
- Change: Re-arrange the autoreplace GUI for trains, and do not filter it by railtype by default (r27683)
- Change: Various performance improvements to CargoDist and LinkGraphs (r27682, r27681, r27614, r27613, r27612, r27611)
- Change: Improve randomisation of rough land appearance (r27657)
- Change: [Build] Enable C++11 for clang 3.3 (r27654)
- Fix: Insufficient thread synchronisation when switching blitters lead to crashes [FS#6510] (r27775)
- Fix: Enabling palette animation for 32bpp blitters while paused skipped initialisation of the palette and resulted in black windows [FS#5889] (r27774)
- Fix: Intro games other than the traditional nightly one would cause townname NewGRFs to not get activated in the game options [FS#5819] (r27772)
- Fix: Some variables were not reset between loading old savegames, which made loading them fail [FS#6540] (r27770)
- Fix: Removing secondary roadtypes from bridges was factor 2 too cheap [FS#6538] (r27746)
- Fix: Extra viewports did not center on the selected tile [FS#6537] (r27743)
- Fix: [Build] Building on newer OSX versions with newer SDKs [FS#6295, FS#6502] (r27727, r27675)
- Fix: Improve error message when trying to build rail track over a depot  (r27726)
- Fix: Rescanning NewGRF in-game could break the loaded NewGRF, if very many NewGRF were in use (r27721)
- Fix: Text could overflow various GUI elements [FS#6527] (r27713)
- Fix: Memory leak when reloading NewGRF (r27690, r27688, r27687)
- Fix: When removing objects of bankrupt companies the tiles may revert to canal. In that case also check the ownership of the canal [FS#6511] (r27656)
- Fix: Make the console file commands operate independent of the save/load GUI (r27645)
- Fix: When dragging vehicles in group or depot GUI, draw the complete articulated vehicle (r27632)
- Fix: When dragging multiple vehicles in the depot, make the destination gap as long as the chain instead of just considering the first vehicle (r27629)
- Fix: [Build] Change the GCC version detection so that it works with two-digit and truncated versions [FS#6487] (r27623, r27616)
- Fix: Do not hide filtered and highlighted industries by overlapping tiles in the zoomed-out smallmap (r27622, r27621, r27620)
- Fix: [Script] Kill scripts, when a non-suspendable valuator call takes way too long [FS#6473] (r27594)

[close]

Download: Klick

http://portableapps.com/

Arbeits.- Testrechner :

Intel® Core™ i7-6700 (4 x 3.40 GHz / 4.00 GHz)
16 GB (2 x 8 GB) DDR4 SDRAM 2133 MHz
250 GB SSD Samsung 750 EVO / 1 TB HDD
ZOTAC Geforce GTX 1080TI AMPExtreme Core Edition 11GB GDDR5
MSI Z170A PC Mate Mainboard
DVD-Brenner Laufwerk
Microsoft Windows 10 Home 64Bit

TT S2 3200 ( BDA Treiber 5.0.1.8 ) + Terratec Cinergy 1200 C ( BDA Treiber 4.8.3.1.8 )

Offline SiLæncer

  • Cheff-Cubie
  • *****
  • Beiträge: 191383
  • Ohne Input kein Output
    • DVB-Cube
Portable XnView 2.40
« Antwort #9517 am: 19 April, 2017, 21:30 »
Changelog

CMYK image default color profile
viewtopic.php?f=35&t=28839
RGBA resize (bilinear)
viewtopic.php?t=29238
viewtopic.php?t=34493
Ctrl+RMB to copy color
Capture rectangle on second monitor
Print 50+ via command line
Filelist to print
LIBPNG 1.6.29
SQLite 3.18.0
ZLIB 1.2.11
LCMS 2.8
BMP 2+10+10+10
Category removed if delete file
Category moved with Cut/Paste
8BF & undo
'Purge Now'
OpenEXR updated
Resize gamma correction
Change timestamp & DST
Selection + Tab
GIF loop
PAM format
JPEG 2000
Maximize on first monitor
Resize default size
PEF for thumbnail's folder
Cancel removed from Setup wizard
Previous/Next file & RecognizeByExt == false
Next/Previous & video
Better dialog for update
WebP plugin updated
OpenJPEG2000 updated
RIOT addon updated
PNGOUT updated
X3F with only embedded JPEG
NConvert: text with -text_rotation
NConvert: -text_border added

[close]
http://www.mediafire.com/download/h7wv51m35mnr89n/XnView_Portable_2.x.x_Multilingual_Online.exe

Arbeits.- Testrechner :

Intel® Core™ i7-6700 (4 x 3.40 GHz / 4.00 GHz)
16 GB (2 x 8 GB) DDR4 SDRAM 2133 MHz
250 GB SSD Samsung 750 EVO / 1 TB HDD
ZOTAC Geforce GTX 1080TI AMPExtreme Core Edition 11GB GDDR5
MSI Z170A PC Mate Mainboard
DVD-Brenner Laufwerk
Microsoft Windows 10 Home 64Bit

TT S2 3200 ( BDA Treiber 5.0.1.8 ) + Terratec Cinergy 1200 C ( BDA Treiber 4.8.3.1.8 )

Offline SiLæncer

  • Cheff-Cubie
  • *****
  • Beiträge: 191383
  • Ohne Input kein Output
    • DVB-Cube
Mozilla Firefox, Portable Edition 53.0
« Antwort #9518 am: 20 April, 2017, 07:08 »
Changelog

New:

Improved graphics stability for Windows users with the addition of compositor process separation (Quantum Compositor)
Two new 'compact' themes available in Firefox, dark and light, based on the Firefox Developer Edition theme
Lightweight themes are now applied in private browsing windows
Reader Mode now displays estimated reading time for the page

Changed:

Updated the design of site permission requests to make them harder to miss and easier to understand
32-bit Mac OS X is no longer supported. 32-bit Mac OS X users can switch to Firefox ESR 52 to continue receiving security updates.
Updates for Mac OS X are smaller in size compared to updates for Firefox 52
Media playback on new tabs is blocked until the tab is visible
New visual design for audio and video controls
The last few characters of shortened tab titles fade out instead of being replaced by ellipses to keep more of the title visible
Media playback on new tabs is blocked until the tab is visible

Developer:

Support for WebM video with alpha, which allows playing videos with transparent backgrounds
More details on changes for web developers at https://developer.mozilla.org/en-US/Firefox/Releases/53#Changes_for_Web_developers

[close]

http://portableapps.com/

Arbeits.- Testrechner :

Intel® Core™ i7-6700 (4 x 3.40 GHz / 4.00 GHz)
16 GB (2 x 8 GB) DDR4 SDRAM 2133 MHz
250 GB SSD Samsung 750 EVO / 1 TB HDD
ZOTAC Geforce GTX 1080TI AMPExtreme Core Edition 11GB GDDR5
MSI Z170A PC Mate Mainboard
DVD-Brenner Laufwerk
Microsoft Windows 10 Home 64Bit

TT S2 3200 ( BDA Treiber 5.0.1.8 ) + Terratec Cinergy 1200 C ( BDA Treiber 4.8.3.1.8 )

Offline SiLæncer

  • Cheff-Cubie
  • *****
  • Beiträge: 191383
  • Ohne Input kein Output
    • DVB-Cube
Google Chrome Portable 58.0.3029.81
« Antwort #9519 am: 20 April, 2017, 11:30 »
Zitat
The Chrome team is delighted to announce the promotion of Chrome 58 to the stable channel for Windows, Mac and Linux. This will roll out over the coming days/weeks.

Chrome 58.0.3029.81 contains a number of fixes and improvements -- a list of changes is available in the log.  Watch out for upcoming Chrome and Chromium blog posts about new features and big efforts delivered in 58.
Security Fixes and Rewards
Note: Access to bug details and links may be kept restricted until a majority of users are updated with a fix. We will also retain restrictions if the bug exists in a third party library that other projects similarly depend on, but haven’t yet fixed.

This update includes 29 security fixes. Below, we highlight fixes that were contributed by external researchers. Please see the Chrome Security Page for more information.


[$3000][695826] High CVE-2017-5057: Type confusion in PDFium. Credit to Guang Gong of Alpha Team, Qihoo 360
[$2000][694382] High CVE-2017-5058: Heap use after free in Print Preview. Credit to Khalil Zhani
[$N/A][684684] High CVE-2017-5059: Type confusion in Blink. Credit to SkyLined working with Trend Micro's Zero Day Initiative
[$2000][683314] Medium CVE-2017-5060: URL spoofing in Omnibox. Credit to Xudong Zheng
[$2000][672847] Medium CVE-2017-5061: URL spoofing in Omnibox. Credit to Haosheng Wang (@gnehsoah)
[$1500][702896] Medium CVE-2017-5062: Use after free in Chrome Apps. Credit to anonymous
[$1000][700836] Medium CVE-2017-5063: Heap overflow in Skia. Credit to Sweetchip
[$1000][693974] Medium CVE-2017-5064: Use after free in Blink. Credit to Wadih Matar
[$500][704560] Medium CVE-2017-5065: Incorrect UI in Blink. Credit to Khalil Zhani
[$500][690821] Medium CVE-2017-5066: Incorrect signature handing in Networking. Credit to chenchu
[$500][648117] Medium CVE-2017-5067: URL spoofing in Omnibox. Credit to Khalil Zhani
[$N/A][691726] Low CVE-2017-5069: Cross-origin bypass in Blink. Credit to Michael Reizelman


We would also like to thank all security researchers that worked with us during the development cycle to prevent security bugs from ever reaching the stable channel.


As usual, our ongoing internal security work was responsible for a wide range of fixes:

    [713205] Various fixes from internal audits, fuzzing and other initiatives

Many of our security bugs are detected using AddressSanitizer, MemorySanitizer, Control Flow Integrity, or libFuzzer.

Quelle : https://chromereleases.googleblog.com/2017/04/stable-channel-update-for-desktop.html

Download :

Google Chrome Portable 58.0.3029.81

Google Chrome Portable 58.0.3029.81 x64

http://portableapps.com/

Arbeits.- Testrechner :

Intel® Core™ i7-6700 (4 x 3.40 GHz / 4.00 GHz)
16 GB (2 x 8 GB) DDR4 SDRAM 2133 MHz
250 GB SSD Samsung 750 EVO / 1 TB HDD
ZOTAC Geforce GTX 1080TI AMPExtreme Core Edition 11GB GDDR5
MSI Z170A PC Mate Mainboard
DVD-Brenner Laufwerk
Microsoft Windows 10 Home 64Bit

TT S2 3200 ( BDA Treiber 5.0.1.8 ) + Terratec Cinergy 1200 C ( BDA Treiber 4.8.3.1.8 )

Offline SiLæncer

  • Cheff-Cubie
  • *****
  • Beiträge: 191383
  • Ohne Input kein Output
    • DVB-Cube

Arbeits.- Testrechner :

Intel® Core™ i7-6700 (4 x 3.40 GHz / 4.00 GHz)
16 GB (2 x 8 GB) DDR4 SDRAM 2133 MHz
250 GB SSD Samsung 750 EVO / 1 TB HDD
ZOTAC Geforce GTX 1080TI AMPExtreme Core Edition 11GB GDDR5
MSI Z170A PC Mate Mainboard
DVD-Brenner Laufwerk
Microsoft Windows 10 Home 64Bit

TT S2 3200 ( BDA Treiber 5.0.1.8 ) + Terratec Cinergy 1200 C ( BDA Treiber 4.8.3.1.8 )

Offline SiLæncer

  • Cheff-Cubie
  • *****
  • Beiträge: 191383
  • Ohne Input kein Output
    • DVB-Cube
Portable Opera 45.0.2552.453 Beta
« Antwort #9521 am: 20 April, 2017, 18:00 »
Zitat
Hi,

Today’s beta update brings valuable fixes for recent, annoying issues as well as further improvements and security patches. It’ll be worth updating your browser for these fixes.

The most notable repairs:

    Smaller installer package
    Fix for memory leak when watching videos
    Fixed problem for some pages not rendering when opening in a new tab

Beta was enriched with a security patch to prevent possible phishing with unicode domains (that patch is already included in the latest Opera Developer). Sites with possible malicious intentions are much easier to spot.

Changelog

DNA-60359 Confusing label in O-menu booksmarks trash for deleting bookmarks object
DNA-60369 [Mac] Sync icon in toolbar has a shadow effect
DNA-60428 Secure connection dialog shows up to high
DNA-60430 [Adblocker] List is not shown as enabled when clicking fast ☣
DNA-60466 [Mac] Extension button should not appear on identity window
DNA-60508 Some links opened in new tab don’t render
DNA-60522 Sound notifications are ON while sidebar is unpinned ☣
DNA-60552 [Linux] H.264 video support broken
DNA-60569 [Mac Reborn] Transparency on address bar dropdown when dark theme enabled
DNA-60626 Never ending memory use increase on youtube 24/7 stream
DNA-60643 Provide default theme that is 200kB the largest
DNA-60646 [WebUI] Wallpapers wont load immediately

[close]

Quelle & weitere Infos : https://www.opera.com/blogs/desktop/2017/04/opera-45-0-2552-453-beta-update/

https://www.upload.ee/files/6473438/Opera_beta_Portable_MultiVersion_32-64-bit_Multilingual_Online.exe.html

In first screen enter: 45.0.2552.453

Arbeits.- Testrechner :

Intel® Core™ i7-6700 (4 x 3.40 GHz / 4.00 GHz)
16 GB (2 x 8 GB) DDR4 SDRAM 2133 MHz
250 GB SSD Samsung 750 EVO / 1 TB HDD
ZOTAC Geforce GTX 1080TI AMPExtreme Core Edition 11GB GDDR5
MSI Z170A PC Mate Mainboard
DVD-Brenner Laufwerk
Microsoft Windows 10 Home 64Bit

TT S2 3200 ( BDA Treiber 5.0.1.8 ) + Terratec Cinergy 1200 C ( BDA Treiber 4.8.3.1.8 )

Offline SiLæncer

  • Cheff-Cubie
  • *****
  • Beiträge: 191383
  • Ohne Input kein Output
    • DVB-Cube
Portable Mozilla Firefox 54.0 Beta 1
« Antwort #9522 am: 21 April, 2017, 12:30 »
Changelog

Backed out changeset 076f4a79219b (bug 1355898) for bustage on a CLOSED TREE
Bug 1353459 - handle queueInputBuffer exceptions.
Bug 1355898. Use the first frame of animated images for texImage2d.
Bug 1355898. Rename flag SFE_WANT_FIRST_FRAME to SFE_WANT_FIRST_FRAME_IF_IMAGE to represent what it does better.
Bug 1354810, CycleCollectedJSContext::Get() needs to be null-checked
Backed out changeset b7cdc8cfc61f (bug 1353459) for android test failures
Bug 1346012 - Handle dead object wrappers in more places in Promise code
Bug 1353459 - handle queueInputBuffer exceptions.
Push 7198 by jlorenzo@mozilla.com at 2017-04-18 12:07 +0000
Bug 1354973 - Remove view before add to new ViewGroup,
Bug 1356718 - Query gtk settings schemas to avoid crashing when schema is missing
Bug 1351482 - Use NSIS 3.01 for buildbot jobs
Bug 1347191 - Add support for NSIS 3.01 to moz.configure
Bug 1349828 Smooth scroller of <scrollbox> should not try to scroll to outside of the range.
Bug 1313977 - Don't round fractional mouse coordinates up, because doing so might push them outside the window.
Bug 1354715 - Restore the right background color
Bug 1353831 - OneOff block in search bar doesn't update text if Customize was opened at least once.
Bug 1352608 - Close a cursor after we're done with it
Bug 1265314 - Set tabs record lastModified to clients.lastModified.

[close]


Download : http://www.mediafire.com/?okqpffx4ds12iqq

Select language and enter Version Number: 54.0b1

Arbeits.- Testrechner :

Intel® Core™ i7-6700 (4 x 3.40 GHz / 4.00 GHz)
16 GB (2 x 8 GB) DDR4 SDRAM 2133 MHz
250 GB SSD Samsung 750 EVO / 1 TB HDD
ZOTAC Geforce GTX 1080TI AMPExtreme Core Edition 11GB GDDR5
MSI Z170A PC Mate Mainboard
DVD-Brenner Laufwerk
Microsoft Windows 10 Home 64Bit

TT S2 3200 ( BDA Treiber 5.0.1.8 ) + Terratec Cinergy 1200 C ( BDA Treiber 4.8.3.1.8 )

Offline SiLæncer

  • Cheff-Cubie
  • *****
  • Beiträge: 191383
  • Ohne Input kein Output
    • DVB-Cube
Portable Vivaldi Snapshot 1.9.818.22
« Antwort #9523 am: 21 April, 2017, 21:40 »
Zitat
Today’s snapshot allows you to sort your notes, fixes some recent regressions and resolves an annoying crash when closing tabs on macOS.

Changelog

[New feature][Notes] Implement sorting (VB-27313)
[Regression][History] Panel sort broken (VB-27367)
[Regression][History] Cannot type space in history search (VB-27398)
[Regression] Sometimes the wrong tab or stack is moved when detaching via drag and drop: further fix (VB-26767)
[Mac] Vivaldi often crashes when closing tab (VB-27495)
Further performance improvements: thanks WillyYu (VB-26302)
Update Chromium to 58.0.3029.82

[close]

Quelle & weitere Infos : https://vivaldi.com/blog/snapshots/sorting-of-notes-vivaldi-browser-snapshot-1-9-818-22/

http://www.mediafire.com/download/ldc87jbr7szo0pf/Vivaldi_Portable_snapshot_32-64-bit_Multilingual_Online.exe

In first screen enter: 1.9.818.22

Arbeits.- Testrechner :

Intel® Core™ i7-6700 (4 x 3.40 GHz / 4.00 GHz)
16 GB (2 x 8 GB) DDR4 SDRAM 2133 MHz
250 GB SSD Samsung 750 EVO / 1 TB HDD
ZOTAC Geforce GTX 1080TI AMPExtreme Core Edition 11GB GDDR5
MSI Z170A PC Mate Mainboard
DVD-Brenner Laufwerk
Microsoft Windows 10 Home 64Bit

TT S2 3200 ( BDA Treiber 5.0.1.8 ) + Terratec Cinergy 1200 C ( BDA Treiber 4.8.3.1.8 )

Offline SiLæncer

  • Cheff-Cubie
  • *****
  • Beiträge: 191383
  • Ohne Input kein Output
    • DVB-Cube
Portable Clownfish for Skype 4.45
« Antwort #9524 am: 22 April, 2017, 10:15 »
Clownfish for Skype bietet Echtzeit-Übersetzungen im Chat von Skype für mehr als 50 Sprachen. Das kostenlose Plugin übersetzt ein- und ausgehende Nachrichten. Extras wie Anrufrekorder, Emoticons oder Voice Changer werten die Freeware zusätzlich auf.

Clownfish for Skype greift für die Simultan-Übersetzung auf Online-Dienste wie Google Translate, Babylon oder Microsoft Live zurück. Welcher Dienst zum Einsatz kommt, entscheidet der User. Darüber hinaus liest der Computer eingehende Mitteilungen im Chat per Text-to-Speech dem Anwender sogar vor. VoIP-Anrufe zeichnet die Freeware auf Wunsch auf oder verfremdet die Stimme beim Skypen mit einem Voice Changer. Weitere Goodies wie zusätzliche Emoticons, Verschlüsselung von Mitteilungen und integrierter Music Player komplettieren das Plugin.

Mit dem kostenlosen Clownfish for Skype versteht man sich in Skype-Chats auch über Sprachgrenzen hinweg. Der Helfer wertet die VoIP-Software mit praktischen Extras auf und benötigt praktisch keine Ressourcen auf der Festplatte.

Whats new: >>

Added Autoreply when Away/DnD
Improved new message detection
Fixed SysTran service

https://www.upload.ee/files/6139564/Clownfish_Portable_3.xx_Multilinguall_Online.exe.html

Arbeits.- Testrechner :

Intel® Core™ i7-6700 (4 x 3.40 GHz / 4.00 GHz)
16 GB (2 x 8 GB) DDR4 SDRAM 2133 MHz
250 GB SSD Samsung 750 EVO / 1 TB HDD
ZOTAC Geforce GTX 1080TI AMPExtreme Core Edition 11GB GDDR5
MSI Z170A PC Mate Mainboard
DVD-Brenner Laufwerk
Microsoft Windows 10 Home 64Bit

TT S2 3200 ( BDA Treiber 5.0.1.8 ) + Terratec Cinergy 1200 C ( BDA Treiber 4.8.3.1.8 )