Skip to content
This repository has been archived by the owner on Apr 17, 2019. It is now read-only.

Fixing a crash an and UI issue #51

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

Commits on Nov 17, 2017

  1. Merge pull request cwc#36 from MarkWhybird/master

    Spurrious mouse movement events squashed
    cwc authored Nov 17, 2017
    Configuration menu
    Copy the full SHA
    00ec93b View commit details
    Browse the repository at this point in the history

Commits on Sep 6, 2020

  1. Fixing a crash and a UI issue

    PrefsByScreenUserControl does not have the correct size to show all the
    buttons at the same time when inside PreferencesForm.
    I am facing this issue in a high resolution screen in Windows 10.
    I fixed it by making sure the sizes are exact.
    I also made sure that the sub-form would stay in the same place when
    switching tabs.
    carlossanlop committed Sep 6, 2020
    Configuration menu
    Copy the full SHA
    ab7b53b View commit details
    Browse the repository at this point in the history
  2. Fix crash

    I realized that when the user has multiple monitors, but then changes to
     1 monitor, the preferences form shows the single screen tab list empty,
      instead of showing all the previously saved websites.
    By moving two function calls inside PreferencesForm_Load outside the
    if/else, we ensure that switching from 1 to multi monitors, and back,
    will always show the expected list of pages in the expected tabs.
    Carlos Sánchez López authored and carlossanlop committed Sep 6, 2020
    Configuration menu
    Copy the full SHA
    b6bf0f9 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #2 from carlossanlop/FixBug

    Fix crash and UI issue
    carlossanlop authored Sep 6, 2020
    Configuration menu
    Copy the full SHA
    a912f2d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f647468 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    57967cf View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    3bdff09 View commit details
    Browse the repository at this point in the history
  7. .gitignore simplify.

    carlossanlop committed Sep 6, 2020
    Configuration menu
    Copy the full SHA
    e7d391e View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    53a0656 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    44660af View commit details
    Browse the repository at this point in the history
  10. Program.cs

    Sort and remove usings.
    Rename namespace.
    Fix a nullability issue.
    Add SetHighDpiMode call, which is added by default in new WinForms apps.
    Use ToUpperInvariant to check arguments.
    Clean spaces.
    carlossanlop committed Sep 6, 2020
    Configuration menu
    Copy the full SHA
    6c19cb8 View commit details
    Browse the repository at this point in the history
  11. PreferencesForm.cs

    Sort and remove usings.
    Rename namespace.
    carlossanlop committed Sep 6, 2020
    Configuration menu
    Copy the full SHA
    896e064 View commit details
    Browse the repository at this point in the history
  12. PreferencesForm.Designer.cs

    Rename namespace.
    Remove unnecessary global using.
    Point default URL to this fork.
    Spacing.
    carlossanlop committed Sep 6, 2020
    Configuration menu
    Copy the full SHA
    0bfa5bb View commit details
    Browse the repository at this point in the history
  13. PreferencesManager.cs

    Sort and remove usings, move them to top.
    Rename namespace.
    Update reference to regkey in Program.
    Spacing.
    carlossanlop committed Sep 6, 2020
    Configuration menu
    Copy the full SHA
    d74ed21 View commit details
    Browse the repository at this point in the history
  14. PrefsByScreenUserControl.cs

    Rename namespace.
    Sort and remove usings.
    carlossanlop committed Sep 6, 2020
    Configuration menu
    Copy the full SHA
    17435ff View commit details
    Browse the repository at this point in the history
  15. PrefsByScreenUserControl.Designer.cs

    Rename namespace.
    Spacing.
    carlossanlop committed Sep 6, 2020
    Configuration menu
    Copy the full SHA
    df668f0 View commit details
    Browse the repository at this point in the history
  16. ScreensaverForm.cs

    Sort and remove usings.
    Rename namespace.
    Temporarily substitute Navigate call to NavigateToString to prevent build failure. May not be the right call.
    carlossanlop committed Sep 6, 2020
    Configuration menu
    Copy the full SHA
    f648521 View commit details
    Browse the repository at this point in the history
  17. ScreensaverForm.Designer.cs

    Rename namespace.
    Upgrade obsolete WebBrowser to new WebView2, which is supported in 5.0 and uses Edge.
    Add BeginInit and EndInit calls for the new WebView2.
    Spacing.
    carlossanlop committed Sep 6, 2020
    Configuration menu
    Copy the full SHA
    8e66a84 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    5fdf32d View commit details
    Browse the repository at this point in the history
  19. ScreenSaverForm

    Upgrade to WebView2. At the time of this commit, Edge Canary is a dependency of this app, but this may change soon when WebView2 gets a stable release.
    carlossanlop committed Sep 6, 2020
    Configuration menu
    Copy the full SHA
    fc7c55d View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    1d624b2 View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    e407b43 View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    b23b4b2 View commit details
    Browse the repository at this point in the history

Commits on Sep 7, 2020

  1. resx files delete.

    carlossanlop committed Sep 7, 2020
    Configuration menu
    Copy the full SHA
    2104146 View commit details
    Browse the repository at this point in the history
  2. Design changes

    Alter the layout and make it look better.
    carlossanlop committed Sep 7, 2020
    Configuration menu
    Copy the full SHA
    7b6d05a View commit details
    Browse the repository at this point in the history

Commits on Sep 8, 2020

  1. Configuration menu
    Copy the full SHA
    a3aac94 View commit details
    Browse the repository at this point in the history
  2. Heavy update.

    carlossanlop committed Sep 8, 2020
    Configuration menu
    Copy the full SHA
    0af6b68 View commit details
    Browse the repository at this point in the history
  3. More updates

    carlossanlop committed Sep 8, 2020
    Configuration menu
    Copy the full SHA
    b2d54d0 View commit details
    Browse the repository at this point in the history

Commits on Sep 9, 2020

  1. Simplify mouse and keyboard handling. Pending to review why WebView2 …

    …does not read MouseMove (may be a bug on their side).
    
    Ensure sizes of fonts and windows are respected.
    carlossanlop committed Sep 9, 2020
    Configuration menu
    Copy the full SHA
    b6fb83f View commit details
    Browse the repository at this point in the history

Commits on Sep 10, 2020

  1. Configuration menu
    Copy the full SHA
    aa1c057 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    eff1691 View commit details
    Browse the repository at this point in the history
  3. Remove AnyCPU

    carlossanlop committed Sep 10, 2020
    Configuration menu
    Copy the full SHA
    c6cf7b0 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    d9d1e76 View commit details
    Browse the repository at this point in the history
  5. Add FolderProfile.pubxml

    carlossanlop committed Sep 10, 2020
    Configuration menu
    Copy the full SHA
    679d55d View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    da7596d View commit details
    Browse the repository at this point in the history
  7. ScreensaverForm.cs ensure the screen size is used (avoid overwrite by…

    … Designer autogenerated code).
    carlossanlop committed Sep 10, 2020
    Configuration menu
    Copy the full SHA
    127126b View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    5c9a9a8 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    d7e550f View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    a78cc5b View commit details
    Browse the repository at this point in the history
  11. Program.cs revert versioning change (do not add yet). Ensure no argum…

    …ents is equivalent to opening settings.
    carlossanlop committed Sep 10, 2020
    Configuration menu
    Copy the full SHA
    66a8988 View commit details
    Browse the repository at this point in the history
  12. Merge pull request #3 from carlossanlop/UpgradeToNet50

    Version 2.0.1-Alpha
    carlossanlop authored Sep 10, 2020
    Configuration menu
    Copy the full SHA
    7eefa04 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    250607c View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    890bffd View commit details
    Browse the repository at this point in the history
  15. csproj

    Set the initial version to 2.0.1-Alpha.
    Add the trimming warning setting and set to true.
    carlossanlop committed Sep 10, 2020
    Configuration menu
    Copy the full SHA
    9ebe7ae View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    ced1bd7 View commit details
    Browse the repository at this point in the history
  17. Merge pull request #4 from carlossanlop/FinalTouches50

    Final touches to the Readme file
    carlossanlop authored Sep 10, 2020
    Configuration menu
    Copy the full SHA
    08c1c54 View commit details
    Browse the repository at this point in the history

Commits on Mar 28, 2021

  1. typo in readme

    ChayoteJarocho authored Mar 28, 2021
    Configuration menu
    Copy the full SHA
    ba54dc0 View commit details
    Browse the repository at this point in the history

Commits on Mar 29, 2021

  1. Configuration menu
    Copy the full SHA
    74e6781 View commit details
    Browse the repository at this point in the history
  2. Small updates (#8)

    * Add some helpful console messages on wrong arguments. Move code to open preferences form to its own method.
    
    * Update WebView2 package version.
    
    * TFM must target .NET 5.0 and Windows specifically (due to WinForms).
    
    * .gitignore
    
    * Bump version
    
    * Remove "Any" from sln
    
    * Address info Roslyn messages
    
    * Clean some unused code, simplify some other, remove regions.
    
    * Add new version in readme.
    
    * unnecessary parenthesis
    ChayoteJarocho authored Mar 29, 2021
    Configuration menu
    Copy the full SHA
    4788012 View commit details
    Browse the repository at this point in the history