Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix granito bugs #2797

Open
wants to merge 30 commits into
base: master
Choose a base branch
from
Open

Fix granito bugs #2797

wants to merge 30 commits into from

Commits on Feb 22, 2024

  1. Configuration menu
    Copy the full SHA
    a2ae613 View commit details
    Browse the repository at this point in the history

Commits on Apr 19, 2024

  1. Configuration menu
    Copy the full SHA
    b19eda0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    469e594 View commit details
    Browse the repository at this point in the history

Commits on Apr 24, 2024

  1. Configuration menu
    Copy the full SHA
    e5ca657 View commit details
    Browse the repository at this point in the history

Commits on Apr 25, 2024

  1. Configuration menu
    Copy the full SHA
    e0f836c View commit details
    Browse the repository at this point in the history

Commits on May 11, 2024

  1. Configuration menu
    Copy the full SHA
    9c1e5aa View commit details
    Browse the repository at this point in the history
  2. Merge branch 'granito-fixes' of https://github.com/MatusGuy/supertux

    …into granito-fixes
    MatusGuy committed May 11, 2024
    Configuration menu
    Copy the full SHA
    1f6c6d9 View commit details
    Browse the repository at this point in the history

Commits on Jun 26, 2024

  1. Configuration menu
    Copy the full SHA
    c2d0c6c View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2024

  1. Screen: Virtual methods for SDL and window resize events (SuperTux#…

    …3032)
    
    The `Screen` abstract class now provides virtual methods for SDL and window resize events. The `Editor` and `PartcleEditor` classes now `override` the `event(const SDL_Event& ev)` method and `Editor` `override`s `on_window_resize()`.
    
    Resize events in `ScreenManager` are now handled by all `Screen`s in the stack. SDL events are only handled by the current (top) screen.
    
    Additionally, `OptionsMenu` now calls `ScreenManager::on_window_resize()` on video setting changes, instead of just calling `MenuManager::on_window_resize()`. This fixes a bug where the editor crashes on changing the "Video Resolution" and "Magnification" settings from the in-editor "Options" menu.
    Vankata453 committed Aug 7, 2024
    Configuration menu
    Copy the full SHA
    36837d0 View commit details
    Browse the repository at this point in the history
  2. Revenge in Redmond Update (SuperTux#2662)

    The add-on **Revenge in Redmond** updated for the upcoming version of SuperTux.
    
    **Update includes**
    - Small intro and outro (text crawl)
    - Old title theme + retro themed menu level
    - Major changes to the levels "Late Office Nights", "Get to da Choppa!"
    - Completely reworked "Where Is My Super Cape!?" level
    - Minor tweaks to all other levels
    
    ---
    
    - [x] Set `menu_retro.stl` as menu level for RiR Add-On
    Rusty-Box committed Aug 7, 2024
    Configuration menu
    Copy the full SHA
    fefc0b0 View commit details
    Browse the repository at this point in the history

Commits on Aug 8, 2024

  1. Configuration menu
    Copy the full SHA
    07d70fc View commit details
    Browse the repository at this point in the history

Commits on Aug 9, 2024

  1. Configuration menu
    Copy the full SHA
    0928a4f View commit details
    Browse the repository at this point in the history

Commits on Aug 10, 2024

  1. i've been lied to

    MatusGuy committed Aug 10, 2024
    Configuration menu
    Copy the full SHA
    48670aa View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4aa368f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a3d18c8 View commit details
    Browse the repository at this point in the history

Commits on Aug 11, 2024

  1. Make "[DISABLED]" translatable (SuperTux#2980)

    * make "[DISABLED]" translatable
    
    * remove pointless _() function call
    
    * make "{} *UPDATE*", "{} [DISABLED] *UPDATE*" and "{} [DISABLED]" translatable as single strings
    
    * remove unnecessary fmt::runtime() calls
    Narre committed Aug 11, 2024
    Configuration menu
    Copy the full SHA
    7efcda1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f5535d2 View commit details
    Browse the repository at this point in the history

Commits on Aug 12, 2024

  1. Squirrel: Fix inaccessible class member variables, improvements (Supe…

    …rTux#3031)
    
    Fixes a bug in simplesquirrel, which caused exposed class member variables to be inaccessible from Squirrel.
    
    Additionally:
    
    * Simplesquirrel now supports custom getters and setters for class member variables. Because of this, more `get_` and `set_` functions of objects now have an alternative variable, which can also be used.
    * All `get_` and `set_` functions which were made obsolete by member variables are now un-deprecated, because of a noticeable preference amongst scripters to keep both options available for convenience.
    Vankata453 committed Aug 12, 2024
    Configuration menu
    Copy the full SHA
    7aad14c View commit details
    Browse the repository at this point in the history

Commits on Aug 13, 2024

  1. Configuration menu
    Copy the full SHA
    3e0030c View commit details
    Browse the repository at this point in the history

Commits on Aug 15, 2024

  1. 1 Configuration menu
    Copy the full SHA
    2d92941 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    eacdc11 View commit details
    Browse the repository at this point in the history
  3. Error handler: Properly print fatal exceptions to command line

    Makes the error handler print fatal exceptions to the command line, as well as reverts commits eacdc11 and 2d92941, which make the exception message not print out on the dialog.
    Vankata453 committed Aug 15, 2024
    Configuration menu
    Copy the full SHA
    5260e65 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    aee3fc7 View commit details
    Browse the repository at this point in the history

Commits on Aug 18, 2024

  1. Revert "Generate builds with RelWithDebInfo instead of Release (S…

    …uperTux#2963)" (SuperTux#3040)
    
    This reverts commit 7302e4b.
    
    RelWithDebInfo include debug data separately from the executable, which needs
    a debugger to be interpreted properly. The debug data does not affect stack
    traces generated by the program itself, but increases the executable by more
    than 100Mb, which is wasted if the user does not intent to run the exectuable
    inside a debugger.
    
    Co-authored-by: Semphris <[email protected]>
    Semphriss and Semphris committed Aug 18, 2024
    Configuration menu
    Copy the full SHA
    f432274 View commit details
    Browse the repository at this point in the history

Commits on Aug 19, 2024

  1. Update translations

    SuperTux-bot committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    c39b073 View commit details
    Browse the repository at this point in the history

Commits on Aug 22, 2024

  1. Update translations

    SuperTux-bot committed Aug 22, 2024
    Configuration menu
    Copy the full SHA
    6376c05 View commit details
    Browse the repository at this point in the history

Commits on Aug 29, 2024

  1. Configuration menu
    Copy the full SHA
    38f5005 View commit details
    Browse the repository at this point in the history

Commits on Aug 31, 2024

  1. Configuration menu
    Copy the full SHA
    a7f76a7 View commit details
    Browse the repository at this point in the history
  2. play falling animation

    MatusGuy committed Aug 31, 2024
    Configuration menu
    Copy the full SHA
    9d7b452 View commit details
    Browse the repository at this point in the history

Commits on Sep 1, 2024

  1. WIP!!!!!!!!!!

    MatusGuy committed Sep 1, 2024
    Configuration menu
    Copy the full SHA
    5d9ea51 View commit details
    Browse the repository at this point in the history