GithubHelp home page GithubHelp logo

goldenchrysus / ffxiv-ember-overlay Goto Github PK

View Code? Open in Web Editor NEW
132.0 5.0 27.0 113.28 MB

Powerful, data-focused DPS overlay and spell timers for Final Fantasy XIV (FFXIV). Can be used with the OverlayPlugin and ACTWebSocket plugins for Advanced Combat Tracker (ACT). Updated for Endwalker.

License: GNU General Public License v3.0

HTML 0.49% CSS 0.14% JavaScript 73.97% Less 20.99% Python 4.38% Shell 0.04%
ffxiv-overlays ffxiv-act ffxiv overlayplugin overlayplugin-skin actwebsocket act spell-timers endwalker ember

ffxiv-ember-overlay's Introduction

FFXIV Ember Overlay & Spell Timers

Powerful, data-focused DPS overlay and spell timers for Final Fantasy XIV. Can be used with the OverlayPlugin and ACTWebSocket plugins for Advanced Combat Tracker.

Updated for Endwalker.

GitHub GitHub package.json version GitHub last commit (branch) Works with OverlayPlugin Works with ACTWebSocket Discord GitHub package.json dynamic

Funding

Donate on Cash App Donate at PayPal ペイペイで施してください Donate at Ko-fi Become a Patron Donate at Streamlabs

Usage with OverlayPlugin

Create a new overlay from one of the Ember presets. Alternatively, set your OverlayPlugin URL to https://goldenchrysus.github.io/ffxiv/ember-overlay/

Usage with ACTWebSocket with OverlayProc

Add a new skin URL to https://goldenchrysus.github.io/ffxiv/ember-overlay/ and create a new overlay window from this skin.

Discord

Join the Discord server to receive live updates, report bugs, or request features at: https://discord.gg/7Kdpw6C

Navigation

Features

Informative tabs for damage, healing, tanking, raiding, and aggro.

DPS tab Healing tab Tanking tab Raid tab Aggro tab

Click on any player's name to view detailed statistics.

Detailed statistics

Optional minimal, light, and classic themes (minimal can be combined with any theme).

Minimal theme Light theme Classic theme

Spell timers.

Spell, buff, DOT, and debuff timers.

Spell, buff, DOT, and debuff timers

Optional minimal layout.

Minimal layout

Flexible layout options.

Flexible layout

Powerful but easy spell timer setup.

Powerful but easy setup

Text to speech alerts.

Customizable text to speech alerts

Powerful overlay and data settings.

Customizable overlay

Quality of life features.

Collapsible interface to save space and show only your stats.

Collapsible interface

Blur player names for privacy (optionally blur job icons).

Blur player names

Browse encounter history (up to five encounters).

View encounter history

Minimize the entire overlay to the left or right when not in use to free up screen space.

Minimize when not in use

Easily see the recent changes since your last visit.

About and changelog

Clear encounter data or load sample data to perfect your setup.

Clear encounter and load sample data Load sample spell data

Installation

Other Languages Available

To use this overlay, you need Advanced Combat Tracker (ACT) and OverlayPlugin. Please follow the guide based on your situation:

You don't have ACT or OverlayPlugin

Please follow the ACT + OverlayPlugin installation guide from the beginning.

You already have ACT but need OverlayPlugin

Please follow the OverlayPlugin installation guide.

You already have ACT and OverlayPlugin

Choose the guide based on your version of OverlayPlugin:

ngld OverlayPlugin

  1. Within ACT, navigate to Plugins > OverlayPlugin.dll.
  2. Set your overlay URL to https://goldenchrysus.github.io/ffxiv/ember-overlay/ or add a new overlay with the Ember preset selected (presets available in ngld OverlayPlugin 0.13.0 or later).

hibiyasleep or RainbowMage OverlayPlugin

  1. Within ACT, navigate to Plugins > OverlayPlugin.dll > Mini Parse.
  2. Set the URL to https://goldenchrysus.github.io/ffxiv/ember-overlay/
  3. Click "Reload overlay," and the overlay should now be visible in your FFXIV game.

Older Guides (ACTWebSocket and 0.3.4.0 OverlayPlugin)

If you need to see the old ACTWebSocket or 0.3.4.0 OverlayPlugin guides, they can be accessed here.

Changelog

View the full changelog here.

Staging Site

You can access and test features in advance by using the staging site. Instead of the regular URL, set your overlay to https://goldenchrysus.github.io/ffxiv/ember-overlay-dev/

Please note that the staging site is for pre-release testing, so you may encounter errors. Please report these errors as GitHub issues or in the #bug-reports channel on the Discord.

When viewing the changelog, you will be able to determine which changes are available on the staging site because they will be prefixed with "!" in the changelog for the latest development version.

Credits

Translations

  • Bona - Portuguese
  • ShadyWhite - Chinese
  • Gusma - Portuguese
  • The_X - Portuguese
  • okuRaku - Japanese
  • Astriel - German
  • Claud - Spanish
  • Okâme - French
  • Tsunari96 - Tsunari96#8491 (Discord) - Korean
  • justscribe - Twitch, Website - Ukrainian
  • Gisar - Russian

Featured Donors

  • Pimpy Shortstocking
  • FortiusTTV - Twitch
  • loski3
  • Vale Alania

Donors

  • Amneamnius
  • Vulasuw
  • Jessica
  • mehdont
  • Tomo

Misc.

Building

To build this yourself, do the following:

  1. Clone the repository using git, e.g. git clone https://github.com/GoldenChrysus/ffxiv-ember-overlay.git

  2. Run npm install to install the Node packages.

  3. Make a file .env-cmdrc and provide environment variables as necessary, using .env-cmdrc.sample as a guide.

  4. To launch the server immediately:

    1. Run npm start to start the React app on your machine on port 3000.
    2. Navigate to your.server.host:3000 to view the app.
  5. To build the app for usage on a Web server:

    1. Run one of the following build commands depending on your environment:
      • npm run build:development to build the development environment.
      • npm run build:staging to build the staging environment.
      • npm run build to build the production environment.
    2. Copy the contents of /build to the desired path on your Web server.
    3. Navigate to your.server.host/path/to/app to view the app.

Contributing

Process

  1. For new features, it would be best to first discuss your plans in an issue. This is to ensure that I haven't already completed a similar feature locally, that I agree with your approach, and that your feature aligns with the overall vision of the project. Bypassing this and sending new features straight to pull may result in pull rejection.
  2. Create a fork.
  3. Make your changes and follow the coding guidelines.
  4. Commit with meaningful messages that describe your changes.
  5. Create a pull request.
  6. Ensure your pull request describes the nature and purpose of your changes.

Coding Guidelines

This list is not exhaustive and generally applies to formatting. Your merge request may be rejected for other reasons including but not limited to: formatting issues not specified here, architectural concerns, or functionality concerns.

  • Indentation must use tabs.
  • Variable assignment equal signs should be aligned using spaces.
  • Use let for all variable declarations unless unreasonable (e.g. var for scoping reasons or const for constants).
  • Variable comparisons should use ===.
  • Variable names should be descriptive and not misspelled.
  • Variable names should be snake_case.
  • Function names should be camelCase.
  • Class names should be PascalCase.
  • String quotation should be done with double-quotes, not single-quotes, except in cases of interpolation where backticks would be used.
  • Trailing whitespace should be stripped.
  • Do not refactor surrounding code unless necessary for your change.
  • return statements should be as early or late in a function as possible; avoid return statements in the middle of a function.
  • Opening curly braces ({) for classes, functions, and control blocks should be on the same line as the block, e.g. if (some_var === true) {.
  • Use arrow functions unless needing to inherit the class or function context.
  • Ensure the final version of your code is free of debug code.

License

GNU General Public License v3.0 only

Copyright

Copyright (C) 2019-2021, Patrick Golden. All rights reserved.

Copyrights licensed under GNU General Public License v3.0 only.

See the accompanying LICENSE file for terms.

ffxiv-ember-overlay's People

Contributors

epitts11 avatar goldenchrysus avatar justscribe avatar okuraku avatar shadywhite avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.