Giter Site home page Giter Site logo

.github's People

Contributors

github-actions[bot] avatar srhinos avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar

Forkers

qartemist

.github's Issues

[REQ] RE: DejaCharacterStats: Addon Removal Request

Remove my addon DejaCharacterStats from this repository.

DejaCharacterStats' license is All Rights Reserved which is my explicit intent.

CurseForge's default license is All Rights Reserved (All addons on their site are All Rights Reserved unless a different license is explicitly designated)

DejaCharacterStats is hosted on my own website:

https://www.wowobserver.com/DCS/

DejaCharacterStats is hosted on Wago which means it is available on WoWUp as well:

https://addons.wago.io/user/Dejablue

https://addons.wago.io/addons/deja-character-stats

DejaCharacterStats is hosted on WoWInterface and available with their MMOMinion addon manager client:

https://www.wowinterface.com/downloads/author-22172.html

https://www.wowinterface.com/downloads/info24060-DejaCharacterStats.html

Thank you in advance for your timely removal of DejaCharacterStats from this repository:

https://github.com/curseforge-mirror

https://github.com/curseforge-mirror/dejacharacterstats

[REQ] New Addon Requests

Addon Name: HandyNotes
Curseforge URL: https://www.curseforge.com/wow/addons/handynotes

Addon Name: Click Links
Curseforge URL: https://www.curseforge.com/wow/addons/clicklinks

Addon Name: BugSack
Curseforge URL: https://www.curseforge.com/wow/addons/bugsack

Addon Name: ItemLinkLevel
Curseforge URL: https://www.curseforge.com/wow/addons/itemlinklevel

Addon Name: Global Ignore List and Chat Spam Filter
Curseforge URL: https://www.curseforge.com/wow/addons/global-ignore-list

Addon Name: Method Raid Tools (MRT)
Curseforge URL: https://www.curseforge.com/wow/addons/method-raid-tools

Addon Name: MinimapButtonBag Reborn
Curseforge URL: https://www.curseforge.com/wow/addons/minimapbuttonbag-reborn-mmb-reborn

๐Ÿ™

[REQ] Prat

Addon Name: Prat-3.0 / Prat-tbc

Prat now officially uses github actions properly for github releases, is available on wowinterface, and will soon โ„ข๏ธ be avaialable on Wago :)

[REQ] Postal

Addon Name: Postal
Curseforge URL: https://www.curseforge.com/wow/addons/postal

It would seem that the current Postal link on this mirror github isnt working?
(Using the url
https://github.com/curseforge-mirror/postal
)
When i try and import it into WoWup it says "A valid zip file is required to be in the release order in order for WoWUp to download it"

Is this a incorrect implementation of it in the mirror? Or does the curseforge addon have something weird on their end perhaps?

ps. Your new-openables addon is awesome.

[REQ] Addon Removal Request

Please remove "Better Wardrobe and Transmog Mirror" from this. Permission was not granted to be hosted here.

Possibly disable/filter Burning Crusade re-releases for Details?

Ok so this is a fun one:

  • Burning Crusade updates for Details! are no longer published since.. you can't officially play BC anymore
  • https://github.com/curseforge-mirror/details/releases re-releases BC continously
  • technically the code from that release is fine to run on Retail too, BUT
    • its outdated by now, since Details! doesn't publish Curseforge releases for BC anymore due to redundancy as of above
    • ajour will just happily pick the first .zip found in the release page meaning its permanently reverting to an old, technically unmaintained version of Details! of 10304 while 10337 is out by now
  • the only alternative for Retail/Wrath players atm is to simply not use the curseforge mirror and manually update

This kind of plays into the general issue of continously re-releasing unchanged versions (can't find the issue ๐Ÿค”) which I guess could prevent this too but could we possibly disable the -bc file mirror for Details! ?

Automate the Generation of Currently Mirrored Addons List

Referencing this list -- https://github.com/curseforge-mirror/.github/blob/main/README.md

I have a script locally doing this and need to write a GH Action to automate this.

Figured if anyone wants to contribute to the repo / this project they could tackle this before I do,

existing python script for reference so you dont have to guess on format or anything:

from pathlib import Path

root_path = Path("./")
template_path = root_path / "template" / ".github" / "workflows" / "setup-repo.yml"

ignore_file = [".git", "README.md", ".templateversionrc", "setup.json", "__pycache__"]
ignore_addons = [
    "BetterTooltips",
    "BetterWardrobe",
    "BGHistorian",
    "wow-dialogkey",
    "ViragDevTool",
    "opie",
    "tldr-missions",
    "tldrmissions",
    "venture-plan",
]
ignore_misc = [
    "template",
    ".github",
    "actions-template-sync",
    "this.py",
    "this.sh",
    "cloudscraper",
]
ignore_folder = ignore_addons + ignore_misc
to_use = "setup-repo.yml"


out_str = "| [{0}](https://github.com/curseforge-mirror/{0}) | [![workflow badge](https://github.com/curseforge-mirror/{0}/actions/workflows/main.yml/badge.svg)](https://github.com/curseforge-mirror/{0}/actions/workflows/main.yml) | [![workflow badge](https://github.com/curseforge-mirror/{0}/actions/workflows/template-sync.yml/badge.svg)](https://github.com/curseforge-mirror/{0}/actions/workflows/template-sync.yml) | [![download badge](https://img.shields.io/github/downloads/curseforge-mirror/{0}/total)](https://github.com/curseforge-mirror/{0}/releases) |"
small_out_str = "| [{0}](https://github.com/curseforge-mirror/{0}) | [![workflow badge](https://github.com/curseforge-mirror/{0}/actions/workflows/main.yml/badge.svg)](https://github.com/curseforge-mirror/{0}/actions/workflows/main.yml) | n/a | [![download badge](https://img.shields.io/github/downloads/curseforge-mirror/{0}/total)](https://github.com/curseforge-mirror/{0}/releases) |"
[print(small_out_str.format(f.name) if f.name in ignore_addons else out_str.format(f.name)) for f in root_path.iterdir() if f.name not in ignore_misc]

Script works by cloning all repos in the org locally and running it at the org wide directory. Quick snippet to do this:
gh repo list curseforge-mirror --limit 1000 | while read -r repo _; do gh repo clone "$repo" "$repo"; done

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.