Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ParthJadhav/Verve
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.3.1
Choose a base ref
...
head repository: ParthJadhav/Verve
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0.3.2
Choose a head ref
  • 7 commits
  • 41 files changed
  • 4 contributors

Commits on Jan 6, 2023

  1. Configuration menu
    Copy the full SHA
    5041e3d View commit details
    Browse the repository at this point in the history
  2. fix: shortcuts with Option key (#31)

    * fix: shortcuts with `Option` key
    
    Related to #11 .
    Ty3uK authored Jan 6, 2023
    Configuration menu
    Copy the full SHA
    8eb8ded View commit details
    Browse the repository at this point in the history

Commits on Jan 9, 2023

  1. fix: reduce flickering when searching for results (#30)

    * fix: reduce flickering
    
    Related to #25.
    
    Search results flickers because of three things (IMO):
    
    - `handleInput` resets the `results` array, which immediately dropping
      list with `#if` directive in `SearchResult` component
    - Changing styles on `focus` and `blur` are not immediate operation, that's why another
      kind of flickering is a transition between focused and non-focused
      state (gray background)
    - `getIcon` function is another "bottleneck"; preservation of space for
      upcomming <img> tag is a key for rescue
    
    Most "ugly" part of this code is manipulating with classes. Changing
    classes through Svelte's `class:` binding leads to focus lost.
    
    Unfortunately, manipulating classes through script cannot be made with
    obfuscated selectors, that's why you can see `:global` in code. Maybe you
    know better way to change classes without losing focus.
    
    * fix: span attributes
    
    * fix: remove icon flickering with icons cache
    
    * fix: reset `results` when search pattern is empty
    
    * chore: fix extra rectangular overlay on calculation results
    
    * chore: fix closing window when pressing enter/return
    
    * chore: fix keys not being registered
    
    Co-authored-by: Parth Jadhav <jadhavparth99@gmail.com>
    Ty3uK and ParthJadhav authored Jan 9, 2023
    Configuration menu
    Copy the full SHA
    19ff234 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d0f00a5 View commit details
    Browse the repository at this point in the history

Commits on Jan 12, 2023

  1. style: add prettier (#34)

    * style: add prettier
    
    style: add prettier ignore file
    
    style: apply formatting
    
    style: install and apply svelte prettier
    
    * Add prettier to recommended extensions
    
    * chore: add check and format scripts to package.json
    
    * chore: update prettier scripts to avoid conflict with svelte-check
    benediktms authored Jan 12, 2023
    Configuration menu
    Copy the full SHA
    e7ee512 View commit details
    Browse the repository at this point in the history

Commits on Jan 19, 2023

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

Commits on May 19, 2023

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