Subcategories

  • TripleA is a free gaming site and survives by the help of our members donations!

Recent Posts

  • @rogercooper I would love help for it. I'm thinking to update the download maps window to accept the maps with errors. So, instead of seeing a description and an option to download the map, the description would tell you what error the map had. There might need to be an option to "show broken maps" or something.. Overall, I think the download maps windows will be the way to surface these.

    In the meantime, most of the YAML errors I think are spaces in the "condensed" format.

    For example:
    - { map_name: this is map name with spaces, map_path: /my-path }

    The map name with spaces breaks YAML, needs to be quoted, eg:

    - { map_name: 'this is map name with spaces', map_path: /my-path }

    The reasoning is because in the condensed format, YAML can't know where the next token really starts. So, fix #1 is to add quotes.

    Fix #2 is to use the expanded format, which is tolerant of spaces, eg:

    - map_name: this is map name with spaces (and is valid!) map_path: /my-path

    Both formats are sensitive to the leading spaces, the indentation matters. It's pretty high on my list to try and gather a report of the broken maps. No ETA for right now of when that might be available.

    read more
  • @lafayette said in 2.7 Release & Testing - Megathread:

    a lot of maps have maps.yaml parsing issues, or are using the "wrong" branch. Need to do three things there: A ) server should be forgiving (and even prefer) 'main' as the default branch name B ) need to create a report of which maps have problems C ) fix the various maps that have problems (at least any problems in 'maps.yaml', there are a lot of missing description files and some other more minor issues here and there)

    Do you need some help on the maps? I have done a lot of cleanup already. If you give me examples of the errors I could go in and check them all.

    read more
  • Alright, spent a good 4 hours catching up on TripleA today..

    2.7 status:

    error reporting modules need to be migrated to the support-server (that is why the error-report functionality throws a 404): #14048 need to update the game settings to use the "beta" maps server by default, and remove the old code path that would download & read triplea_maps.yaml a lot of maps have maps.yaml parsing issues, or are using the "wrong" branch. Need to do three things there: A ) server should be forgiving (and even prefer) 'main' as the default branch name B ) need to create a report of which maps have problems C ) fix the various maps that have problems (at least any problems in 'maps.yaml', there are a lot of missing description files and some other more minor issues here and there)

    Otherwise, outstanding are the things on this list: "2.7" & "Major" issue list

    While we are beefing that list up, please keep in mind we should only label things that are introduced or made worse by 2.7 as '2.7'.

    read more
  • @lafayette
    Done, a quick refresh for that link above, will look more closely tomorrow at other issues.

    read more