Skip to content

Latest commit

 

History

History
41 lines (29 loc) · 3.39 KB

Semi-Automatic_Updating.md

File metadata and controls

41 lines (29 loc) · 3.39 KB

Semi-Automatic Updating

Rather than having to download each new version of this addon, extract it, and place inside the appropriate "addons" folder there is a fairly simple way to set up one click updating which involves making use of GitHub Desktop clone and pull features.

Please review Github's Docs on connecting and cloning repos if you'd like to learn more. There are a multitude of methods ranging from git cli, personal action tokens to ssh keys, and the github cli tool.

Github Desktop

This is by far the easiest and most intuitive way of accessing repositories, and doesn't require one to have knowledge of git (although it helps), or methods of authentication.

Some deciphered terms for you:

  • Clone = Copy and Download all the code locally (to your system)
  • Fetch = Lookup what was changed
  • Pull = Download latest changes into your cloned folder

Clone is alot like setting up a dropbox or google drive whereas Fetch and Pull (together) are akin to syncing to the cloud.

Steps:

  1. Installing Github Desktop

  2. Authentication for Github Desktop

    • You'll need to get Github Desktop authenticated with your account and signed in before you're able to use it.
  3. Cloning with Github Desktop

    • Clone the psobb addon via github desktop
    • I'd recommend creating a folder outside of your psobb install folder, as it is likely that if the game ever needs to be uninstalled or reinstalled everything inside will be deleted.
  4. Symlink From Clone to addons Folder | Another Site outlining the process

    • Go inside the "addons" folder and make sure a folder called "Drop Radar" does NOT exist, delete it if so.

    • Run Command Prompt as administrator.

    • The basic "Command Prompt" command is as follows:

      • mklink /D [DESTINATION] [SOURCE]
      • example:
        • mklink /D "C:\Users\x9z0\EphineaPSO\addons\Drop Radar" "C:\Users\x9z0\GithubDesktop\psobb-drop-radar\Drop Radar"
    • If the "Drop Radar" folder inside of the "addons" folder was missing before and is now present after running the command, it has worked!

    • You can double-check this worked by opening the "addons" folder. There should be a special icon on the "Drop Radar" folder that looks like a shortcut. (has a small curved arrow on the bottom left). If your system icons are custom/non-default or even fudged by freeware/malware (not a result of this process here or this addon!), it may look different than described.

  5. Fetch and Pull Changes to Local (repeat)

    • Doing this will allow you to one-click sync the latest changes and get the newest version that might be released to the addon.
    • You might do this from time to time, or when the addon has a bug - the bug might have been fixed!