Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pull] master from gsantner:master #219

Open
wants to merge 40 commits into
base: master
Choose a base branch
from

Commits on Jul 23, 2024

  1. Configuration menu
    Copy the full SHA
    c4ba9e7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3f06793 View commit details
    Browse the repository at this point in the history

Commits on Jul 26, 2024

  1. ShareInto: Fix crash when _editor is null

    Caused by java.lang.NullPointerException: Attempt to invoke virtual method 'android.text.Editable android.widget.EditText.getText()' on a null object reference
      at net.gsantner.markor.activity.DocumentShareIntoFragment$ShareIntoImportOptionsFragment.doUpdatePreferences (DocumentShareIntoFragment.java:532)
      at net.gsantner.markor.activity.DocumentShareIntoFragment$ShareIntoImportOptionsFragment.afterOnCreate (DocumentShareIntoFragment.java:223)
      at net.gsantner.opoc.frontend.base.GsPreferenceFragmentBase.onCreatePreferences (GsPreferenceFragmentBase.java:162)
    gsantner committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    dab3aa8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d8cd590 View commit details
    Browse the repository at this point in the history
  3. Add links to changelog

    gsantner committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    885f394 View commit details
    Browse the repository at this point in the history
  4. Markor v2.12.4 (153)

    gsantner committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    446d4f9 View commit details
    Browse the repository at this point in the history

Commits on Jul 27, 2024

  1. Latest Android SDK/Gradle fixes, by @gsantner #2360

    FAILURE: Build failed with an exception.
    
    * What went wrong:
    A problem was found with the configuration of task ':app:mapFlavorAtestDebugSourceSetPaths' (type 'MapSourceSetPathsTask').
      - Gradle detected a problem with the following location: '/mnt/store/Dokumente/aaDev/markor/app/src/main/res'.
    
        Reason: Task ':app:mapFlavorAtestDebugSourceSetPaths' uses this output of task ':copyRepoFiles' without declaring an explicit or implicit dependency. This can lead to incorrect results being produced, depending on what order the tasks are executed.
    gsantner committed Jul 27, 2024
    Configuration menu
    Copy the full SHA
    9f4f6f5 View commit details
    Browse the repository at this point in the history
  2. New Color picker, bump Android minSdk from 16 to 18, closes #1428 (PR #…

    …2203 by @halfdane)
    
    * fixes #1428 by introducing a new color picker
    
    * Update preferences_master.xml
    
    * Restore preference
    
    ---------
    
    Co-authored-by: Gregor Santner <[email protected]>
    halfdane and gsantner authored Jul 27, 2024
    Configuration menu
    Copy the full SHA
    19e0cdc View commit details
    Browse the repository at this point in the history
  3. Update translations(#2368)

    gsantner authored Jul 27, 2024
    Configuration menu
    Copy the full SHA
    be4ab7f View commit details
    Browse the repository at this point in the history
  4. Various bugfixes (anchor/toc jumping #2364, snippets folder #2369, wi…

    …kitext newfile #2362, virtual directory browser #2350) (PR #2370 by @hardhard1)
    
    * Jump by a line identifier, not by id
    * For all nodes, use eval
    * Fixed bad key in snippet directory setting
    * Fix virtual folders and wikitext underscores
    harshad1 authored Jul 27, 2024
    Configuration menu
    Copy the full SHA
    57aaf0f View commit details
    Browse the repository at this point in the history
  5. Add history scroll restoration for scroll views (#2366)

    * feat(font size dialog): add auto scroll for selection list
    * feat(special key dialog): add auto restore scroll for key list
    * feat(text actions bar): add auto restore scroll position
    * refactor: remove unnecessary font size in range 1 to 4
    * refactor: minor improvements to padding of Markdown in view mode
    * refactor: minor improvements to padding of editor in edit mode
    guanglinn authored Jul 27, 2024
    Configuration menu
    Copy the full SHA
    80e813e View commit details
    Browse the repository at this point in the history
  6. Zim: Fix link/attachment format (PR #2147 by @mehw)

    The format {{}} is for images, other types should use [[]] instead.
    
    References:
    - https://github.com/zim-desktop-wiki/zim-desktop-wiki/blob/c88cf3cb53896bf272e87704826b77e82eddb3ef/data/manual/Help/Wiki_Syntax.txt
    
    Zim: Fix link/attachment path of file selection
    
    While editing a wiki file, Zim adds links to a target residing inside
    the Notebook (where notebook.zim file is found) resolving the path as
    relative to the wiki file's attachment directory (same parent/name of
    the wiki file, but without the extension).  If a link's target is not
    a child of the Notebook, Zim adds the link as an absolute path.
    
    Zim always prefixes relative paths, adding './' if a link's target is
    a child of a wiki file's attachment directory.
    
    /home/user/Notebook            # Notebook directory
          |    |
          |    `- notebook.zim     # marks the root of the Notebook
          |    |
          |    `- wiki-example     # wiki file's attachment directory
          |    |  |
          |    |  `- video.mkv     # wiki-example.txt file attachment
          |    |
          |    `- wiki-example.txt # wiki file written in wiki markup
          |
          `- README                # file outside the Notebook's root
    
    In wiki-example.txt, [[./video.mkv]] would be a link to an attachment
    residing in the 'wiki-example' directory.  Linking notebook.zim would
    add [[../notebook.zim]], and [[/home/user/README]] would be a link to
    a file outside the Notebook.
    
    Zim: Fix attachment path of imported image
    
    Zim uses the path of the .txt wiki file for attachments, but without
    the extension, i.e. wiki-text.txt would be connected to wiki-text as
    attachment directory.
    
    Zim: Fix attachment path of edit image
    
    Zim local paths are relative to the current wiki file's attachment
    directory.  Properly resolve an attachment path to edit the image.
    
    Zim: Fix file link conversion to markdown
    
    Zim inserts file links relative to a wiki page's attachment directory,
    if the target is a child of the Notebook.  Adapt the conversion of Zim
    wiki pages to markdown, translating Zim file links accordingly.
    
    Zim: Fallback to the current directory as root
    
    Assume the current directory as top link if root cannot be determined.
    
    Zim: Interpret image link attributes
    
    Zim may insert attributes, as html tags, in an image link: id, width,
    height, type, href.
    
    {{./image.png?href=.%2Fvideo.mkv&id=anchor-name&width=50}}
    
    In markdown [![name](image)](link) is close to the above, but without
    the possibility to insert extra tags.
    
    Zim: Enable audio recording/link button
    
    Add logic to insert an audio recording/link.
    
    Zim: Contribution for link/attachment fixes
    
    Adding myself to CONTRIBUTORS.md
    
    Co-authored-by: Gregor Santner <[email protected]>
    mehw and gsantner authored Jul 27, 2024
    Configuration menu
    Copy the full SHA
    3a506e2 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    bc73060 View commit details
    Browse the repository at this point in the history
  8. Markor v2.12.5 (154)

    gsantner committed Jul 27, 2024
    Configuration menu
    Copy the full SHA
    a3cc214 View commit details
    Browse the repository at this point in the history

Commits on Jul 30, 2024

  1. Configuration menu
    Copy the full SHA
    ca79c62 View commit details
    Browse the repository at this point in the history

Commits on Aug 2, 2024

  1. Configuration menu
    Copy the full SHA
    e8acb72 View commit details
    Browse the repository at this point in the history

Commits on Aug 18, 2024

  1. Minor doc improvements

    gsantner committed Aug 18, 2024
    Configuration menu
    Copy the full SHA
    0dd9afa View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9cf3f92 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    92b30e1 View commit details
    Browse the repository at this point in the history

Commits on Sep 16, 2024

  1. Configuration menu
    Copy the full SHA
    ef1e024 View commit details
    Browse the repository at this point in the history
  2. Navigation and highlighting improvements (PR #2377 closes #2409 closes

    …#2410)
    
    * Many fixes to navigation and go back
    * Cleanups to fragment handling
    * Tweaks to showing keyboard
    * Final tweaks to activity stacks
    * Removed unnecessary 'synchronized' calls for perf
    * Tweaks to highlighting
    * Reverted some highlighting changes
    * Fix template cursor start
    * Improvements to display of file browser dialog / fragment
    * Initial set of changes for async
    * Using canonical paths and and static members
    * Defensive logic for indices
    * Batching fixup for reduced computation
    * Switching back to start end as it made no difference
    * Tweaks to launching; file paths -> canonical
    * Fixed wikitext link formatting
    harshad1 authored Sep 16, 2024
    Configuration menu
    Copy the full SHA
    c5fe529 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8ac73f8 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ea066b6 View commit details
    Browse the repository at this point in the history

Commits on Sep 18, 2024

  1. Configuration menu
    Copy the full SHA
    d4183ef View commit details
    Browse the repository at this point in the history

Commits on Sep 19, 2024

  1. Configuration menu
    Copy the full SHA
    169664f View commit details
    Browse the repository at this point in the history

Commits on Sep 20, 2024

  1. Configuration menu
    Copy the full SHA
    dcd77e2 View commit details
    Browse the repository at this point in the history

Commits on Sep 24, 2024

  1. Configuration menu
    Copy the full SHA
    40932ca View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f31cfa7 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d161e62 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c445821 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    cdd623e View commit details
    Browse the repository at this point in the history

Commits on Oct 3, 2024

  1. Configuration menu
    Copy the full SHA
    9b974c9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ed3f20f View commit details
    Browse the repository at this point in the history

Commits on Oct 11, 2024

  1. TextAction: Add text case changing functionality (closes #2390, PR #2426

    )
    
    * This commit introduces the ability to change text case within the editor,
    addressing issue #2390. Users can now toggle case, switch case,
    capitalize words, and capitalize sentences directly from the Edit menu.
    * Added an example to the display text of each text case.
    zeuchie authored Oct 11, 2024
    Configuration menu
    Copy the full SHA
    f8aab77 View commit details
    Browse the repository at this point in the history

Commits on Oct 13, 2024

  1. Configuration menu
    Copy the full SHA
    86632d5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b492872 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6ae8ea3 View commit details
    Browse the repository at this point in the history
  4. FileManager: Remove top submenu to open special folders, load storage…

    … overview in filemanager instead (PR #2440 by @gsantner)
    
    * Remove top menu submenu  to open special folders, go to virtual storage directory folder instead
    * There all special folders/devices/lists are available too, and only needs to be maintained at one location then
    * this way less duplication of those options, and all of them are available outside mainactivity too
    gsantner authored Oct 13, 2024
    Configuration menu
    Copy the full SHA
    b282167 View commit details
    Browse the repository at this point in the history

Commits on Oct 14, 2024

  1. Configuration menu
    Copy the full SHA
    4859af9 View commit details
    Browse the repository at this point in the history

Commits on Oct 21, 2024

  1. Configuration menu
    Copy the full SHA
    fd14805 View commit details
    Browse the repository at this point in the history