#New- Samurai Brothers

640 messages · Page 1 of 1 (latest)

fair fractal
#

Samurai Brothers is a fast paced shared-screen multiplayer game. In addition to the solo mode, two modes are available for multiplayer games. Do you want to fight against your friends ? Or work as a team against the multitude of enemies ?

Instructions:

Download for FREE and install "Samurai Brothers" from STEAM.

https://store.steampowered.com/app/3403860/Samurai_Brothers/

Once installed, in your library, right click "Manage-Browse Local Files" COPY the Samurai-Brothers-v1-2.pck into the GameData Folder.

Controls:

DPAD/LSTICK - Movement
A -Attack
B - Jump/Double Jump
Start - Select Option in Menu
Select - Menu

CFW Tests
[] AmberELEC
[] ArkOS
[x] JELOS / ROCKNIX
[x] muOS

Resolution Tests

Test all major resolutions:
[] 480x320 (Optional)
[x] 640x480
[] 720x720 (RGB30)
[x] Higher resolutions (e.g., 1280x720 (edited)

New ZIP with Fixed Scaling Issues
https://discordapp.com/channels/1122861252088172575/1344066213256495245/1344748404303200338

https://store.steampowered.com/app/3403860/Samurai_Brothers/

Fight with or againts you friends in this fast paced shared-screen multiplayer  game ! (1 to 4 players) Kill other players ! Defeat the Dragon ! And unlock all achievements !In addition to the solo mode, two modes are available for multiplayer games. Do you want to fight against your friends ? Or work as a team against the multitude of enemie...

▶ Play video
misty drift
#

uhm, is Canto in PR?

fair fractal
#

No. It's not going to work. Lvl 3 is too laggy.

#

If you wouldn't mind calling out port navs for this.

#

This will be what I'm focusing on now

#

Canto I has the dev in the thread. Read it

misty drift
#

<@&1216123318122577972>

fair fractal
#

Its been tagged WIP now

fair fractal
#

If your device supports BlueTooth controllers, this is a very cool Co-op game you could play on a TV or monitor.

#

It's has a Single Player mode also though.

#

The only port I can think of that's ONLY multi-player, which is why I don't have it, is Jump on Head!

#

@surreal lagoon if you get any time, could you do AmberElec and ArkOS? This one's real simple. Could be pr'd soon. I've tested the game for a good long while on rocknix and muos already. I apologize for always asking you.

jolly ledge
#

I want to try i in ArkOS but it doesn´t download from Steam, Downloading 0,0% all the time...

jolly ledge
#

i will try it later

fair fractal
#

@jade chasm would you mind testing amberlec and arkos?

fair fractal
#

I'd suggest closing steam completely and re launching. If still no dice, reboot computer

jade chasm
#

On r36s ArkOS 2.0 (640X480) the game works but the screen is cut off. Also the key settings are not correct.

rare lotus
#

✅ RGB30/arkos

#

things fit on the screen but looks a bit squashed

jolly ledge
fair fractal
fair fractal
fair fractal
jade chasm
#

The screen image you just uploaded is not a normal output screen. Even if you change it to a window screen in the settings, the settings are not applied.

fair fractal
#

well the options are all in there

#

and the gameplay is fine

#

its jus tthe retry screen

#

if you notice on 4:3 when you go all the way forward, he stops at the edge and the skull also appears right atthe edge

#

upon death

fair fractal
#

I don't know howbto fix scaling stuff, but I guess I could be walked through it in yhe godot engine, and I would be able to make a patch and learn for future games if this happens. If anyone is willing to explain to me what needs to be done.

#

Chatgpt told me this:

To fix a Godot game that doesn't scale correctly to a 4:3 ratio, follow these steps:

  1. Set Up Display Settings
    Go to: Project > Project Settings > Display > Window
    Width & Height: Set the base resolution, e.g., 1280x720 for 16:9.
    Aspect Mode: Set Aspect > Keep to Keep Height or Keep Width, depending on how you want the game to scale.
    Stretch Mode: Set Mode to 2D or Viewport:
    2D: Scales all UI and elements directly.
    Viewport: Maintains pixel-perfect scaling but may introduce letterboxing.
  2. Handle Different Aspect Ratios
    Aspect > Keep: Choose how to handle non-native aspect ratios:
    Keep Width: Adds letterboxing (black bars) on the top and bottom for 4:3.
    Keep Height: Adds letterboxing on the sides.
    Expand: Adjusts dynamically but may show more/less of the game world.
  3. Configure the Viewport
    If using a Camera2D, set Current to On and adjust Zoom to fit the 4:3 view.
    For 3D games, adjust the camera’s FOV or Viewport settings.
  4. Add Custom Scripting (Optional)
    To handle dynamic resizing in code, you can connect to the Viewport size change signal:

gdscript
Copy code
func _notification(what):
if what == NOTIFICATION_OS_SCREEN_RESIZE:
adjust_aspect_ratio()

func adjust_aspect_ratio():
var viewport_size = get_viewport().size
var aspect_ratio = viewport_size.x / viewport_size.y

if aspect_ratio < (4.0 / 3.0):
    # Handle 4:3 and narrower (e.g., add letterboxes)
    get_viewport().set_aspect_ratio(4.0 / 3.0)
else:
    # Handle wider than 4:3
    get_viewport().set_aspect_ratio(aspect_ratio)
  1. Test Different Resolutions
    Test the game in various resolutions including 4:3 (e.g., 1024x768 or 800x600) to ensure correct scaling
#

Does that sound right?

fair fractal
#

I'm gonna have to just give it a try ti make aspect fit.

fair fractal
#

@late drift what do I wanna use for the best scaling for devices?disabled, 2d or viewport?

late drift
#

Viewport sound like the thing you need (letherboxing)

fair fractal
#

Ok

#

Look right?

#

Now how do I export this new pck as a patch? :/

#

I've never done a patch before.

#

No idea how it works

#

I exported it snd now have a .zip

late drift
#

You save the project as the windows Godot game (same thing you would do from the scratch)
Save it as exe

#

You will get .pck as well

fair fractal
#

Ya this zip has like every file...

late drift
#

Patch itself you make trough xdelta3 patching

fair fractal
#

Not sure how to get pck

late drift
#

Save it as windows game with .exe

fair fractal
#

I clicked export pck/zip

#

Oooh so delete linux

late drift
#

This is Godot 3 program right?

#

You aren't doing this in Godot 4?

fair fractal
#

3 yes

#

And then drop down at bottom to just pck?

late drift
#

No go for the .exe, what is the option before this?

fair fractal
#

I have a pck now

#

Pcks are what godots use in most gamedata folders I thought

#

Does it NEED to be .exe? Cause I don't see that option

#

Oooh I see it

#

So do I want an exe? Cause the file I'm using to get this game running on my device originally was pck

late drift
#

Only to be sure it is exported right, you dont actually need the .exe

fair fractal
#

Says this when I try exe

#

But I have an unnamed .pck now

late drift
#

I think you need to download 500MB of some Godot files to export it and you dont have it yet
See those options if you will get this

fair fractal
#

I just downloaded those

#

It wouldn't let me do pck until I did

#

But i got the pck

late drift
#

Ok, try to open it in PCKexplorer. What is the Godot number?

fair fractal
#

I mean could I just try it with this Pck

#

You can see in the file name I put it in a new folder named patchpck

late drift
#

When I did it for Cairn pck got updated to 3.6

fair fractal
#

Hm

#

Well I used 3.5 stable windows engine

late drift
#

I guess you could try the game and see if changes work

fair fractal
#

Just use that pck named what the msh calls for and try it?

late drift
#

Try it with FRT on your device and test it
If the effect is good you can make a patch from it

fair fractal
#

K gimee a min

#

Hm...

#

It only loads the opening to the game where the title shows up and the sound, but then crashes

#

But it had letterboxing I can see

#

So I dont know what's up with that

#

Because the file size is the same as the original

#

i think i remmeebr what i did

#

i removed that on accidnet

#

let me delete it and import the original again

#

it worked

#

so now how do i go about making a patch

#

still works on my x55 16:9 too so its scales correctly now

late drift
fair fractal
#

ive seen them in ports

#

but ive never created one

late drift
#

Ok, listen up
Imagine that you have 2 video files with built in subtitles

fair fractal
#

ok

late drift
#

And one subtitle has word "BANANA" but it should be "POTATO", like in the other video
Xdelta3 patch is the difference you create using these two files
Use banana video as old one and Potato as new one.
Xdelta3 wil create 3kb file that does "keep everything the same but replace Banana with Potato"
So now that you have a patch, you combine Banana video and Xdelta3 Potato patch and together you create Potato video.
12340 + 5 = 12345

fair fractal
#

i understand that part

late drift
#

You are changing code parts of file so you can patch anything with this

fair fractal
#

i just need to know how to create one

#

you just drag and drop the original and the new pck file into a program right?

#

and it makes the patch for you

#

i just dont know where the patch website is or how to use it exactly as ive never done it

late drift
#

Ideally call new file SamBrosPATCH.pck before making a Xdelta3 so you know patchin worked

#

I will give you links in 20 minutes

fair fractal
#

okay man thanks a million

late drift
fair fractal
#

haha

late drift
#

change the "vcdiff" to "xdelta3", rest can stay the same

fair fractal
#

just add the 2 files into the boxes,

late drift
#

And new file name is something else?

fair fractal
#

change to xdelta3 on subdir and extension?

#

yes its the same filename with (patch) at the end

late drift
#

Ok

fair fractal
#

but do i change both instances of vcdiff to xdelta3?

late drift
#

Yes

fair fractal
#

subdir and extension?

#

ok

late drift
#

You wil get the patch anyway

fair fractal
#

Looking good?

#

Click Create Patch?

late drift
#

Yes
You can test if patch works with one of new files

fair fractal
#

okay

late drift
#

Drop unpatched file in that folder with extra files and run patching file

fair fractal
#

cmdpompt came up

#

did its thing and boom its done

#

what folder?

late drift
#

Does it have a new name and "old" folder?

fair fractal
#

the pck i sent to my work in progress folder where im wokring on samurai brothers

#

it added a bunch of iiles

late drift
#

Give me the patch folder pic

fair fractal
#

so drop those files labeled 1. 2. 3 intot he xdelta3 folder?

#

In xdelta the pck is in there named as original

#

No (patch) in name

#

It's this

late drift
#

To test patch, drop old .pck file in this folder (not xdelta3 one) and run 3. Apply patch Windows.bat

#

After this, does new file in folder have a new name and "old" folder with old one?

fair fractal
#

i don tthink so?

#

i sent you a pic of everything

#

thats the folder i sent it to, samuraibrothers in my Work In PRogress folder

#

thats why the json and readme.md and screenshot.png are all in there

late drift
#

This is just a test of a patch file, forget port folder for now

fair fractal
#

then after patch it ADDED the files starting with 1. 2. and 3.

#

and created a folder named xdelta3

#

and inside that folder is the pic i sent you above

#

so drop the old pck in the folder i sent you a pic of

#

not the xdelta3 folder with the single file but the one with 1. 2. 3.

late drift
#

One is creating .xdelta3 file
I'm talking about patching old .pck file with .bat command to create new .pck file

fair fractal
#

okay so i drop the file in liek this?

late drift
#

You dont need extra files for the port
For port you only need the .xdelta3 file

fair fractal
#

Highlighted is original pck

late drift
#

Ok, now run .bat file

fair fractal
#

How?

#

Rofl

#

Ih

#

Oh

#

Open it lol. Duh

#

K completed!

late drift
#

Close it.

#

After this, does new file in folder have a new name and "old" folder with old one?

fair fractal
#

old has orignal file

#

the new pck is where?

#

in xdelta3 folder?

late drift
#

Can you do this in the original patch folder?

fair fractal
#

this is where i sent the patch to

#

should i do it again and create abrand new folder?

late drift
#

If you deleted extra files yes

fair fractal
#

i have deleted nothing

late drift
#
  1. Create patch
  2. Drop old .pck file in that folder
  3. Run .bat file
    Don't mix any port files yet
fair fractal
#

I'm not

#

I did all of that

#

Did I use the wrong one from the zip? Which one do I use? I used v2.0 9.exe

#

Windows 11

late drift
#

That's the right one

fair fractal
#

Do I use the one below it? Xdelta-3.1 0-x86_64.exe?

#

Okay. So I just don't know what this "new file" you're talking about is

#

I'm going to do it again in a brand new folder

late drift
#

Thats the app without User Interface and GUI is just User Interface for it

fair fractal
#

This pops up though and when I oress browse file location for oatch, my whole gui for Patching shrinks?

#

See how small it is?

#

It starts out this size

#

I have a new folder with just patch stuff

#

So add old pck to that folder there like this, right?

#

Then run 3.bat

late drift
#

Yes

fair fractal
#

Okay

#

Now i have this

#

So now what do you want me to do?

late drift
#

Yes, thats it!

#

So it works
Aditionally if Godot versions are different you kan check that too
But we can add it to port now

fair fractal
#

Godot are same

#

How do I add this to my port

late drift
#

Create "patch" folder in your port

fair fractal
#

Done

late drift
#

Now go to my Cairn port and in .sh file find xdelta3 code lines
Like 5 code lines

fair fractal
#

Ok

#

This looks right?

#

I will DEFINITELY be crediting you in the notes by the way for teaching me how to do this.

#

Thank You So Much, Slobs

late drift
#

You have Cairn file after xdelta patching

fair fractal
#

K I fixed that

#

Now what do I need to ADD to my portfolder?

late drift
#

The remove extra files part
Are there any extra files in original game folder other than .pck file?

fair fractal
#

No

late drift
#

No .exe, no .dll?

fair fractal
#

No sir

#

Just pck is needed

#

So do I add this file in the xdelta3 folder only to the Patch folder?

late drift
#

I mean this from the user point
What wil they find in the Steam folder?

fair fractal
fair fractal
#

And only pck is moved over, as my instructions say at the top of this thread

#

So delete the remove extra files line?

#

delete this? ```# Delete unneeded files
rm -f gamedata/*.{dll,exe}
fi

#

or leave the fi

late drift
#

Ok
That rm -f command will remove all files with extension inside the brackets
You can leave only exe or remove it
But remember it cause it could be useful in future for some other port

#

Fi is for whole xdelta part, keep it

fair fractal
#

absolutely i understand

#

so i deleted eevrytbing but left fi

#

So now we're here

#

Good?

late drift
#

Remove space before fi

fair fractal
#

And this In portfolder?

fair fractal
#

So like this?

late drift
#

And remember to point runtime to a new Patched.pck file at the runtime part at the end in the .sh

fair fractal
#

Gravy?

late drift
#

Yes
It should be all good now
And you can check .pck name after runing the game on device to know if it worked

fair fractal
#

Okay let's try it

#

My god I can't believe I did that

#

Youre so helpful

#

THANK YOU

misty drift
#

What on earth

misty drift
late drift
#

And miss the opportunity to watch white text like wathing painted wall getting dry?

fair fractal
#

WHy IN THE FUCK IS IT TELLING ME THIS?

#

Through network for X55 rocknix

#

Then it days gamedata I can't delete after that

#

It's literally an empty gamedata folder..

#

Any tips?

#

I somehow put readonly permission on this folder..

#

How do I get rid of that

#

anywho, @late drift it totally worked. thank you SO MUCH

#

a reboot of pc and x55 got rid of that admin bullshit

late drift
#

Glad all those messages found a way to give you idea how to do it

fair fractal
#

im so proud of myself 🙂

late drift
#

Good, now don't forget it all tomorrow for your next port

#

We need to help sacredev with the Raccoon game aspect if possible

fair fractal
#

New ZIP for all devices with working patch to fix scaling issues. please check for me if yu guys get a moment. THANKS!
@jade chasm @rare lotus @jolly ledge

#

okay,

#

just tell him to read this thread 🤣

#

literally

#

@mystic ridge read from this post here to know how to fix scaling issues. Pictures included and everything brotha.

#1344066213256495245 message

#

The chatgpt part was actually very accurate, slobsters just confirmed for me that it was ViewPort and not 2D

fair fractal
#

Is it helpful?

mystic ridge
fair fractal
#

Would love some people to test this..

#

ArkOS and AmberElec mainly

#

I verified it works on rocknix and MuOS

brittle bramble
#

Works on RG35XX-H, muOS (AW Banana). I didnt played the entire game, just the tutorial and a part of the first chapter/mission.

fair fractal
#

Okay, cool!. It scared to 4:3? Patch worked and made black bars on top and bottom right

#

?

brittle bramble
#

Yeap, it's working ok from what i am watching here :).

jade chasm
#

Now the screen is not stretched and the buttons are visible normally. (r36s - ArkOS 2.0) & (r36s - AmberELEC)

#

Thank you for your hard work in fixing the screen.

fair fractal
jade chasm
#

The resolution of r36s is 640 X 480.

fair fractal
#

Oh... duh. I thought you were the one talking about that but that was @rare lotus I will wait for him to let me know what happens on a 1:1 screen. I don't know who else has one.

jade chasm
fair fractal
jolly ledge
fair fractal
#

Thanks so much for the testing!

fair fractal
#

@misty drift how can I make this work where up will work in the menu

misty drift
#

Leave up on dpad and also map it to a

jolly ledge
#

understood!!! thank you for al this work!

fair fractal
#

And you appear

#

How woukd that look in GTPK

misty drift
#

a = up?

#

lol

fair fractal
#

But I don't wa t up on the dpad to accidentally make you jump at all

#

I want it to have to be a pressed button. B

misty drift
#

You gotta choose one death

surreal lagoon
#

considering you have it in godot editor, go itno Project Settings, Input Map and look for whatever says something about jump

#

and you could probably just remove "up" from being used as jump

misty drift
#

I don't think you hit up by accident too much

fair fractal
misty drift
#

we have several games where we just mapped up to a button also

fair fractal
#

X55 is finicky

surreal lagoon
#

I would like you to introduce to dpad on my 353VS. You would be shocked

#

its a piece of shit

fair fractal
#

False diagonals and accidental presses ALL the time

#

Was the same fir Dave Dave Dave

#

I'll just Map left analog to up down left right so menus easier to use

surreal lagoon
#

ui jump_2 it is very likely. You are already doing a patch, arent you? So you can just remove up buttom there

misty drift
#

....

fair fractal
#

So you CANT make say a buttonf jump and ALSO enter right?

fair fractal
misty drift
#

how is it usable if you don't have a stick 😄

fair fractal
fair fractal
surreal lagoon
#

yeah, just make a new one, its not that hard

fair fractal
#

Just cycle through with DOWN

jolly ledge
fair fractal
misty drift
fair fractal
#

No. I will leave the d pad without UP mapped, B will be Up(for jump) and the left analog will be full Up down left right

surreal lagoon
#

let me see first if this would work

fair fractal
#

Or I'll do as Ganimoth stated

fresh sphinx
#

Hahaha

#

Gabimoth

#

😂

fair fractal
fresh sphinx
#

I kinda wanna force change his name to that. <_<

jolly ledge
#

Can't the accept button be the same as the jump button?

fair fractal
misty drift
#

Leave Gabumon alone

fair fractal
#

Can the B button be jump and also enter?

jolly ledge
#

instead of accepting with start button

fair fractal
#

Digimon > Pokémon

fair fractal
misty drift
#

Just open the project in godot and unmap / rempa the keys 🙂

fair fractal
#

So make enter, UP as well?

fair fractal
misty drift
#

Remove keymappings and map as you like in godot

surreal lagoon
#

there is also maybe another solution, this game has key rebinding menu. So bind jump to another key and check if it saves. If so, just include that config file with port

misty drift
#

dpad only for menu and walking but no jump and jump on a button

fair fractal
#

So is there a way to make enter also work for the jump button?

#

Basically yes or no, gptk can map two keyboard inputs to one button?

#

Does it break it if you put 2 key inputs?

#

Like b = up, enter

misty drift
fair fractal
#

So No.

peak fiber
#

no offense but I'm a bit confused: shouldn't this be your job to figure out if it's your thread to begin with?

fair fractal
#

Please don't ask questions that are just insulting

fair fractal
#

Why do you think these testing threads exist @peak fiber ?

surreal lagoon
#

And now everyone start to chill or will be chilled

fresh sphinx
fair fractal
fresh sphinx
#

i mean

fair fractal
#

Nah. U nice

fresh sphinx
#

how would that even work?

fair fractal
#

What's that?

peak fiber
fair fractal
#

Oh boy.

jolly ledge
# fair fractal Oh boy.

I'm going to continue with my life, my children, diapers... if something changes I'll test it again and tell you.

surreal lagoon
#

that mostly aimed at you airwalk, because that is your work to figure out

fair fractal
#

Holy crap its Gabimoth...

peak fiber
surreal lagoon
#

you got couple pointers to try

fair fractal
fair fractal
fair fractal
#

You do know you're all SAINTS, right?

#

I couldn't say thank you enough for the time and typing you've put into getting me to where I am today.

#

Klops, Cebion, Gabimoth, tab_return, Damo, Slobsters. All of you. SAINTS.

#

❤️ ❤️ ❤️ ❤️ ❤️

mystic ridge
#

Nah.. They are doing this to stop you from making another alt account 😛

fair fractal
#

Blasphemy

surreal lagoon
#

ugh, the rebinding part might not be viable, I havnt realised he has it harwired like that. Ugh

#

I hate when developers do this

fair fractal
surreal lagoon
#

I will import this patched one

fair fractal
#

I told you... SAINT

#

All I did was change display from disabled to Viewport and aspect to keep height

surreal lagoon
#

ok, so it wont be an easy change in key config

fair fractal
#

Okay. Its not like the game is broken or anything

#

We could leave as is and just map left analog to up down left right for those who have one... if they don't, just press down to cycle back to the top. Not a huge deal

jolly ledge
#

I think that using the start button to accept is not so problematic, improving the navigability of the menu would be perfect

surreal lagoon
#

I kinda sort of "fixed" it for solo playback, but it fucks up 2 player, but I am not sure how many people would use multiplayer

#

alright, I am going to prepare a new patch, it seems to be working well

surreal lagoon
surreal lagoon
#

im not sure if I havnt broke something else as I played for like 30 seconds

jolly ledge
#

Will it be enough to replace the patch folder? or do I have to reinstall it entirely

surreal lagoon
#

it needs to be repatched, so at minimum you need patch folder, place the original pck in gamedata and also replace gptk file

#

at that points pretty much all kek

jolly ledge
#

i will do it from the start so

#

it's working ferfect! the navigability in the menu is more intuitive and once in game everything is the same than before

#

💯

fair fractal
surreal lagoon
#

the only difference is patch and gptk

fair fractal
#

Also @surreal lagoon could you try this on a 720x720?

surreal lagoon
#

rest was from yours

#

I dont have any 1:1 device

fair fractal
#

Ooh I thought you had rgb30

#

So you just replaced the SamuraiBrothersv1.2.pck.xdelta3 in patch folder and .gptk

#

So when I go to P.r, I can just add my xmlinfo,readme,json to this zip you just provided and it will be g2g

#

Also, I will credit you in notes of this for the awesome help. I never would have known how to do that

jade chasm
fair fractal
#

A screenshot you made

#

??

#

@rare lotus could you try this zip on your rgb30? I'd like to see a Pic of how it's scaling

rare lotus
#

Okies as soon as my kids are settled haha

fair fractal
#

thanks britha

rare lotus
#

Maintains 16:9 ratio

fair fractal
#

AWESOME!

#

This is ready then!

flat pendant
#

The game also runs on EmuElec... Nice!

fair fractal
flat pendant
misty drift
#

@fair fractal before I start to review your pr

#

...

#

You have to sync your fork and make a branch of your clean and synced main repo

fair fractal
#

How? How is that even there?

#

Woukd this happen if I added the same bros folder/files to my local laptop github repo BEFORE fetching origin?

#

Do I need to always open github desktop and sync/ fetch origin FIRST and foremost always?

#

So like anytime I want to do ANYTHING at all involving github, just always fetch from origin?

surreal lagoon
fair fractal
#

Do you want to just delete that or do I need to?

#

Was that libspeex.so.1 added to tantibus on the main?

misty drift
fair fractal
#

Not on par?

misty drift
#

not in sync

fair fractal
#

Okay, I thought that's what you meant just wanted to make sure it wasn't something more technical and to do with actual github 🤣

#

Well I just checked PortMaster-New and Tantibus has libspeex.so.1 in libsaarch64 folder so do you wanna just delete it from the samurai bros branch or do I need to do it?

#

Oh, you deleted it

#

Thank You

fair fractal
fair fractal
#

@fresh sphinx did the libspeex.so.1 on the samurai brothers branch get deleted/removed correctly for tantibus/libsaarch64/libspeex.so.1?

#

I'm worried I may have also deleted it from the tantibus port, too..

misty drift
#

Under files you can see what you submitted

#

It'll tell you exactly what gets added with your pr and what will be remove

fair fractal
#

Well I think I dis remove it then

fair fractal
#

But I'm just not sure if I also deleted it from tantibus libs too on tantibus port

misty drift
#

There musnt be any mention of tantibus in your pr

fair fractal
#

Well it says I deleted it "delete libspeex.so.1" then after I merged, I deleted it from the actual path so I don't know which is right. Its still confusing to me

fair fractal
misty drift
#

The pr only needs to show files for your port

#

If it shows something with tantibus it's not right

fair fractal
#

Right, so on the photo of the pr, at the bottom of the page below the screenshot for samurai Bros, it shows as -130kb. So that's correct then.

fair fractal
#

From what I can see on the pics I included above, it looks right. But I still have some quirks about github I don't understand yet .

misty drift
#

See the left red thing?

#

That musn't be there at all

#

no mention of tantibus whatsoever

fair fractal
#

Sp how do I remove it?

#

I have tried everything I can think of

#

Woukd you mind if I just close this pull request and start a new branch called samurai brothers new and start from scratch?

#

I don't know what I'm doing wrong. It's really making me sad

#

Sync fork?

#

Like, I can't delete it. I'm really not trying to have you hold my hand or anything. I genuinely am not understanding.

misty drift
#

You musn't remove the file but rather the addition to your pr

#

Github there is a file which says what files will be afffected by your pr

#

and in this file your pr says to remove this file from the repo

#

so you need to remove that

#

You just have to research a abit

#

Now I'm copying this convo into llm and he gives me the answer right away

#

Why didn't you try that 🙂

#

or google

fair fractal
#

I used chatgpt and did what I thought it told me to. Let me try what Claude said

#

Ugh..

#

Kill me

#

Can you view a pull request on github desktop or does it open in browser?

misty drift
fair fractal
#

You use command line or browser?

misty drift
#

commanda line up until create pull request 🙂

fair fractal
#

I have such a sinking feeling dyde

#

Like a math problem I just can't figure out

#

So do I need to add libspeex BACK onto my pcs repository?

misty drift
#

it tells you step by step lol

misty drift
#

you need to forget about that cursed file

fair fractal
#

I know, I can't open a pull request on guthub desktop and the. Fetch origin. I did see it when I PREVIEWED pull request, the red + sign for libsoeex, but then I fetched origin and now it shows every single one for every si lngle port

misty drift
#

Imagine you have an apple in your pantry.
Then you write a shopping list and add an apple on there.

Your wife tells you why did you add an apple to the list we already have one.

Then airwalk proceeds to erase that entry and write throw apple away from pantry onto the list.

But what you NEED to do is erase that entry from your list

fair fractal
#

Like qtf

#

I have tried to. And in the pics, It says I deleted it. 2 different ways

misty drift
#

you don'Ät want to delete

#

you want github to forgot any interaction with it

#

It should not exist

#

not adding nor deleting

#

Do not touch libspeex

#

delete the github entry that says to mangle with libspeex

fair fractal
#

Okay. Well I do t know how it means to open my PR and local repository on github desktop. My repository is in file explorer and pull requests can only be previewed. Claude is saying things I don't see

misty drift
fair fractal
#

It doesn't show it on the original oull requeat

misty drift
#

only adds

fair fractal
#

And when I go to "delete "libspeex.so.1" pull request, I can't do anything. It says it doesn't exist on disk cause it's not on my computers pr anymore.

misty drift
fair fractal
#

I don't even know how the fuck this happened

#

So delete samurai brothers branch

#

Okay man I just re did it and the tantibus libspeex magically appeared

fair fractal
misty drift
#

mate

#

😄

fair fractal
#

I don't know how cebion

#

I dragged over samurai brothers into the ports folder on my oc for the main repo and that was it

misty drift
#

when you add files to your branch it'll tell you exactly what files will be added

fair fractal
#

It did NOT show uo

#

I SWEAR TO GOD it wasn't there

misty drift
#

It says somethingn like commit following files

fair fractal
#

I checked several times to be sure

misty drift
#

and you actually have to write a commit message

fair fractal
#

Yeah I did. And wrote that this was a new port made without the libsoeex

misty drift
#

see it's a commit you're taking with you from 2 weeks ago

#

see it should have never been two commits

#

only one

fair fractal
#

I literally made a brand new branch and added samurai brothers

#

That's it

#

I don't know where that commit even is

misty drift
#

then you did a branch on something that was not clean from the beginning

fair fractal
#

I'll do it again.

misty drift
#

your main branch

#

is 169 commits behind

#

you have to make a branch of that

#

if you do that you have old stuff

#

update it

#

make a fresh branch of main

#

not off another branhc

#

and then

fair fractal
#

Yeah

#

This is the original pull request

#

NINE changed files

#

I really thought I was getting the hang of this shit.

#

I'm just blown away now

misty drift
#

and you made a pr on a dirty soil

fair fractal
#

Okay so now that it's up to date I'll try a new pr again?

#

I feel like it's still gonna be there

#

I updated main

misty drift
#

you can do that on the github site too

fair fractal
#

Well all my branches are gone now

#

And random ass ones are there instead

misty drift
#

you have to sync with whatever you have on your pc with whatever is on the website

fair fractal
#

I thought that's what I just did

misty drift
#

this is your repo

#

and this one you need to sync with upstream

#

nope

#

it has to say main

fair fractal
#

It did

#

And now it's gone

#

I did it on browserr

misty drift
#

now its up to date

#

now make sure your on main

#

then make a fresh branch

#

and make sure it doesn't show any other commits

fair fractal
#

Now it's back

misty drift
#

your branches are here

#

delete them

#

except main

fair fractal
#

done

#

i think i get what was going on now

#

i thought when you made a new branch, it always branched form main

#

but i was still on samurai brothers form before

#

so it branched form there

#

NOW lets see what happens

misty drift
#

to never branch of another branch

#

lol

fair fractal
#

Saying this thiufh

misty drift
#

always from main

fair fractal
#

One is new samurai and one is tantibus liibspeex I'm sure

misty drift
#

you can always see all commits

#

so scrub that all and make it fresh withi a fresh new commit

fair fractal
#

I don't know how to get rid of these

misty drift
#

by starting fresh

#

no commits

#

and then make a fresh branch of off main

#

there will be no commits

#

and freshly upload the files

fair fractal
#

okay done. This time it worked.

#

so every time i make a new branch, i need to click onto MAIN and THEN click new branch

#

Thank you for being patient with me, Cebion. As I always say, you are a SAINT.

fair fractal
# misty drift no commits

Have any idea why this still shows up in commits? And how do I get rid of this? Because Claude says you can't really delete commits, but I'm not understanding how this is still showing up in this new PR. But isn't showing up in Files Changed?