Autor Thema: Editoren diverses ...  (Gelesen 1881502 mal)

0 Mitglieder und 49 Gäste betrachten dieses Thema.

Offline SiLæncer

  • Cheff-Cubie
  • *****
  • Beiträge: 191383
  • Ohne Input kein Output
    • DVB-Cube
Pandoc 2.17
« Antwort #6105 am: 13 Januar, 2022, 19:15 »
Pandoc is a command-line utility that can convert files from one markup format into another. Pandoc's enhanced version of Markdown includes syntax for footnotes, tables, flexible ordered lists, definition lists, fenced code blocks, superscripts and subscripts, strikeout, metadata blocks, automatic tables of contents, embedded LaTeX math, citations, and Markdown inside HTML block elements. (These enhancements, described further under Pandoc's Markdown, can be disabled using the markdown_strict input or output format.)

License: Open Source

Changelog

    Support markua as an output format (#1871, Tim Wisotzki and Saumel Lemmenmeier). Markua is a markdown variant used by Leanpub.

    Add text wrapping for HTML output (#7764). Previously the HTML writer was exceptional in not being sensitive to the --wrap option. With this change --wrap now works for HTML. The default (as with other formats) is automatic wrapping. Note that the contents of script, textarea, and pre tags are always laid out with the flush combinator, so that unwanted spaces won’t be introduced if these occur in an indented context in a template.

    Don’t read sources until in/out format are verified (#7797).

    Issue error with --list-extensions for invalid formats (#7797).

    Make --citeproc recognize .yml as well as .yaml extensions as YAML bibliography files (#7707, Jörn Krenzer).

    Use latest version of KaTeX with --katex.

    Fix parsing of footnotes in --metadata-file (#7813). Previously non-inline footnotes were not being parsed.

    ODT reader:
        Parse list-header as a list item (Tuong Nguyen Manh).

    Commonmark reader:
        Put sourcepos attribute on header, not enclosing div with -f commonmark+sourcepos (#7769).

    Markdown reader:
        Don’t allow ^ at beginning of link or image label (#7723). This is reserved for footnotes. Fixes regression from 0a93acf.
        Fix parsing of “bare locators” after author-in-text citations. Previously @item [p. 12; @item2] was incorrectly parsed as three citations rather than two. This is now fixed by ensuring that prefix doesn’t gobble any semicolons.
        Revert changes to inlinesInBalancedBrackets (commit fa83246), which caused regressions.
        Improve detection of pipe table line widths (#7713). Fixed calculation of maximum column widths in pipe tables. It is now based on the length of the markdown line, rather than a “stringified” version of the parsed line. This should be more predictable for users. In addition, we take into account double-wide characters such as emojis.

    Custom (Lua) readers:
        First argument is now a list of sources instead of the concatenated text (Albert Krewinkel). The list structure can easily be converted to a string by applying tostring, but it is also possible to access the elements (each with a text and name). A small example is added to the custom reader documentation, showcasing its use in a reader that creates a syntax-highlighted code block for each source code file passed as input. Existing readers will still work through a fallback mechanism, issuing a deprecation notice.

    Org reader:
        Parse official org-cite citations (#7329). We also support the older org-ref style as a fallback. We no longer support the “markdown style” or “Berkeley style” citations.
        Support alphabetical (fancy) lists (Lucas Viana). When the fancy_lists extension is enabled, alphabetical list markers are allowed, mimicking the behaviour of Org Mode when org-list-allow-alphabetical is enabled.
        Support counter cookies in lists (Lucas Viana). Such cookies are used to override the item counter in ordered lists. In org it is possible to set the counter at any list item, but since Pandoc AST does not support this, we restrict the usage to setting an offset for the entire ordered list, by using the cookie in the first list item.
        Allow trailing spaces after key/value pairs in directives (Albert Krewinkel). Ensures that spaces at the end of attribute directives like #+ATTR_HTML: :width 100% (note the trailing spaces) are accepted.

    LaTeX reader:
        Omit visible content for \label{...}. Previously we included the text of the label in square brackets, but this is undesirable in many cases. See discussion in #813 (comment).
        Improve references (#813). Resolve references to theorem environments. Remove the Span caused by “label” in figure, table, and theorem environments; this had an id that duplicated the environments’ id.
        Fix semantics of \ref. We were including the ams environment type in addition to the number. This is proper behavior for \cref but not for \ref. To support \cref we need to store the environment label separately.
        Add babel mappings for Guajati (gu) and Oriya (or) (#7815).
        Fix typo panjabi -> punjabi in babel mappings (#7814).

    HTML reader:
        Parse attributes on links and images (#6970).

    Docx reader:
        Handle multiple pic elements inside a drawing (#7786).
        Change elemToParPart to return [ParPart] instead of ParPart. Also remove NullParPartconstructor, as it is no longer needed. This will allow us to handle elements that contain multiple ParParts, e.g. w:drawing elements with multiple pic:pic.

    DocBook reader:
        Collapse internal spaces in literal and other similar tags (#7821), as the standard docbook toolchain does.
        Be sensitive to spacing=“compact” in lists (#7799). When spacing="compact" is set, Para elements are turned into Plain, so we get a “tight” list.

    Markdown writer:
        Add new exported function writeMarkua from Text.Pandoc.Writers.Markdown [API change] (#1871, Tim Wisotzki and Saumel Lemmenmeier).
        Fix indentation issue in footnotes (#7801).
        Avoid extra space before citation suffix if it already starts with a space.
        Ensure semicolon between the locator and the next citation when an author-in-text citation has a locator and following citations.
        Improve escaping for # (#7726).

    Custom (Lua) writers:

        Allow variables to be set via second return value of Doc (#6731, Albert Krewinkel). New templates variables can be added by giving variable-value pairs as a second return value of the global function Doc. Example:

        function Doc (body, meta, vars)
          vars.date = vars.date or os.date '%B %e, %Y'
          return body, vars
        end

        Provide global PANDOC_WRITER_OPTIONS (#6731, Albert Krewinkel).

        Assign default Pandoc object to global PANDOC_DOCUMENT (Albert Krewinkel). The default Pandoc object is now non-strict, i.e., only the parts of the document that are accessed will be marshaled to Lua. A special type is no longer necessary. This change also makes it possible to use the global variable with library functions such as pandoc.utils.references, or to inspect the document contents with walk().

    LaTeX writer:
        Fix typo panjabi -> punjabi in babel mappings (#7814).

    MediaWiki writer:
        Remove redundant display text for wiki links (Jesse Hathaway).

    Docx writer:
        Handle bullets correctly in lists by not reusing numIds (#7689, Michael Hoffmann). This fixes a bug in which a Div in a list item would receive bullets on its contained paragraphs.

    Org writer:
        Fix list items starting with a code block or other non-paragraph content (#7810).
        Avoid blank lines after tight sublists (#7810).
        Fix extra blank line inserted after empty list item (#7810).
        Don’t add blank line before lists (#7810).
        Support starting number cookies (Lucas Viana). This is necessary for lists that start at a number other than 1.
        Support the new org-cite syntax (#7329).

    Haddock writer:
        Avoid blank lines after tight sublists (#7810).

    Ipynb writer:
        Ensure deterministic order of keys.
        Handle cell output with raw block of markdown (#7563, Kolen Cheung). Write RawBlock of markdown in code-cell output. This is designed to fit the behavior of #7561, which makes the ipynb reader parse code-cell output with mime “text/markdown” to a RawBlock of markdown. This commit makes the ipynb writer writes this RawBlock of markdown back inside a code-cell output with the same mime, preserving this information in round-trip.
        In choosing between multiple output options, always favor those marked with the output format over images (Kolen Cheung). Previously, both fmt == f case and Image have a rank of 1.

    Ipynb reader & writer: properly handle cell “id” (#7728). This is passed through if it exists (in Nb4); otherwise the writer will add a random one so that all cells have an “id”.

    Ms writer:
        Properly encode strings for PDF contents (#7731).

    JATS writer:
        Keep quotes in element-citations (Albert Krewinkel). Fixed a bug that lead to quote characters being lost in element-citations.

    RTF writer:
        Properly handle images in data URIs (#7771).

    Commonmark writer:
        Allow ‘)’ delimiters on ordered lists.

    RST writer:
        Avoid extra blank line after empty list item (#7810).

    HTML writer:
        Make line breaks more consistent. With --wrap=none, we now output line breaks between block-level elements. Previously they were omitted entirely, so the whole document was on one line, unless there were literal line breaks in pre sections. This makes the HTML writer’s behavior more consistent with that of other writers. Also, regardless of wrap settings, put newline after <dd> and after block-level elements in the footnotes section. And add a line break between an img tag and the associated figcaption.
        reveal.js: Make sure images with r-stretch are not in p tags. They must be direct children of the section. There was previously code to make this work with the older class name stretch, but the name has changed in reveal.js.
        reveal.js: don’t add r-fit-text class to section. It must go on the header only.

    AsciiDoc writer:
        Improve detection of intraword emphasis (#7803).

    OpenDocument writer:
        Fix vertical alignment bug with display math (#7777). Previously some displayed formulas would be floated above a preceding text line. This is fixed by setting vertical-rel to text rather than paragraph-content.

    JATS template (Albert Krewinkel):
        Fix position of contrib affiliations in authoring set. Any <aff> element must come before any <email> element.
        Fix affiliation tagging in articleauthoring output. Affiliations were xlinked even in the articleauthoring tag set, but <aff> are not allowed as children of contrib-group elements in that tag set. Each affiliation must be listed directly in the contrib element.
        Add support for article subtitles.

    EPUB template:
        Include abstract in default template.
        Ensure that the essential styles needed by pandoc (styles.html partial) are included in the templates. This is important for correct formatting of CSL bibliographies. Note that much of the styling in styles.html will be ignored for EPUB, because of the conditional on document-css. Setting the document-css variable will cause it not to be ignored.

    HTML template: Add abstract (#7588, Jannik Buhr, John MacFarlane). By default, a localized title (the word “Abstract”) will be used, unless the variable abstract-title is set.

    ConTeXt template: Make title appear in PDF title bar. This is recommended for accessibility reasons. Note: doesn’t work with macOS Preview.app.

    reference.pptx: change to use 16:9 aspect ratio, Powerpoint’s default.

    Text.Pandoc.Writers:
        Do not export writeCustom [API change]. This ensures that all writers exported in T.P.Writers are parameterized and work with any PandocMonad type. This is consistent with T.P.Readers, as readCustom is not exported from that module either.

    Text.Pandoc.Writers.Shared:
        endsWithPlain now returns True if the list ends with a list that ends with a Plain, and so on recursively (#7810).

    Text.Pandoc.Class.IO:
        writeMedia: unescape percent-encoding in creating file path. This addresses a problem with spaces in image filenames when creating PDFs (#7819); it also affects --extract-media.

    New internal module Text.Pandoc.Writers.Blaze, exporting layoutMarkup. This converts a blaze Html structure into a doclayout Doc Text.

    Text.Pandoc.Extensions:
        parseFormatSpec: cleaner error message for invalid extensions.

    Text.Pandoc.MediaBag:
        Fix bug in extractMedia, which caused the test for .. in paths to fail, with the result that images with .. in the path name could be extracted outside of the directory specified by extractMedia. It also led a check for media in resource paths to fail in the docx reader.

    Text.Pandoc.Citeproc:
        Avoid adding comma before an author-in-text citation in a note if it begins with a title (no author) (#7761).
        Text.Pandoc.Citeproc.Locator now exports toLocatorMap, LocatorInfo, and LocatorMap. The type of parseLocator has changed, so it now takes a LocatorMap rather than a Locale as parameter, and returns a LocatorInfo instead of a tuple.
        Fix citation locator detection for German. toLocatorMap now stores keys case-folded. We want to do a case-insensitive comparison when parsing locators, so that e.g. both Chap. and chap. work. Previously we case-folded terms when doing the lookup, but they weren’t case-folded in the map itself, which led to locator-detection breaking for German (where the terms have uppercase letters).

    Lua (Albert Krewinkel):
        Allow single elements as singleton MetaBlocks/MetaInlines. Single elements should always be treated as singleton lists in the Lua subsystem.
        Add pandoc.template module. The module provides a compile function to use strings as templates.
        Add pandoc.WriterOptions constructor.
        Add function pandoc.write.
        Provide global PANDOC_WRITER_OPTIONS (#5221).
        The function Text.Pandoc.Filter.applyFilters now takes a filter environment of type Environment, instead of a ReaderOptions value [API change].
        The Environment type is exported from Text.Pandoc.Filter and allows to combine ReaderOptions and WriterOptions in a single value [API change].
        Global, exported from Text.Pandoc.Lua, has a new type constructor PANDOC_WRITER_OPTIONS [API change].
        Add constructors pandoc.Blocks and pandoc.Inlines. The functions convert their argument into a list of Block and Inline values, respectively. When applied to a string, they split the string into Str elements separated by Space or SoftBreak (#7712).
        Support topdown traversals The traversal order of filters can now be selected by setting the key traverse of the filter to either 'topdown' or 'typewise'; the default remains 'typewise'. Topdown traversals can be cut short by returning false as a second value from the filter function. No child-element of the returned element is processed in that case.
        Marshal ReaderOptions field extensions, track_changes via JSON. Extensions are now available as a list of strings; the track-changes settings are given as the kebab-case representation used in JSON.
        Allow binary (byte string) readers to be used with pandoc.read.
        Use global state when parsing documents in pandoc.read. The function pandoc.read is updated to use the same state that was used while parsing the main input files. This ensures that log messages are preserved and that images embedded in the input are added to the mediabag.
        Cleanup stack in peekReadOptionsTable. A ReaderOptions element was left on top of the stack when the peekReadOptionsTable function was invoked.
        walk methods are added to Pandoc, Block, Inline, Blocks, Inlines values; the methods are similar to pandoc.utils.walk_block and pandoc.utils.walk_inline, but apply to filter to the element’s contents.
        Functions of name Doc are no longer accepted as alternatives for Pandoc filter functions. This functionality was undocumented.
        Improve handling of empty caption, body by from_simple_table #7776). Create truly empty table caption and body when these are empty in the simple table.
        Change representation of TableHead, TableFoot, and Row values (#7718). The objects now also follow the principle that element attributes are accessible through the .attr field. Rows in TableHead and TableFoot are available via the .rows field. Row objects have a .cells field, containing the list of table cells.
        Simplify code of pandoc.utils.stringify. Minor behavior change: plain strings nested in tables are now included in the result string.
        Simplify and deprecate function pandoc.utils.equals. The function is no longer required for element comparisons; it is now an alias for the == operator.
        Add function pandoc.utils.references (#7752).
        Add new library function pandoc.utils.type. The function behaves like the default type function from Lua’s standard library, but is aware of pandoc userdata types. A typical use-case would be to determine the type of a metadata value.
        Fix return types of blocks_to_inlines, make_sections. Ensures the returned lists have the correct type (Inlines and Blocks, respectively).
        Use more natural representation for Reference values Omit false boolean values, push integers as numbers.

    Lua: use package pandoc-lua-marshal (#7719, Albert Krewinkel). The marshaling functions for pandoc’s AST are extracted into a separate package. The package comes with a number of changes:
        Pandoc’s List module was rewritten in C, and error messages were improved.
        Lists of Block and Inline elements are marshaled using the new list types Blocks and Inlines, respectively. These types currently behave identical to the generic List type, but give better error messages. This also opens up the possibility of adding element-specific methods to these lists in the future.
        Elements of type MetaValue are no longer pushed as values which have .t and .tag properties. This was already true for MetaString and MetaBool values, which are still marshaled as Lua strings and booleans, respectively. Affected values:
            MetaBlocks values are marshaled as a Blocks list;
            MetaInlines values are marshaled as a Inlines list;
            MetaList values are marshaled as a generic pandoc Lists.
            MetaMap values are marshaled as plain tables and no longer given any metatable.
        Cell values are now marshaled as userdata objects; a constructor function for table cells is provided as pandoc.Cell.
        The test suite for marshaled objects and their constructors has been extended and improved.
        A bug in Citation objects, where setting a citation’s suffix modified it’s prefix, has been fixed.
        Inlines, Blocks, and List objects now have an __eq metamethod, testing equality by comparing two lists element-wise.

    Powerpoint tests: shorten lines by grouping tests (Albert Krewinkel). This makes the test output more pleasant to read in narrow terminal windows.

    make check: check for unreleased dependencies.

    Add tools/build-and-upload-api-docs.sh.

    Update cabal description.

    MANUAL.txt: Add section on EPUB styling.

    MANUAL.txt: clarify “standard Markdown” as “original Markdown” (#7802, Martin Fischer).

    doc/custom-writers.md: use filter to include source of example.

    Add an example to doc/custom-readers.md.

    Fix typo in custom-readers.md (#7722, Mauro Bieg).

    doc/jats.md: add link to JATS documentation (Martin Fischer).

    doc/lua-filters.md: many improvements (Albert Krewinkel, John MacFarlane).

    Use commonmark-extensions 0.2.3. This allows a bare-word class attribute on fenced divs.

    Use ipynb 0.2.

    Use citeproc 0.6.0.1.

    Use texmath 0.12.4.

    Use doctemplates 0.10.0.1.

[close]

https://github.com/jgm

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 22.1.7
« Antwort #6106 am: 13 Januar, 2022, 21: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

Whats new:>>

    a crash when correcting a misspelled word was fixed (for #2377, thank you @Waqar144)
    added more translation (thank you amirkbrpr, noureddin, mguerra, marterra)

https://www.qownnotes.org/

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
Vim 8.2.4087
« Antwort #6107 am: 14 Januar, 2022, 08:20 »
A highly configurable text editor built to enable efficient text editing - an improved version of the vi editor distributed with most UNIX systems.

Freeware

Changelog


    Cannot test items from an autoload script easily
    "cctx" argument of find_func_even_dead() is unused
    Vim9: no test for using import in legacy script
    Memory leak when looking for autoload prefixed variable
    Vim9: no test for "vim9script autoload' using script variable
    Check for autoload file name and prefix fails
    CodeQL reports problem in if_cscope causing it to fail
    Not sufficient test coverage for xxd
    MS-Windows: "gvim --version" didn't work with VIMDLL
    Terminal test for current directory not used on FreeBSD
    Not all Libsensors files are recognized
    Memory leak in autoload import
    Test failures
    Going over the end of NameBuff
    Coverity warns for using NULL pointer

[close]

http://www.vim.org/index.php

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
Zettlr 2.1.2
« Antwort #6108 am: 14 Januar, 2022, 21:50 »
Write text and conveniently edit it using Markdown with the help of this user-friendly and well-thought-out, Electron based application.

MIT License

Release Notes

GUI and Functionality

    New Feature: You now have more fine-grained control over how your files
    are displayed: You can now select if the filename is always used or a title
    or first heading level 1 is used (if applicable)
    New Feature: You can now also fold nested lists
    New Feature: You can now choose to display the file extensions of Markdown
    New Feature: You can now choose to always only link using filenames
    The Vim input mode of the editor started working again, so we are re-enabling
    it with this update
    Fixed an error that would cause the global search to malfunction if you
    followed a link which then started a global search while the file manager was
    hidden
    Removed an unused preference
    Rearranged some preferences
    On Windows, tabbed windows will automatically hide their labels if the window
    becomes too narrow
    Reinstated the info on what variables you could use in the Zettelkasten
    generator
    Zettlr displays info text below some preferences again
    Citations are now first-class citizens and got their own preferences tab
    Fixed a small error that would close additional files when you renamed a file
    that was also currently open
    Fixed the context menu not showing during a full text search on macOS
    When something goes wrong during opening of a new workspace or root file, the
    error messages will now be more meaningful
    Small improvement that will not detect Setext headings level 2 without a
    following empty line. This prevents some instances of data loss where users
    forget this empty line and thus accidentally create a valid simple table
    Fixed an issue where the indentation of wrapped lines would look off after
    changing the theme or modifying the editor font via custom CSS
    Fixed the vim mode cursor being barely visible in dark mode
    Done task list items will now be stroked out faster

Under the Hood

    Convert the MarkdownEditor to ES modules and TypeScript
    Make the dot-notation rule optional

[close]

Download: https://github.com/Zettlr/Zettlr/releases

https://www.zettlr.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
Pandoc 2.17.0.1
« Antwort #6109 am: 14 Januar, 2022, 22:10 »
Changelog


    Require pandoc-lua-marshal 0.1.3.1 (#7831, Albert Krewinkel). Fixes a problem with List.includes and List.find that caused a Lua stackoverflow and subsequent program crash.

    HTML template: load header-includes before math (#7833, Kolen Cheung). MathJax expect the config comes before loading the MathJax script. This change of order allows one to config MathJax via header-includes, which loads before the MathJax script. Cf. #2750.

    When reading defaults file, stop at a line .... This line signals the end of a YAML document. This restores the behavior we got with HsYaml. yaml complains about content past this line. See #4627 (comment)

    Text.Pandoc.Citeproc: allow notes-after-punctuation to work with numerical styles that use superscripts (e.g. american-medical-association.csl), as well as with note styles. The default setting of notes-after-punctuation is true for note styles and false otherwise. This restores a behavior of pandoc-citeproc that wasn’t properly carried over to Citeproc (#7826, cf. jgm/pandoc-citeproc#384).

    Use commonmark-pandoc 0.2.1.2 (#7769).

    Add FAQ on images in ipynb containers (#7749, Kolen Cheung).

[close]

https://github.com/jgm

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
Trilium Notes 0.49.5
« Antwort #6110 am: 15 Januar, 2022, 10:45 »
A hierarchical note-taking software application with focus on building large personal knowledge bases while also providing a flurry of options.

License: AGPL

Changelog

    Changed shared_info class names to avoid conflict with adblocker, closes #2546
    Print should include promoted attributes, #2550
    Migration workaround for corrupted index in entity_changes table, closes #2534
    Make getAncestors safe in respect to saved search
    Ignore "Sync not configured" message when toggling shared state
    Prevent infinite recursion when checking shared status
    Start sync immediately after sharing/unsharing, fixes #2539

[close]

https://github.com/zadam/trilium

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
Vim 8.2.4092
« Antwort #6111 am: 15 Januar, 2022, 18:20 »
Changes:>>

MacOS CI: unnecessarily doing "Install packages"

http://www.vim.org/index.php

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
Text Editor Pro 19.1.0
« Antwort #6112 am: 16 Januar, 2022, 18:30 »
Text Editor Pro (formerly EditBone) is a powerful text editing tool that comes with syntax highlighting support for over 50 languages and scripts, customizable with over 100 options, 29 ready made styles, a handy file comparison feature, unicode character map, numerical unit convert tool, SQL formatter, and support for multiple directories and search results.

Freeware

Changelog

    Added text tags for snippet (popup menu)
    Fixed column mode
    Fixed delete characters
    Fixed file reopen
    Fixed file saving
    Fixed find in files
    Fixed language files
    Fixed Matlab default file extension
    Fixed search
    Fixed SQL formatter
    Updated and fixed AlphaControls v16.22

[close]

https://texteditor.pro/

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
Vim 8.2.4103
« Antwort #6113 am: 16 Januar, 2022, 19:10 »
Changes:>>

Vim9: variable declared in for loop not initialzed

http://www.vim.org/index.php

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
Vim 8.2.4118
« Antwort #6114 am: 17 Januar, 2022, 08:50 »
Changelog


    Using UNUSED for argument that is used
    Vim9: wrong white space error after using imported item
    8Vim9: cannot use a method with a complex expression in :def
    Cannot use a method with a complex expression
    Vim9: type checking for a funcref does not work for method
    Typo on DOCMD_RANGEOK results in not recognizing command
    Function not deleted at end of test
    Potential proglem when map is deleted while executing
    Coverity warns for using NULL pointer
    Update runtime files
    MS-Windows: high dpi support is outdated
    Going over the end of the w_lines array
    Script context not restored after using <ScriptCmd>
    Going over the end of the w_lines array
    Translation related comment in the wrong place
    Vim9: lower casing the autoload prefix causes problems

[close]

http://www.vim.org/index.php

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
RisohEditor 5.6.8
« Antwort #6115 am: 17 Januar, 2022, 11:10 »
"RisohEditor" is a free resource editor for Win32 development, created by Katayama Hirofumi MZ. RisohEditor realized the ideal of resource editor. "Risoh" means "ideal" in Japanese. RisohEditor can add, edit, extract, clone and remove the resource data in EXE/DLL files. You can edit Windows resources (Dialogs, Menus, Icons, Cursors, String Tables, Message Tables etc.) by using RisohEditor.

NOTICE: Please avoid installing in "C:\Program Files" or "C:\Program Files (x86)". Because the resource compiler (windres) doesn't accept space character in the file path.

Freeware

Whats new:>>

    Changed the initial focus of IDD_CTRLPROP.
    Fixed some version info.

https://katahiromz.web.fc2.com/re/en/index.html#intro

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
MiTeC XML Viewer 6.3.0
« Antwort #6116 am: 17 Januar, 2022, 11:50 »
MiTeC XML Viewer include simple XML Editor with xml validation, very fast SAX parser, support hierarchical and text preview, text searching, Base64 decoding, attribute listing, image interpretation, Web and Content preview and large files up to available memory.

Freemium

Whats new:>>

* Stability improvements and bug fixes

http://mitec.cz/xmlv.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 )

Offline SiLæncer

  • Cheff-Cubie
  • *****
  • Beiträge: 191383
  • Ohne Input kein Output
    • DVB-Cube
CudaText 1.154.0.1
« Antwort #6117 am: 17 Januar, 2022, 19:30 »
Create programming scripts with this powerful tool that supports more than 130 languages and allows users to work concurrently on as many as six groups of projects.

Freeware

Changelog

    Add: Ctrl + mouse_wheel_click now adds/removes caret (like in Sublime Text) (thanks @johntor)
    Add: Ctrl + mouse_wheel_drag now makes column selection (almost like in Sublime Text, here it removes old carets)
    Add: it's possible to assign Ctrl+click to 'go to definition', via new value "c" of "mouse_goto_definition" (thanks @johntor)
    Add: better support DocBlock plugin, by allowing the auto-completion inside _documentation_ comments (thanks @TomBraider42)
    Add: Project Manager: command "Go To file" is now much faster (patch by @bscan)
    Add: option "dim_unfocused" dims more correctly (+gutter, +ruler, +folded blocks)
    Add: lexer RegEx handles constructs like [^]] (thanks @kvichans)
    Change: default value of "mouse_goto_definition" changed to "ca" (old value "a" was not Linux compatible)
    Fix: typing the text in 'Overwrite mode' over emoji text
    Fix: search engine bug with RegEx: change of 'case sensitive' (with the same text) did not recompile the RegEx
    Fix: few issues in the Emmet engine (thanks Rickard)
    Fix: command "delete word previous" didn't move caret, if it was after line end (thanks @hiiamboris)

[close]

https://cudatext.github.io/

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
Vim 8.2.4127
« Antwort #6118 am: 18 Januar, 2022, 08:10 »
Changelog


    Build failure without the +eval feature
    Rash on exit when built with dynamic Tcl
    Completion tests fail
    Vim9: method in compiled function may not see script item
    Complete function cannot be import.Name
    ":command Cmd" does not show custom completion argument
    Visual test fails on MS-Windows
    Block insert goes over the end of the line
    Build failure when disabling the channel feature

[close]

http://www.vim.org/index.php

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
Vim 8.2.4141
« Antwort #6119 am: 19 Januar, 2022, 08:10 »
Changelog


    Vim9 builtin functions test fails
    Maparg() does not indicate the type of script
    Using freed memory in expression abbreviation
    Vim9: no error for return with argument when invalid
    Vim9: calling import with and without method is inconsistent
    Vim9: the "autoload" argument of ":vim9script" is not useful
    Vim9: ":scriptnames" shows unloaded imported autoload script
    MS-Windows: test for import with absolute path fails
    Output of ":scriptnames" goes into the message history
    Vim9: wrong error message when autoload script can't be found
    Vim9: calling function in autoload import does not work
    MS-Windows: MSVC build may have libraries duplicated
    Building with +sound but without +eval fails
    Crash when method cannot be found

[close]

http://www.vim.org/index.php

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 )