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

Fix Windows filename issue, update Y/n Prompt, update readme #918

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

Commits on Jun 4, 2017

  1. Use correct slash (fwd slash) for server side paths.

    Fix path separator bug. The command line converts path into local
    filesystem paths, then uses that to build server-side paths. This fixes
    the slashes to the format used on the server, even if the client uses a
    different format .(E.g.  Windows uses a backslash.)
    matthewblain committed Jun 4, 2017
    Configuration menu
    Copy the full SHA
    57c4462 View commit details
    Browse the repository at this point in the history
  2. Update Readme to remove known issues

    Removed two known issues:
    Doesn't work on Windows. But it does, though there may be some bugs.
    It does handle files which have the same name on the server. In a crude
    if functional fashion (errors out, or renames server-side).
    matthewblain committed Jun 4, 2017
    Configuration menu
    Copy the full SHA
    4f8b2e0 View commit details
    Browse the repository at this point in the history
  3. Prompt for Y/N should indicate default.

    Various yes/no promptes use Y/N but don't specify that the default is Y
    (yes). Change them to indicate that in the customary manner for command
    line programs, also used elsewhere in this program.
    matthewblain committed Jun 4, 2017
    Configuration menu
    Copy the full SHA
    9bdc979 View commit details
    Browse the repository at this point in the history

Commits on Jul 2, 2017

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

Commits on Jul 3, 2017

  1. Merge pull request odeke-em#932 from devinalvaro/master

    prompt: add a space in "Proceed with the changes? [Y/n]:"
    Emmanuel T Odeke committed Jul 3, 2017
    Configuration menu
    Copy the full SHA
    313053b View commit details
    Browse the repository at this point in the history

Commits on Jul 15, 2017

  1. Fix typos in README.md

    ivuk committed Jul 15, 2017
    Configuration menu
    Copy the full SHA
    e00b514 View commit details
    Browse the repository at this point in the history

Commits on Jul 16, 2017

  1. Merge pull request odeke-em#939 from ivuk/fix-typo

    README: fix s/hypen/hyphen/g plus deinitialization spelling
    Emmanuel T Odeke committed Jul 16, 2017
    Configuration menu
    Copy the full SHA
    611b523 View commit details
    Browse the repository at this point in the history

Commits on Jul 24, 2017

  1. changes: properly send back nil if no file is found

    Ensure that nil is properly sent back after remote
    change/file resolution. This regression was caused
    by forgetting to send back that nil.
    
    This regression was caused by PR
    odeke-em#741.
    
    The consequence of the bug was that trying to push
    from non-existent folders would erraneously give
    back
    ```shell
    Resolving...
    Everything is up-to-date.
    ```
    
    since the remotesChan channel would get closed
    after resolution without sending notifying
    whoever was resolving that the file or parent didn't
    exist remotely.
    
    Fixes odeke-em#933
    odeke-em committed Jul 24, 2017
    Configuration menu
    Copy the full SHA
    08ef171 View commit details
    Browse the repository at this point in the history

Commits on Sep 30, 2017

  1. Use correct slash (fwd slash) for server side paths.

    Fix path separator bug. The command line converts path into local
    filesystem paths, then uses that to build server-side paths. This fixes
    the slashes to the format used on the server, even if the client uses a
    different format .(E.g.  Windows uses a backslash.)
    matthewblain committed Sep 30, 2017
    Configuration menu
    Copy the full SHA
    8bfdde0 View commit details
    Browse the repository at this point in the history
  2. Update Readme to remove known issues

    Removed two known issues:
    Doesn't work on Windows. But it does, though there may be some bugs.
    It does handle files which have the same name on the server. In a crude
    if functional fashion (errors out, or renames server-side).
    matthewblain committed Sep 30, 2017
    Configuration menu
    Copy the full SHA
    aad796b View commit details
    Browse the repository at this point in the history
  3. Prompt for Y/N should indicate default.

    Various yes/no promptes use Y/N but don't specify that the default is Y
    (yes). Change them to indicate that in the customary manner for command
    line programs, also used elsewhere in this program.
    matthewblain committed Sep 30, 2017
    Configuration menu
    Copy the full SHA
    0c0b657 View commit details
    Browse the repository at this point in the history
  4. Update readme

    Update readme to be more accurate.
    matthewblain committed Sep 30, 2017
    Configuration menu
    Copy the full SHA
    677b484 View commit details
    Browse the repository at this point in the history
  5. Merge remote-tracking branch 'origin/master'

    # Conflicts:
    #	README.md
    matthewblain committed Sep 30, 2017
    Configuration menu
    Copy the full SHA
    3cdad57 View commit details
    Browse the repository at this point in the history