XRevan86

XRevan86 created pull request libreboot/lbmk#131

Hide MEI on targets with neutered Intel ME

2 years ago

XRevan86 created pull request libreboot/lbmk#130

Improve the X230_EDP support

2 years ago

XRevan86 pushed to nightly at diogo/gnu-social

3 years ago

XRevan86 pushed to nightly at diogo/gnu-social

3 years ago

XRevan86 pushed to nightly at diogo/gnu-social

3 years ago

XRevan86 pushed to experimental at diogo/gnu-social

3 years ago

XRevan86 pushed to nightly at diogo/gnu-social

  • 198735fe30 Update the project homepage and IRC channel

3 years ago

XRevan86 pushed to experimental at diogo/gnu-social

3 years ago

XRevan86 pushed to nightly at diogo/gnu-social

  • 63ebccce31 Various fixes Fix OAuth and Realtime issues introduced in 9a515b9234eeb2e500e88899fb31f64535b618cc [DATABASE][MariaDB] Fix a typo introduced in aed2344bd4c512dae48d1a5bd2eda218f914ae11 [DAEMON] Wrap an assignment inside "switch": a follow-up to adc689cb15d611c83ebb9c5aaeaa1008ec14da28
  • 06dfd91a82 Various fixes Fix OAuth and Realtime issues introduced in 9a515b9234eeb2e500e88899fb31f64535b618cc [DATABASE] Fix an empty default value mistake introduced in fde929b151f2b286cb60d226c47570209199c9c5 [DATABASE][PostgreSQL] Avoid use of pg_constraint.consrc, which was removed in PostgreSQL 12. [DATABASE][MariaDB] Fix a typo introduced in aed2344bd4c512dae48d1a5bd2eda218f914ae11 [DAEMON] Wrap an assignment inside "switch": a follow-up to adc689cb15d611c83ebb9c5aaeaa1008ec14da28
  • View comparison for these 2 commits »

4 years ago

XRevan86 pushed to nightly at diogo/gnu-social

  • bf12e3645f Various fixes Fix OAuth and Realtime issues introduced in 9a515b9234eeb2e500e88899fb31f64535b618cc [DATABASE][MariaDB] Fix a typo introduced in aed2344bd4c512dae48d1a5bd2eda218f914ae11 [DAEMON] Wrap an assignment inside "switch": a follow-up to adc689cb15d611c83ebb9c5aaeaa1008ec14da28 [ActivityPub] An additional null type check to silence an error.
  • 63ebccce31 Various fixes Fix OAuth and Realtime issues introduced in 9a515b9234eeb2e500e88899fb31f64535b618cc [DATABASE][MariaDB] Fix a typo introduced in aed2344bd4c512dae48d1a5bd2eda218f914ae11 [DAEMON] Wrap an assignment inside "switch": a follow-up to adc689cb15d611c83ebb9c5aaeaa1008ec14da28
  • View comparison for these 2 commits »

4 years ago

XRevan86 closed pull request diogo/gnu-social#208

[INSTALLER] Change required MySQL database character set variable for shared web hosting

4 years ago

XRevan86 commented on issue diogo/gnu-social#208

[INSTALLER] Change required MySQL database character set variable for shared web hosting

Does bf12e3645f66697928fb7713bd9a86a396f06ccc fix your issue?

4 years ago

XRevan86 closed issue diogo/gnu-social#205

Unknown error with checkschema.php

4 years ago

XRevan86 commented on issue diogo/gnu-social#205

Unknown error with checkschema.php

@postblue, that was a new issue caused by my typo, fixed in bf12e3645f66697928fb7713bd9a86a396f06ccc.

4 years ago

XRevan86 pushed to nightly at diogo/gnu-social

  • bf12e3645f Various fixes Fix OAuth and Realtime issues introduced in 9a515b9234eeb2e500e88899fb31f64535b618cc [DATABASE][MariaDB] Fix a typo introduced in aed2344bd4c512dae48d1a5bd2eda218f914ae11 [DAEMON] Wrap an assignment inside "switch": a follow-up to adc689cb15d611c83ebb9c5aaeaa1008ec14da28 [ActivityPub] An additional null type check to silence an error.
  • c540466147 [XMPP] Respond to ping and track time monotonically This also fetches a necessary update from the XMPPHP upstream.
  • View comparison for these 2 commits »

4 years ago

XRevan86 pushed to nightly at diogo/gnu-social

  • 4d8b04cda9 Clear out potential duplicates when semi-joining a union Using a left outer join as a semi-join is not a valid approach. Can still be used for an anti-semi-join.

4 years ago

XRevan86 pushed to experimental at diogo/gnu-social

  • d83e7142a2 [ActivityPub] Attachment fetch should happen on StoreRemoteMedia
  • 2542e1732f [ActivityPub] Attachment fetch should happen on StoreRemoteMedia
  • 98b296089d [StoreRemoteMedia] Ensure it still works TODO: - Modernize plugin by using the fromUrl methods and generalize to more than just images. - Allow to only store a thumbnail versus the whole file.
  • 5b8dd340be [Media] Fix issues with database file storage Fixed file quota as well. There can be more than one file for the same filehash IF the url are different. Possible states: - A file with no url and with filename is a local file. - A file with an url but no filename is a remote file that wasn't fetched, not even the thumbnail. - A file with an url and filename is a fetched remote file (maybe just a thumbnail of it). - A file with no filename nor url is a redirect. Routes: Given these states, updated routes so that an attachment can only be retrieved by id and a file by filehash. Major API changes: File::getByHash now returns a yield of files Major UI changes: - Now remote non stored files are presented. - /view became preferred - Redirects to remote originals are preferred. Many other minor bug fixes...
  • 18c1a9e622 [StoreRemoteMedia] Ensure it still works TODO: - Modernize plugin by using the fromUrl methods and generalize to more than just images. - Allow to only store a thumbnail versus the whole file.
  • View comparison for these 7 commits »

4 years ago

XRevan86 commented on issue diogo/gnu-social#205

Unknown error with checkschema.php

This is very suspicious still, I wonder if it's all in ```/var/lib/mysql/ibdata1```` and not in individual InnoDB tablespaces.

4 years ago

XRevan86 closed issue diogo/gnu-social#205

Unknown error with checkschema.php

4 years ago

XRevan86 pushed to nightly at diogo/gnu-social

  • 0c89b234b2 Set the character set before making a connection Ideally the character set should be set with the connection, and so this is exactly what's being done now. On MariaDB now the server character set is taken from a per-database setting, not the global one which can be immutable and is an overall overkill. And now the character set code is attempted to be generalised.
  • aed2344bd4 Set the character set before making a connection Ideally the character set should be set with the connection, and so this is exactly what's being done now. And now the character set code is attempted to be generalised.
  • c2508f8fa2 Change required MySQL database character set variable Changing `character_set_server` requires root permissions and rebooting the server. Which is impossible on shared web hosting services. So use `character_set_database`. This variable can be changed with user permissions using `ALTER DATABASE`.
  • View comparison for these 3 commits »

4 years ago