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

0 Mitglieder und 20 Gäste betrachten dieses Thema.

Offline SiLæncer

  • Cheff-Cubie
  • *****
  • Beiträge: 191383
  • Ohne Input kein Output
    • DVB-Cube
GnuCash Portable 4.5
« Antwort #15795 am: 29 März, 2021, 21:40 »
GnuCash Portable is an open source financial management application packaged as a portable app, so you can take your financial data with you. It has all the same great features as most commercial money management programs and more.

Changelog

    Between 4.4 and 4.5, the following bugfixes were accomplished:

    Bug 783283 - Multi-Currency payments use wrong date
    Also properly handles the user clicking the cancel button on the transfer dialog. It will now just return to the payment window, waiting for further user input.
    Bug 797621 - GnuCash freezes temporarily and sometimes crashes when selecting Sales Tax Table in Invoices
    Bug 797630 - Check for missing dependencies of 'Get Quotes' to avoid Gnucash crash.
    Bug 797906 - GnuCash data file is locked after a "save-as" to mysql database.
    It's more general, any save-as to a different backend type, i.e. xml->sql or sql->xml, left the previous book locked.
    Bug 797924 - Crash when searching for customer to process payment.
    Bug 797997 - File gnucash could note be found
    On Microsoft Windows when run from a CMD shell and passing a path that contains non-ASCII characters.
    Bug 798019 - Currency rates in OFX file are ignored
    Use currency_rate information from OFX file if available. Requires LibOFX v 0.10.0 or later.
    Bug 798044 - Adding splits to a lot is extremely slow
    Bug 798060 - Invoices are missing on Customer report after upgrade
    Bug 798070 - Opening balance does not update when creating account from Account Hierarchy
    Bug 798078 - Report 'Income Chart' prints stacktrace when end date before start date
    Bug 798085 - Incorrect transactions import of entires with large number amount
    Quicken 2005 introduces U amount which sometimes differs from T amount. U amount has larger range, and must override T amount whenever they're not equal.
    Bug 798093 - Changing the symbol/abbreviation of a security after the trading account was created breaks GnuCash.
    Makes it possible for the user to rename trading accounts or securities independent of each other.
    Bug 798096 - can't duplicate TX previous to red line threshold
    Bug 798098 - Crash popup show when have 3 Windows in OSX
    Bug 798100 - Equity totals calculating incorrectly
    Prevents creation of non-currency opening balance accounts.
    Bug 798101 - Do not #undef __STRICT_ANSI__
    Remove defines and undefines for Windows, they were needed with MinGW classic but are not with MinGW-w64.
    Bug 798104 - Menu item for "Import Account" is wrong in danish
    Bug 798112 - An error occurred while processing mysql ...
    A "Feature" of MYSQL is that it allows C-style backslash escapes in string constants and replaces them with the actual character (e.g. n is converted to 0x0a). This causes round trip problems if the escape is one of the allowed ones and a MYSQL error if it isn't. Disable the feature so that MYSQL follows the SQL standard.
    Bug 798132 - Invoice Importing crashes when importing low quantity values.
    Bug 798135 - GtkEntry text with search list: shows selected entry again for no reason
    Bug 798147 - Notes entry crashes program
    Bug 798149 - CSV transaction Import setting loses account name if it is changed after setting is memorized
    Account guid is saved as well as the full account name and when recalled the account is looked up first by guid, if this fails the full account name is checked which if successful immediately updates the saved base account setting with the account guid for future use. If unsuccessful the account combo is blank with a error message as before. When save CSV settings button is used, both the Guid and full paths are saved so previous versions can still use the full path as before.
    Bug 798150 - Error on report over time
    Caused by incorrect handling of Daylight Savings beginning at midnight.
    Bug 798154 - Tooltips wrong when multiple charts in one report

    The following fixes and improvements were not associated with bug reports:

    Fix building based on unix makefiles
    Make the chart on the report page icon larger to align better with the account page icon.
    Allow the context menu when GncCellRendererTextView is in edit mode.
    Restructure early locale initialization
    Move macOS specific bits to its own source file. As this is objective-c use .mm extension
    Use common function signature for macOS and Windows init function and include via common header file
    Fix GncDateTime::format_zulu to emit the UTC timezone instead of the GncDateTime's timezone with the UTC timestamp.
    Fix the implementations of gnc_foo_get_day_neutral. As implemented these returned 10:59 AM local on the day but neutral time is 10:59 UTC.
    Gnc_invoice_window_print_invoice return NULL if invoice is NULL.
    [dialog-invoice] invoice editor reuses invoice report tab.
    Allow for Header Bar use in CSV transaction Assistant
    There are a couple of action buttons that are added to the CSV transaction assistant with added alignment based on the action area being a GtkBox which causes errors if the header bar is used so test for the action area type and use appropriate specific functions.
    Drop default locale currency special case for euro
    The condition mentioned in the comment no longer applies. All European locales on Windows (MingW64) properly present EUR as currency these days
    Fix fencepost error in calculating the week_num for POSIX timezone rules.
    Include the contents of PROJECT_DESCRIPTION in the PACKAGE_PREFIX.
    If it's defined. PACKAGE_PREFIX is used to name tarballs and set their base directory. The translation project has requested that we name freeze-string tarballs with a pre1 suffix; this makes that possible.
    Update python/gnucash_business.py to reflect rename of gncOwnerApplyPayment.
    I18N: don't mark "<<", ">>" translatable
    They get properly reversed for RTL writing
    From Budget editor, add toolbar and Edit menu to run budget report
    This parallels the invoice editor "Print Invoice" functionality. Runs the budget report using current budget.
    [gnc-plugin-page-budget] change note icon to a note page
    Allow the find account dialog position to be saved when using 'X'
    Update price database for imported transactions.
    Replace g_memdup by memcpy
    GLib is deprecating g_memdup and will immediately remove it in the next micro-release because of a CVE.
    [html-fonts] Prevent sup/sub from affecting baseline
    Source: https://css-tricks.com/snippets/css/prevent-superscripts-and-subscripts-from-affecting-line-height/ Previously <sup> and <sub> would cause the baseline to move vertically.
    Replace stat calls with GFile to retrieve last modified info
    Avoids code-page problems with non-ASCII characters on Microsoft Windows.
    [gnc-tree-model-split-reg.c] use xaccSplitListGetUniqueTransactionsReversed
    Which is then reversed if required. this removes the need for double reversal.
    [Split.c]New function xaccSplitListGetUniqueTransactionsReversed
    Same as xaccSplitListGetUniqueTransactions but doesn't reverse the list prior to returning. To be used by gnc-tree-model-split-reg.c Several optimizations
    Doesn't call g_list_find and g_list_append for every iteration uses g_hash_table to cache list of txns already added instead of g_list_find<.
    Does not reverse the result, thereby returning a reversed list.
    [gnc-recurrence.c] avoid O(N^2) children traversal
    Ensure that any GncMainWindows containing no tabs are destroyed at shutdown.
    I18N: drop translatable flag from "xxx" dummies and remove trailing spaces from translatable strings
    Update Form/Schedule line references for 2020 for the US Income Tax Report.
    Fix build with glib2 2.67.x.
    Glib headers should not be included with 'extern "C"'.
    [balsheet-pnl] Use last day of the month prices instead of first day of next month.
    [options.scm API] Remove canonically-tabbed parent-subtotal-mode
    This mode had been marked experimental for 17 years and was never improved. Any saved reports with this option will be switched to parent-subtotal-mode enabled.
    Accommodate Gwenhywfar 5.5.0 signature change for some GUI callbacks.
    This is a breaking change that matters only in Win32. No ifdeffing because Win32 builds and dependencies are well synchronized.
    L10N: Move translation authority for Turkish from the GNU Translation Project to Weblate.
    Make prototypes static for autoclear unit test, fixes build on Debian Buster.
    [income-gst-statement] trep-engine currency section moved
    From "General" to "Currency". Missed out in 854c117 commit
    [test-scm-utilities] test-end properly so that test failures set the exit code correctly
    Create opening balance accounts only when there are opening balances.
    [qif-file.scm] Don't use match as an identifier
    It is a (ice-9 match) keyword.
    Change the CSV export account tree header line
    Change the headings of the CSV account export header line to be more friendly which uses existing translations.
    [new-owner-report] Don't create empty rows on report when splits have no entry in the memo field.
    [gnc-report] dump backtrace to console when report crashes
    Because gnc:backtrace-if-exception, not used anymore, would dump guile backtrace to console. restore this behaviour.
    [report-core] remove 2.6/2.4 compatibility code
    [gnucash-commands.cpp] display report errors to stderr

    New API:

    [report-core.scm] create and expose gnc:render-report
    Similar to gnc:report-run but *always* returns a 2-element list containing data OR captured_error
    [report-core.scm] create and expose gnc:render-report
    Similar to gnc:report-run but *always* returns a 2-element list containing data OR captured_error
    [gnc-plugin-page-report] add gnc_plugin_page_report_reload
    Refreshes the report

    Deprecations:

    [c-interface.scm] deprecate gnc:last-captured-error
    [report-core] deprecate gnc:restore-report-by-guid
    Gnc:get-three-months-ago
    Gnc:get-six-months-ago
    Gnc:get-one-year-ago
    Gnc:get-three-months-ahead
    Gnc:get-six-months-ahead
    Gnc:get-one-year-ahead
    Traverse-list->vec
    Traverse-vec->list

[close]

Download: Klick

https://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
Armagetron Advanced Portable 0.2.9.1.0
« Antwort #15796 am: 29 März, 2021, 22:10 »
A new version of Armagetron Advanced Portable has been released. Armagetron is a multiplayer game in 3d that attempts to emulate and expand on the lightcycle sequence from the movie Tron. It's packaged in PortableApps.com Format so it can easily integrate with the PortableApps.com Platform. And it's open source and completely free.

Download: Klick

https://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
Celestia Portable 1.6.2.2
« Antwort #15797 am: 29 März, 2021, 22:20 »
Celestia Portable is the popular planetarium program packaged with a PortableApps.com Launcher as a portable app, so you can view the universe in 3-D anywhere. It has all the same great features as Celestia including 3-D planet viewing, viewing over 100,000 stars, traveling beyond our galaxy, and more.

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
FileZilla Portable 3.53.1
« Antwort #15798 am: 29 März, 2021, 22:50 »
Whats new:>>

Bugfixes and minor changes:

    Removed an error message on new installation where there is no sitemanager.xml yet
    Fixed SOCKS5 proxy support

Download: Klick

https://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
WinMerge 2011 Portable 2011.211.110
« Antwort #15799 am: 29 März, 2021, 23:10 »
WinMerge 2011 is a comparison and differencing tool with support for syntax highlighting and patch file generation.

https://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
QOwnNotes Portable 21.3.8
« Antwort #15800 am: 30 März, 2021, 10:30 »
QOwnNotes is a text editor / notepad replacement with markdown support and todo list manager. The program supports themes, keyboard shortcuts, syntax highlighting, and encryption. Includes available nested file list, tags, search, and more. Optionally works with the notes application ownCloud or Nextcloud.

Cross-platform with clients available for Mac and Linux.

License: GPL

Changelog

    A leading html comment block in a note will now be ignored in the automatic note filename generation (for #2084)
    More improvements to the new Stored images dialog have been made (for #2073)
    Added a an Open image context menu entry
    Added some tooltip texts
    More improvements to the new Stored attachments dialog have been made (for #2073)
    Added some tooltip texts
    Added more translation (thank you mguerra, whenwesober, rakekniven, gregory.k, rogepix, amirkbrpr)

[close]

https://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
WinSCP Portable 5.17.10
« Antwort #15801 am: 30 März, 2021, 11:30 »
Whats new:>>

Back-propagated security fixes from 5.18.1 release:

    TLS/SSL core upgraded to OpenSSL 1.1.1i.
    Bug fix: Prevent loading session settings that can lead to remote code execution from handled URLs. 1943

https://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
Stellarium Portable 0.21.0
« Antwort #15802 am: 30 März, 2021, 18:30 »
Stellarium renders 3D photo-realistic skies in real time with OpenGL. It displays stars, constellations, planets, nebulas and others things like ground, landscape, atmosphere, etc.

License: Open Source

Changelog

Release notes

The major changes of this version:

    We have finally completed our work on accurate planet axes, including Lunar libration
    Visualisation of Earth shadow for Lunar eclipses
    Better texture for the Lunar surface
    Added the latest algorithms for planet magnitudes
    Enhanced Calendars plugin
    Replaced "arabic" by more accurate "al-Sufi" skyculture
    Planets are now scalable and Solar glare switchable for didactic applications

We have also published a scientific paper about the application of Stellarium in cultural astronomy: https://doi.org/10.1558/jsa.17822

Change log

Full list of changes:

    Added accurate planet axis orientation and rotation (GH: #502, #151):
    Added lunar libration (GH: #877)
    Added lines for the Invariable Plane and Projected Solar Equator (GH: #358)
    Added solar altitude to planetary feature nomenclature
    Added describe planetary coordinates and changes in the nomenclature display into Stellarium User Guide
    Added new language: Spanish (Latin America)
    Added ability to scaling of Sun and planets (GH: #1263)
    Added new magnitude algorithms for planets from Mallama&Hilton 2018 (GH: #574)
    Added Earth shadow circles for topocentric observer (GH: #430)
    Added new 4k texture for the Moon (required re-balancing planet shader brightness)
    Added lower limit for aFOV parameter of ocular in the GUI to avoid input wrong data (GH: #1487)
    Added visibility of an antisolar point for other planets (GH: #1481)
    Added ability to get all designations of DSO in scripts (GH: #1477)
    Added ability to show hourly motion in decimal degrees (GH: #1478)
    Added more cardinal points (GH: #1522, #1529)
    Added ability to switching off drawing of Solar glare (GH: #1538)
    Added a new sky culture based on Al-Sufi "Book of Fixed Stars" written ~ 964 AD (GH: #1548)
    Added Old Hindu calendars
    Added Islamic (algorithmic) and Hebrew calendar.
    Added French Revolution calendar (arithmetic version)
    Added Persian (arithmetic) calendar
    Added button to set standard atmosphere
    Added ability to translation/transliteration of Roman (latin) terms (GH: #1511)
    Added ability to use UTC time when navigational stars are displayed (GH: #1416)
    Added acknowledgment section into Help/About window (GH: #1568)
    Added cosmetic fix for radio communication data: no need extra precision to show data in Satellites plugin
    Fixed compatibility of ToneReproducer shader with GLES (GH: #1549, #1550)
    Fixed retranslation of calendars (GH: #1545)
    Fixed vertical position of calendar info panel
    Fixed height-dependent twinkle for star-like objects (GH: #1542)
    Fixed capturing a screenshots under macOS High Sierra and later (GH: #102)
    Fixed documentation for API
    Fixed display the extincted magnitudes for all objects
    Fixed reading textures (GH: #1547)
    Fixed alignment of an intercardinal direction markers (GH: #1552)
    Fixed work of multisampling mode when in Spout isn't used (GH: #1537)
    Fixed visualization zodiacal light at low Bortle values (GH: #1489, #1510)
    Fixed the drawing a degrees on compass on HiDPI devices
    Fixed search short phrases (GH: #1528)
    Fixed orientation of Jupiter, Uranus and Venus (GH: #357)
    Fixed inexact rotation of Moon (GH: #347)
    Fixed wrong rendering of Jupiter (GH: #1261)
    Fixed incorrect moon terminator (GH: #973)
    Fixed a skybox.ssc script (GH: #1461)
    Fixed crash when trails are enabled (GH: #1471)
    Fixed crash when choosing Zero Horizon landscape (GH: #1466)
    Fixed displaying labels of coordinate grids on HiDPI devices (GH: #1445)
    Fixed a labeling hour angles (GH: #1457)
    Fixed API docs
    Fixed styles of QMessageBox and QColorDialog (GH: #1451)
    Fixed WUI of Remote Control plugin
    Fixed HiDPI issue for Observability plugin
    Fixed the placement of cardinal marks when compass mark is enabled on the HiDPI devices
    Fixed placement of the value of equation of time for HiDPI devices
    Fixed crash at exit (GH: #1479)
    Fixed work of Spout mode: inhibit multisampling when in Spout mode (GH: #1507)
    Fixed DOI link for "Calendrical Calculations" (GH: #1562, #1566)
    Fixed missing strings for translation (GH: #1562, #1566)
    Fixed tooltips and placeholders (GH: #1562, #1566)
    Fixed comments for translators (GH: #1562, #1566)
    Fixed updating placement of calendars when visibility of calendars are changed (GH: #1567)
    Fixed artifacts in the GUI when language is changed
    Fixed images and typos in Stellarium User Guide
    Fixed bibliography in Stellarium User Guide
    Fixed the figure of Virgo constellation (GH: #1570)
    Fixed stupid typos in satellites.json file
    Fixed illumination during Lunar eclipse in Scenery 3D plugin (GH: #1506)
    Fixed behavior "Clear" button in Script Console (GH: #1499)
    Fixed lunar magnitude: try an accurate Lunar magnitude formula (GH: #1350)
    Fixed lunar eclipses: redo the eclipse push effect for lunar eclipses
    Fixed behavior of Bookmarks tool when pressed button "cancel" in import dialog (GH: #1497)
    Fixed Mesa mode for Windows (GH: #1551)
    Fixed multisampling on non-Windows systems (GH: #1553)
    Fixed typos in Al-Sufi skyculture
    Fixed bug for calculation the leap years: restore leap year rule in our astronomical year counting
    Updated translations
    Updated translations of landscapes descriptions
    Updated translations of 3D sceneries descriptions
    Updated translations of skycultures descriptions
    Updated AstroCalc/Phenomena tool (GH: #1520)
    Updated planetary features data
    Updated building instructions for Windows (GH: #1444)
    Updated core: slight restructuring of Planets, Comets, MinorPlanets, SolarSystem loader
    Updated core: using data from WGCCRE reports 2009, 2015 and Explanatory Supplement to the AA 2013 (with error fixed by the 1992 ed.) for rotation elements
    Updated core: keeps original Stellarium planet rotation model (undocumented) where new rotation elements are unavailable
    Updated core: make StelToneReproducer's xyYToRGB.glsl core function reusable (GH: #1468)
    Updated code of INDI client to version 1.8.5
    Updated code for building Stellarium without NLS and Scripting support
    Updated GUI (GH: #1204)
    Updated Satellites plugin
    Updated default satellites database
    Updated GUI of Navigational stars plugin
    Updated default pulsars catalog
    Updated description of supernovae plugin (GH: #500)
    Updated description of calendars plugin in Stellarium User Guide
    Removed proper name for NGC 2194 (GH: #1530)
    Removed Arabic skyculture: Arabic SC was replaced by more accurate "al-Sufi" skyculture

[close]

https://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
FreeCAD Portable 0.19.1
« Antwort #15804 am: 30 März, 2021, 20:50 »
FreeCAD is a general purpose 3D CAD modeler. It is aimed directly at mechanical engineering and product design but also fits in a wider range of uses around engineering, such as architecture or other engineering specialties. Program features tools similar to Catia, SolidWorks or Solid Edge, and therefore also falls into the category of MCAD, PLM, CAx and CAE.

Open Source

Download: Klick

https://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 Pale Moon 29.1.1
« Antwort #15805 am: 30 März, 2021, 21:00 »
Pale Moon is an Open Source, Goanna-based web browser available for Microsoft Windows and Linux (with other operating systems in development), focusing on efficiency and ease of use. Make sure to get the most out of your browser!

Changelog

This is a minor security and bugfix update.

Changes/fixes:

    Updated NSS to fix certificate import and keygen regressions.
    Removed restrictions for units of width/height attributes on SVG elements.
    Enabled scrollbar-width CSS keyword by default.
    Security issues addressed: CVE-2021-23981 and a DiD fix for potential document parser confusion.
    Unified XUL Platform Mozilla Security Patch Summary: 2 DiD, 9 not applicable.

[close]

https://www.mediafire.com/file/w5wiihcr5ygvuhi/Pale_Moon_Portable_MultiVersion_32-64_bit_Multilingual-Online.exe/file

Select language and enter Version Number: 29.1.1

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 Vivaldi 3.7.2218.52
« Antwort #15807 am: 31 März, 2021, 19:50 »
Zitat
This update includes Chromium fixes from upstream.

Whats new:>>

[Chromium] Upgraded to 89.0.4389.116

Quelle -> https://vivaldi.com/blog/desktop/minor-update-2-for-vivaldi-desktop-browser-3-7/

https://www.mediafire.com/file/9diz6eloik05si6/Vivaldi_Portable_stable_32-64-bit_Multilingual_Online.exe/file

In first screen enter: 3.7.2218.52

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
MuseTips Text Filter 2.1.0 Build 2427
« Antwort #15808 am: 01 April, 2021, 11:10 »
MuseTips Text Filter is a free, lightweight and portable Windows software that lets you read, search and filter text files with ease. Text lines are instantly filtered as you type your search phrase, with all matched terms highlighted in a contrasting color.

License: Freeware

http://www.musetips.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 Opera 75.0 Build 3969.141
« Antwort #15809 am: 01 April, 2021, 18:20 »
Changelog


    CHR-8356 Update chromium on desktop-stable-89-3969 to 89.0.4389.90
    DNA-91636 [Linux] Use component-updated Widevine CDM
    DNA-91909 Follow up review issues from DNA-91863
    DNA-92220 Fix errors in O75 translations
    DNA-92261 Enable kFeatureNewFeedbackForSearchInTabs for all streams
    DNA-92296 Crash when clicking buttons/links on default browser infobar
    DNA-92339 Make #cashback flag visible

[close]

Quelle & weitere Infos -> https://blogs.opera.com/desktop/2021/04/opera-just-got-even-faster-with-m1-support-for-mac-fans-and-custom-shortcuts/

https://www.mediafire.com/file/yy6mjsy8u6x84ei/Opera_Portable_MultiVersion_32-64-bit_Multilingual_Online.exe/file

In first screen enter: 75.0.3969.141

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 )