Jump to content

leper

WFG Retired
  • Posts

    1.290
  • Joined

  • Last visited

  • Days Won

    30

Everything posted by leper

  1. Already suggested that yesterday, and I hope Radagast beats me to it. The code (apart from some cleanup/review of it) is quite complete by now, so some testing would be nice
  2. Alternative main menu background? (The code should still support multiple backgrounds)
  3. svn up is a pain? (Compared to cloning the full history which is huge?) The git clones on GitHub/Gitorious are updated regularly (either by me or k776), but if it is missing some recent commits you should probably ping me on IRC. (There's also git.wfg, but which is updated automatically, but might change in incompatible ways in the future)
  4. No, I wasn't. And you calling other members of the forums names already got you banned multiple times. Do you really think you want to go down that road again?
  5. It wasn't deleted, it was hidden. Mostly because using all caps is ugly (and because it didn't have any content).
  6. There's a TODO in the code about it, I'll probably remove it, as there is no use for it currently (and it's probably not the right place to put it anyways). There's another TODO for that, but I want to make the code work first and change that later on. (Same with moving files (GUI styles, images, etc) from public/0ad to mod). Dependencies also work on the modname and not on the foldername, as we can't control that (and I don't really want to do that either).
  7. The OS X bundle has finally been released. The bundle should work on Mountain Lion (10.8) or later. Users of an earlier version of OS X are advised to upgrade. Note that there is no 32-bit bundle anymore.
  8. A button on the minimap (I think there is an icon in SVN already) that you can click and that pings other players (maybe team only) and flashes a point on the minimap. The same command should be usable by the AI to both send and receive position based messages (though a chat message explaining why that signal was sent would be helpful). Shouldn't be to hard to implement IMO.
  9. Something like the flare behaviour that's planned for the minimap? (See #57 and some old trac document that's probably outdated in most regards)
  10. Lion.Kanzen: Could you not full-quote the post just before your own post, thanks.
  11. There has been some related discussion on IRC a recently (from 23:48 on and continued until 00:07) and the conclusion is still valid.
  12. As Sander said previously loading all files in a folder doesn't work with A16 (which you are using). activepause.js isn't found because it isn't in the mod directory but in a subdirectory and those paths are relative to the mod folder, so it should be "gui/session/activepause.js".
  13. New fixed file (that works with A16) uploaded (thanks Erik) and first post edited.
  14. Stone and metal mines get a storehouse next to it, fields/corrals get a farmstead/CC next to it, wood does get a storehouse/CC/dock next to it, but is the only resource where you really have some distance to the actual resource and you are boosting the gather rate for this one. (Just to explain some opinion that wasn't voiced in here at all)
  15. Why wouldn't I use that one? Gathering faster is more important (IMO) if you watch your gatherers and don't let them move across huge distances. (Or I am no one )
  16. Hello. Have you found our wiki (trac) yet? There is a page for new programmers there.
  17. Some parts of icu still build against libc++, which leads it to fail when linking with libstdc++ later on. Can you change line 584 in build-osx-libs.sh to (CXX="clang -stdlib=libstdc++" CFLAGS="$CFLAGS" CPPFLAGS="$CPPFLAGS" LDFLAGS="$LDFLAGS" ../runConfigureICU MacOSX --prefix=$INSTALL_DIR --disable-shared --enable-static --disable-samples --enable-extras --enable-icuio --enable-layout --enable-tools && make ${JOBS} && make install) || die "ICU build failed"(This is a hack, but it is likely to fix this one issue)
  18. Try this one: (./bootstrap.sh --with-libraries=filesystem,system,signals --prefix=$INSTALL_DIR && ./b2 cflags="$CFLAGS" toolset=clang cxxflags="$CXXFLAGS" linkflags="$LDFLAGS" ${JOBS} -d2 --layout=tagged --debug-configuration link=static threading=multi variant=release,debug install) || die "Boost build failed"
  19. Please upload logs as files (or to some paste site) instead of inlining them in posts. Can you try passing 'toolset=clang' to the b2 script? (Line 320 in build-osx-libs.sh currently)
  20. You missed a space in line 7 and the shell sets CC to 'clangCXX=clang++' which probably leads to the build failing later on because there is no valid compiler set. Yes, that order is correct.
×
×
  • Create New...