Jump to content

All Activity

This stream auto-updates

  1. Past hour
  2. If A27.1 doesn't work for you, you can try installing an even older version. A23b is a still great fun, and it also has a much smaller memory footprint.
  3. Today
  4. Hi @Caterina, welcome to the forums. If you'd upload your logs the problem could possibly be resolved. Here's how to find them: https://gitea.wildfiregames.com/0ad/0ad/wiki/GameDataPaths
  5. Endpoint=https://gitea.wildfiregames.com/0ad/0ad.git/info/lfs (auth=basic) Endpoint (upstream)=https://gitea.wildfiregames.com/0ad/0ad.git/info/lfs (auth=basic) Yeah, but I have only those two. Everything seems to work now.
  6. Where can I find an older version of the game agni 27 to download? Thank you very much
  7. I can't play 0ad 28 after I press play it kicks me out of the game with an error description.
  8. Well my point wasn’t to copy design decisions that aoe2 makes, but to highlight how automated features should be left unoptimized for better gameplay results. Aoe2 is just a good example of this. I agree that in general aoe2 has a much higher skill level than 0ad at the top level, but that doesn’t at all mean that we need “easier” mechanics, there should be no skill ceiling. Just because high apm can help players win the game, doesn’t mean apm is “demanded” by the game. A good game is one where a bad player can learn a lot of a certain mechanic, win more as a result, and still have a lot left to improve in that same mechanic.
  9. gg is how I name my origin. You probably have origin as your local repo, not gg
  10. Oh really? That explains some of my difficulties. :-/ I am still missing the "Endpoint (gg)" one, though.
  11. Ok, but it looks like you’re making progress now. Check where your LFS URL is pointing, bc it looks like it is missconfigured because: So, check the LFS URL endpoints with: git lfs env And check for the Endpoint values: They should look like this (note they are none of them are pointing to my remote but official repo instead): If you see bad urls here you can: git lfs uninstall git lfs install git config lfs.url https://gitea.wildfiregames.com/0ad/0ad.git/info/lfs git lfs pull If this pull still fails you can try: GIT_LFS_SKIP_SMUDGE=1 git pull git lfs pull Now, I’m not entirely sure how GIT_LFS_SKIP_SMUDGE works internally besides that it basically skips downloading LFS files during pull, but it has helped me before when I had issues updating my local repo due to LFS errors.
  12. Now git-lfs makes issues again: Updating files: 100% (57/57), done. Downloading binaries/data/mods/public/art/meshes/props/caryatid.dae (101 KB) Error downloading object: binaries/data/mods/public/art/meshes/props/caryatid.dae (4758e69): Smudge error: Error downloading binaries/data/mods/public/art/meshes/props/caryatid.dae (4758e699101e3ab0b367bc4557a5fe155b395df3a28d3c3ecc3c5d7bb4b45565): batch request: ssh: Could not resolve hostname https: Name or service not known: exit status 255 Errors logged to '/home/tre/git/0ad/0ad-DR_fork/.git/lfs/logs/20260321T163051.234002216.log'. Use `git lfs logs last` to view the log. error: external filter 'git-lfs filter-process' failed fatal: binaries/data/mods/public/art/meshes/props/caryatid.dae: smudge filter lfs failed Tried this: https://wildfiregames.com/forum/topic/135018-git-lfs-issues/
  13. @DesertRose Ok, your remote now looks good. So instead of git pull try doing this: git fetch git clean -fd git reset --hard origin/main. This should remove those files and bring you an exact copy of your remote repo
  14. For Map Filter you can also select "All Maps" in case you don't remember to which group the map you are looking for belongs (Default, Naval Maps, Demo Maps, Best for MP, Trigger Maps)
  15. @DesertRose Great. Now: git push --force-with-lease you-remote-repo-name <your-repo-main-branch>
  16. $ git reset --hard 262c5c037e HEAD is now at 262c5c037e Use promises to fetch net messages $ git push --force-with-lease origin main Total 0 (delta 0), reused 0 (delta 0), pack-reused 0 (from 0) remote: remote: Create a new pull request for 'main': remote: https://gitea.wildfiregames.com/DesertRose/0ad-DR_fork/pulls/new/main remote: remote: . Processing 1 references remote: Processed 1 references in total To https://gitea.wildfiregames.com/DesertRose/0ad-DR_fork.git + 19fe52f328...262c5c037e main -> main (forced update) Sync Fork on gitea $ git pull From https://gitea.wildfiregames.com/DesertRose/0ad-DR_fork 262c5c037e..19fe52f328 main -> origin/main Updating 262c5c037e..19fe52f328 error: The following untracked working tree files would be overwritten by merge: binaries/data/mods/public/art/actors/props/structures/athenians/erechtheion_caryatids.xml binaries/data/mods/public/art/actors/props/structures/athenians/erechtheion_decor.xml binaries/data/mods/public/art/actors/props/structures/athenians/erechtheion_nature.xml binaries/data/mods/public/art/actors/props/structures/athenians/erechtheion_olive_tree.xml binaries/data/mods/public/art/actors/props/structures/athenians/erechtheion_props_a.xml binaries/data/mods/public/art/actors/props/structures/athenians/erechtheion_roof.xml binaries/data/mods/public/art/actors/props/structures/athenians/erechtheion_tile_c.xml binaries/data/mods/public/art/actors/structures/artifacts/statue_caryatid_medium_pedestal.xml binaries/data/mods/public/art/actors/structures/artifacts/statue_caryatid_small_pedestal.xml binaries/data/mods/public/art/actors/structures/athenians/caryatid.xml binaries/data/mods/public/art/actors/structures/athenians/caryatid_large.xml binaries/data/mods/public/art/actors/structures/athenians/erechtheion.xml binaries/data/mods/public/simulation/templates/gaia/ruins/metal_statue_caryatid.xml binaries/data/mods/public/simulation/templates/structures/athen/erechtheion.xml Please move or remove them before you merge. Aborting
  17. @DesertRose Use a commit before 67ee5aaeb5, which is the one that introduced those files. I think you can use: 262c5c037e, Use promises to fetch net messages
  18. I'm not sure what could happen if you remove them manually. Instead of that I would use git clean to delete untracked files: git clean -fdn To preview what files will be removed, and then: git clean -fd edit: at first glance those are the same files I have problems with some days ago. After cleaning the untracked files, I would suggest the following steps, which worked for me last time: Check where you are in the commit history: git log --oneline --graph Reset your branch to a known good commit (you just need to pick the right one): git reset --hard <commit> Update your remote branch with your local state: git push --force-with-lease your-remote-repo-name <your-main-branch> Then, update/sync the branch using the Gitea web UI (to avoid Git LFS-related issues). Then, git pull
  19. (I'm not very knowledgeable about this) Those are probably residual changes from when you did git lfs pull. But it got interrupted at the first asset actually in lfs. Just clear them, with git clean -fd should do.
  20. Can I delete those locally? error: The following untracked working tree files would be overwritten by merge: binaries/data/mods/public/art/actors/props/structures/athenians/erechtheion_caryatids.xml binaries/data/mods/public/art/actors/props/structures/athenians/erechtheion_decor.xml binaries/data/mods/public/art/actors/props/structures/athenians/erechtheion_nature.xml binaries/data/mods/public/art/actors/props/structures/athenians/erechtheion_olive_tree.xml binaries/data/mods/public/art/actors/props/structures/athenians/erechtheion_props_a.xml binaries/data/mods/public/art/actors/props/structures/athenians/erechtheion_roof.xml binaries/data/mods/public/art/actors/props/structures/athenians/erechtheion_tile_c.xml binaries/data/mods/public/art/actors/structures/artifacts/statue_caryatid_medium_pedestal.xml binaries/data/mods/public/art/actors/structures/artifacts/statue_caryatid_small_pedestal.xml binaries/data/mods/public/art/actors/structures/athenians/caryatid.xml binaries/data/mods/public/art/actors/structures/athenians/caryatid_large.xml binaries/data/mods/public/art/actors/structures/athenians/erechtheion.xml binaries/data/mods/public/simulation/templates/gaia/ruins/metal_statue_caryatid.xml binaries/data/mods/public/simulation/templates/structures/athen/erechtheion.xml I certainly didn't change them.
  1. Load more activity
×
×
  • Create New...