Poll

Rate the factions:

Mega Pack
SST
Nihilirian
Vbros Packs
Dwarves
Monster/Alien
Apocalyptic Dawn
City
Winter men
Whimsical Forest
Alliance
Iroquois
Imperial Faction
Woodsmen
Constellus
Japanese
Glest In Space
Girls
Project Green

Author Topic: Factions Download Center  (Read 115399 times)

BASH2003

  • Guest
Re: Factions Download Center
« Reply #275 on: 14 August 2011, 02:38:57 »
umm, i couldnt download some of the factions on the list. I wanted to download woodsmen, but for some reason, it says the file is not found. there is also the animal cruelty faction which for some reason can't download also. So, is there another place that they could be downloaded?

Omega

  • MegaGlest Team
  • Dragon
  • ********
  • Posts: 6,167
  • Professional bug writer
    • View Profile
    • Personal site
Re: Factions Download Center
« Reply #276 on: 14 August 2011, 05:58:10 »
Oh dear, I checked some of the wiki's links and it appears that nearly every (if not every) file hosted on gamefront is broken. Fortunately, I have most of the higher quality mods, and can try and upload them when time allows, but in the meantime, I suppose we're best off using things like sugar share, drop box, and mediafire for hosting. On one bright side, this is a perfect chance to ensure all mods are in the addons format, which makes installation on ALL engines easier (Glest and MegaGlest have to copy the contents of the archive into the installation directory, while GAE can have the archive simply placed in the addons directory. A standard to make things simpler for those who are not modders).
« Last Edit: 18 June 2016, 15:13:07 by filux »
Edit the MegaGlest wiki: http://docs.megaglest.org/

My personal projects: http://github.com/KatrinaHoffert

John.d.h

  • Moderator
  • Airship
  • ********
  • Posts: 3,757
  • I have to go now. My planet needs me.
    • View Profile
Re: Factions Download Center
« Reply #277 on: 14 August 2011, 17:53:43 »
Fortunately, I have most of the higher quality mods, and can try and upload them when time allows, but in the meantime, I suppose we're best off using things like sugar share, drop box, and mediafire for hosting.
I don't know anything about sugarshare, but github makes a good place to host things for long-term integrity, and also great for collaboration, so I propose we host mods there (especially while in-progress, if multiple people are working on it).  Mediafire and Dropbox both have the drawback of being possibly deleted when the owner cleans out his/her stuff, while MF has a file size limit and DB has an overall storage limit.  To the best of my knowledge, github has neither.

Perhaps someone creates a "Glest mod center" project on github, and links to several other repos like the Scifi pack and Project Red, both of which are already hosted on the site.  It could also host the zipped archives in add-on format for easy downloading.

We'd probably need to include a "how to download and install" text file in the main repo for people who aren't experienced with git.

Omega

  • MegaGlest Team
  • Dragon
  • ********
  • Posts: 6,167
  • Professional bug writer
    • View Profile
    • Personal site
Re: Factions Download Center
« Reply #278 on: 14 August 2011, 21:36:07 »
Fortunately, I have most of the higher quality mods, and can try and upload them when time allows, but in the meantime, I suppose we're best off using things like sugar share, drop box, and mediafire for hosting.
I don't know anything about sugarshare, but github makes a good place to host things for long-term integrity, and also great for collaboration, so I propose we host mods there (especially while in-progress, if multiple people are working on it).  Mediafire and Dropbox both have the drawback of being possibly deleted when the owner cleans out his/her stuff, while MF has a file size limit and DB has an overall storage limit.  To the best of my knowledge, github has neither.

Perhaps someone creates a "Glest mod center" project on github, and links to several other repos like the Scifi pack and Project Red, both of which are already hosted on the site.  It could also host the zipped archives in add-on format for easy downloading.

We'd probably need to include a "how to download and install" text file in the main repo for people who aren't experienced with git.
Been crawling through the manuals on their site, and I like it. I'll make a repo soon for hosting said mods.

EDIT: I created a repo for it, uploaded a README and the woodsman faction (in addons format, of course).

https://github.com/glest/Glest-Mods

EDIT2: I notice it's easy enough to download the folders across git users, and can even download a perfectly formatting zip file with git archive --format=zip HEAD:woodsmen_1.1/ > woodsmen_1.1.zip -9, though, is there any way to make a link for regular users to download (that is, those without git, who just want to download the mod to play)?

Could be really useful with a git-compatible mod-downloader.

I noticed the download button, but it only seems to want to download an entire repo rather than just one folder. Any way to change that?
« Last Edit: 14 August 2011, 22:56:07 by Omega »
Edit the MegaGlest wiki: http://docs.megaglest.org/

My personal projects: http://github.com/KatrinaHoffert

will

  • Golem
  • ******
  • Posts: 783
    • View Profile
Re: Factions Download Center
« Reply #279 on: 15 August 2011, 05:24:55 »
I noticed the download button, but it only seems to want to download an entire repo rather than just one folder. Any way to change that?

1) the straightforward way is to put each freestanding faction that might want to be downloaded separately into its own repo

1b) you can then create an 'umbrella' repo that contains links to the other factions ('git submodule')

1c) it would be SUPER USEFUL if people who have repos of the same factions - but possibly under different engines or tweaks or whatnot - fork from each other.  It then becomes a joy for them to take each others changes back ('pulling' in git parlance)

2) if you right-click on the links on the message-box that comes up when you click on the download buttons, you can get the direct url that you can give to people e.g. https://github.com/glest/Glest-Mods/zipball/master

Omega

  • MegaGlest Team
  • Dragon
  • ********
  • Posts: 6,167
  • Professional bug writer
    • View Profile
    • Personal site
Re: Factions Download Center
« Reply #280 on: 15 August 2011, 08:20:05 »
The individual repo per mod thing sounds cleaner, though, I wonder how well it would work since that means you can only store the current version of the mod, no extra development files, etc, if you want that simple download link to work.

I definitely agree with forking similar factions. Magic and Tech both appear slightly differently in GAE's Magitech, Glest's Magitech, and MG's MegaPack. Not to mention FPM would also use them...

For the downloading though, it may end up necessary to use Git to store a "master copy" which can contain development files (blender, audacity, etc) and would make version handling easier, though to distribute the final project to everyone, you'd export and upload to another site, such as Mediafire (which you should not expect it to last on, all the more reason to have it also available on GitHub).

Unless there's any cleaner methods that don't require the user to have installed Git?
Edit the MegaGlest wiki: http://docs.megaglest.org/

My personal projects: http://github.com/KatrinaHoffert

will

  • Golem
  • ******
  • Posts: 783
    • View Profile
Re: Factions Download Center
« Reply #281 on: 15 August 2011, 08:44:52 »
in the sci_fi, I store development stuff in branches.

ElimiNator

  • Airship
  • ********
  • Posts: 3,391
  • The MegaGlest Moder.
    • View Profile
Re: Factions Download Center
« Reply #282 on: 15 August 2011, 16:15:25 »
I added a  (No download) to the end of all the files that have no download (which is a lot!). People look at the downloads if one of the mods is yours or if you have it please upload and post the link here. Thanks

BTW: FileFront or should I say GameFront has all the problems...
Get the Vbros': Packs 1, 2, 3, 4, and 5!

Omega

  • MegaGlest Team
  • Dragon
  • ********
  • Posts: 6,167
  • Professional bug writer
    • View Profile
    • Personal site
Re: Factions Download Center
« Reply #283 on: 15 August 2011, 16:38:40 »
BTW: FileFront or should I say GameFront has all the problems...
Pretty much every file host has issues. Most have restrictions on size, others remove after a so called period of inactivity, which sometimes simply means the UPLOADER has to log in, even if others are downloading the mod, and others have counters, etc. Gamefront seemed like a wonderful idea at first, but it looks like something changed. We currently use Mediafire a lot, but we lose a lot of files to it, too!
Edit the MegaGlest wiki: http://docs.megaglest.org/

My personal projects: http://github.com/KatrinaHoffert

Hagekura

  • Archmage
  • ******
  • Posts: 524
    • View Profile
    • Hageus_Iaponicus(@Hageus_Hagekura)さん | Twitter
Re: Factions Download Center
« Reply #284 on: 15 August 2011, 20:30:17 »
I added a  (No download) to the end of all the files that have no download (which is a lot!). People look at the downloads if one of the mods is yours or if you have it please upload and post the link here. Thanks

BTW: FileFront or should I say GameFront has all the problems...
https://forum.megaglest.org/index.php?topic=6103.msg76345#msg76345
Bushido to iu wa shinu koto to mitsuketari.

Japanese Faction Mod

Omega

  • MegaGlest Team
  • Dragon
  • ********
  • Posts: 6,167
  • Professional bug writer
    • View Profile
    • Personal site
Re: Factions Download Center
« Reply #285 on: 15 August 2011, 22:49:26 »
I added a  (No download) to the end of all the files that have no download (which is a lot!). People look at the downloads if one of the mods is yours or if you have it please upload and post the link here. Thanks

BTW: FileFront or should I say GameFront has all the problems...
https://forum.megaglest.org/index.php?topic=6103.msg76345#msg76345
Yes, drop box, sugar sync, and all these similar programs are some of the best choices, though they have they have limitations on the overall storage too, which means you'd generally have to delete older versions of the mod, etc, to save space. For now, I've uploaded the elves and woodsmen to my sugarsync account:

Woodsmen

EDIT: Blast, a hidden restriction in SugarSync is that it disallows sharing of files over 25MB on free plans. Another good file sharing service down the drain.
Edit the MegaGlest wiki: http://docs.megaglest.org/

My personal projects: http://github.com/KatrinaHoffert

ElimiNator

  • Airship
  • ********
  • Posts: 3,391
  • The MegaGlest Moder.
    • View Profile
Re: Factions Download Center
« Reply #286 on: 16 August 2011, 03:54:49 »
So no elves?
Get the Vbros': Packs 1, 2, 3, 4, and 5!

John.d.h

  • Moderator
  • Airship
  • ********
  • Posts: 3,757
  • I have to go now. My planet needs me.
    • View Profile
Re: Factions Download Center
« Reply #287 on: 16 August 2011, 16:17:17 »
I think my copy of the Elves in Project Red is unedited, aside from fixing the G3Ds' two-sided problem, so you could just grab that and reupload it.

Omega

  • MegaGlest Team
  • Dragon
  • ********
  • Posts: 6,167
  • Professional bug writer
    • View Profile
    • Personal site
Re: Factions Download Center
« Reply #288 on: 16 August 2011, 19:34:40 »
So no elves?
Eh, I need a new uploading solution... So hard to find a half decent free one.
Edit the MegaGlest wiki: http://docs.megaglest.org/

My personal projects: http://github.com/KatrinaHoffert

John.d.h

  • Moderator
  • Airship
  • ********
  • Posts: 3,757
  • I have to go now. My planet needs me.
    • View Profile
Re: Factions Download Center
« Reply #289 on: 16 August 2011, 20:28:27 »
I've forked from your repo and updated the Woodsmen version to include the fixed g3d files.  I'm currently pushing the Elves as well.  I'll issue a pull request when I'm done.

Edit: Elves are borked.  I guess I deleted the resource folder with Grace in it, and the non-power-of-two textures are throwing errors at me.  Woodsmen should be good to go.
« Last Edit: 16 August 2011, 21:14:35 by John.d.h »

Omega

  • MegaGlest Team
  • Dragon
  • ********
  • Posts: 6,167
  • Professional bug writer
    • View Profile
    • Personal site
Re: Factions Download Center
« Reply #290 on: 16 August 2011, 21:21:55 »
I've forked from your repo and updated the Woodsmen version to include the fixed g3d files.  I'm currently pushing the Elves as well.  I'll issue a pull request when I'm done.

Edit: Elves are borked.  I guess I deleted the resource folder with Grace in it, and the non-power-of-two textures are throwing errors at me.  Woodsmen should be good to go.
Awesome John. I have an unmodified version of the elves I can try and upload when I have time, but it's...huge.

Anyone who knows how to use Git (or doesn't, the manuals on the site are very good) is more than welcome to upload mods, be it their own or anothers.
Edit the MegaGlest wiki: http://docs.megaglest.org/

My personal projects: http://github.com/KatrinaHoffert

John.d.h

  • Moderator
  • Airship
  • ********
  • Posts: 3,757
  • I have to go now. My planet needs me.
    • View Profile
Re: Factions Download Center
« Reply #291 on: 16 August 2011, 21:43:37 »
Okay, I'll get your copy of the elves and merge in my fixed g3ds, then push.  You've got a pull request for the fixed Woodsmen.

Here's an add-on friendly non-solid 7zip of them for non-git-using folks: https://github.com/downloads/johndh/Glest-Mods/woodsmen1.2.7z

ElimiNator

  • Airship
  • ********
  • Posts: 3,391
  • The MegaGlest Moder.
    • View Profile
Re: Factions Download Center
« Reply #292 on: 30 September 2011, 21:48:00 »
I still don't have a download for elves.
Get the Vbros': Packs 1, 2, 3, 4, and 5!

MightyMic

  • Technician
  • ****
  • Posts: 150
  • To mod, or not to mod...
    • View Profile
Re: Factions Download Center
« Reply #293 on: 23 March 2012, 06:45:00 »
Here's a version I have. I don't think I've modded it at all, but I can't remember. The link is only good until 12/04/22 and only thirty people >:( can download it. Hopefully this is what you guys are looking for

https://www.hidrive.strato.com/lnk/L8MDwirU


ElimiNator

  • Airship
  • ********
  • Posts: 3,391
  • The MegaGlest Moder.
    • View Profile
Re: Factions Download Center
« Reply #295 on: 23 March 2012, 16:41:15 »
Thanks.
Get the Vbros': Packs 1, 2, 3, 4, and 5!

ElimiNator

  • Airship
  • ********
  • Posts: 3,391
  • The MegaGlest Moder.
    • View Profile
Re: Factions Download Center
« Reply #296 on: 17 December 2012, 19:49:57 »
How come this was un-stickyed?
Get the Vbros': Packs 1, 2, 3, 4, and 5!

tomreyn

  • MegaGlest Team
  • Airship
  • ********
  • Posts: 2,764
    • View Profile
    • MegaGlest - the free and open source cross platform 3D real-time strategy game
Re: Factions Download Center
« Reply #297 on: 17 December 2012, 22:54:45 »
Dunno. I made it a sticky again for now, unless there's a reason to unstick it?
Generally I think this would be better placed on a wiki, though, since it enables anyone to contribute and add new mods and mirror links, plus there is no/a much higher limit on how much text can co into one post/page.
atibox: Ryzen 1800X (8 cores @3.6GHz), 32 GB RAM, MSI Radeon RX 580 Gaming X 8G, PCI subsystem ID [1462:3417], (Radeon RX 580 chipset, POLARIS10) @3440x1440; latest stable Ubuntu release, (open source) radeon (amdgpu) / mesa video driver
atibox (old): Core2Quad Q9400 (4 cores @2.66GHz), 8 GB RAM, XFX HD-467X-DDF2, PCI subsystem ID [1682:2931], (Radeon HD 4670, RV730 XT) @1680x1050; latest stable Ubuntu release, (open source) radeon / mesa video driver
notebook: HP envy13d020ng
internet access: VDSL2+

· · · How YOU can contribute to MG · Latest development snapshot · How to build yourself · Megapack techtree · Currently hosted MG games · · ·

ElimiNator

  • Airship
  • ********
  • Posts: 3,391
  • The MegaGlest Moder.
    • View Profile
Re: Factions Download Center
« Reply #298 on: 17 December 2012, 23:19:56 »
I do think it should be on the wiki but no one ported all the mods yet.
Get the Vbros': Packs 1, 2, 3, 4, and 5!

-Archmage-

  • Moderator
  • Dragon
  • ********
  • Posts: 5,887
  • Make it so.
    • View Profile
    • My Website
Re: Factions Download Center
« Reply #299 on: 18 December 2012, 00:25:51 »
It's probably healthy to have mod lists and centers everywhere, not just the wiki. I personally haven't seen the wiki in over a year...
Egypt Remastered!

Proof: Owner of glest@mail.com

 

anything