Skip to content

Instantly share code, notes, and snippets.

@marc1706
marc1706 / prosilver_changes_3.3.5_to_3.3.6-RC1-css.diff
Created January 21, 2022 20:56
prosilver changes 3.3.5 to 3.3.6-RC1
diff --git a/phpBB/styles/prosilver/theme/content.css b/phpBB/styles/prosilver/theme/content.css
index 111d24674f..850281c8c7 100644
--- a/phpBB/styles/prosilver/theme/content.css
+++ b/phpBB/styles/prosilver/theme/content.css
@@ -735,6 +735,10 @@ fieldset.polls dd div {
margin-bottom: 10px;
}
+.profile-rank img {
+ max-width: 160px;
@marc1706
marc1706 / language_changes_3.3.5_to_3.3.6-RC1.diff
Last active January 21, 2022 20:55
Language changes 3.3.5 to 3.3.6-RC1
diff --git a/phpBB/language/en/acp/attachments.php b/phpBB/language/en/acp/attachments.php
index 5e0332462a..19fc6b4422 100644
--- a/phpBB/language/en/acp/attachments.php
+++ b/phpBB/language/en/acp/attachments.php
@@ -170,4 +170,5 @@ $lang = array_merge($lang, array(
'UPLOAD_DIR_EXPLAIN' => 'Storage path for attachments. Please note that if you change this directory while already having uploaded attachments you need to manually copy the files to their new location.',
'UPLOAD_ICON' => 'Upload icon',
'UPLOAD_NOT_DIR' => 'The upload location you specified does not appear to be a directory.',
+ 'UPLOAD_POST_NOT_EXIST' => 'File “%1$s” can not be uploaded to post number %2$d as the post does not exist.',
));
@marc1706
marc1706 / Release-3.3.2.md
Last active November 6, 2020 16:18
Releasing 3.3.2

Todo List for 3.3.2

General

  • Make sure phpBB/docs/CREDTIS.txt is up to date
  • Make sure Contributors have their ranks
  • Make sure all reports in the security tracker are closed or invalid
  • Go through Issues fixed in 3.3.2 and correct any unreadable descriptions
  • Check the feature hightlights wiki page for completeness
  • Branch of prep-release-3.3.2 from 3.3.x:
@marc1706
marc1706 / prosilver_changes_3.2.8_to_3.2.9-RC1-html.diff
Created December 26, 2019 10:04
phpBB style changes 3.2.9-RC1
diff --git a/phpBB/styles/prosilver/template/bbcode.html b/phpBB/styles/prosilver/template/bbcode.html
index 940c0ace29..b37ba238d2 100644
--- a/phpBB/styles/prosilver/template/bbcode.html
+++ b/phpBB/styles/prosilver/template/bbcode.html
@@ -37,6 +37,10 @@
<xsl:text> </xsl:text>
<a href="{@post_url}" data-post-id="{@post_id}" onclick="if(document.getElementById(hash.substr(1)))href=hash">&#8593;</a>
</xsl:if>
+ <xsl:if test="@msg_url">
+ <xsl:text> </xsl:text>
@marc1706
marc1706 / language_changes_3.2.8_to_3.2.9-RC1.diff
Created December 26, 2019 10:04
phpBB Language changes 3.2.9-RC1
diff --git a/phpBB/language/en/acp/board.php b/phpBB/language/en/acp/board.php
index 651b76625d..e237446dde 100644
--- a/phpBB/language/en/acp/board.php
+++ b/phpBB/language/en/acp/board.php
@@ -590,7 +590,7 @@ $lang = array_merge($lang, array(
'SMTP_PORT' => 'SMTP server port',
'SMTP_PORT_EXPLAIN' => 'Only change this if you know your SMTP server is on a different port.',
'SMTP_SERVER' => 'SMTP server address',
- 'SMTP_SERVER_EXPLAIN' => 'Do not provide a protocol (<samp>ssl://</samp> or <samp>tsl://</samp>) unless your mail host tells you to do so.',
+ 'SMTP_SERVER_EXPLAIN' => 'Do not provide a protocol (<samp>ssl://</samp> or <samp>tls://</samp>) unless your mail host tells you to do so.',
@marc1706
marc1706 / Release-3.2.9.md
Last active January 6, 2020 17:05
Releasing 3.2.9

Todo List for 3.2.9

General

  • Make sure phpBB/docs/CREDTIS.txt is up to date
  • Make sure Contributors have their ranks
  • Make sure all reports in the security tracker are closed or invalid
  • Go through Issues fixed in 3.2.9 and correct any unreadable descriptions
  • Check the feature hightlights wiki page for completeness
  • Branch of prep-release-3.2.9 from 3.2.x:
@marc1706
marc1706 / prosilver_changes_3.2.8_to_3.3.0-RC1-css.diff
Created December 21, 2019 21:06
prosilver changes phpBB 3.3.0-RC1
diff --git a/phpBB/styles/prosilver/theme/colours.css b/phpBB/styles/prosilver/theme/colours.css
index ffaa71034f..04a895873c 100644
--- a/phpBB/styles/prosilver/theme/colours.css
+++ b/phpBB/styles/prosilver/theme/colours.css
@@ -149,7 +149,7 @@ table.zebra-list tr:nth-child(even) td, ul.zebra-list li:nth-child(even) {
}
.site_logo {
- background-image: url("./images/site_logo.gif");
+ background-image: url("./images/site_logo.svg");
@marc1706
marc1706 / language_changes_3.2.8_to_3.3.0-RC1.diff
Created December 21, 2019 21:05
phpBB language changes 3.3.0-RC1
diff --git a/phpBB/language/en/acp/attachments.php b/phpBB/language/en/acp/attachments.php
index 86430f46bd..67454f8b76 100644
--- a/phpBB/language/en/acp/attachments.php
+++ b/phpBB/language/en/acp/attachments.php
@@ -68,7 +68,6 @@ $lang = array_merge($lang, array(
'ATTACH_QUOTA_EXPLAIN' => 'Maximum drive space available for attachments for the whole board, with 0 being unlimited.',
'ATTACH_TO_POST' => 'Attach file to post',
- 'CAT_FLASH_FILES' => 'Flash files',
'CAT_IMAGES' => 'Images',
@marc1706
marc1706 / prosilver_changes_3.2.8_to_3.3.0-b2-css.diff
Created November 23, 2019 12:31
phpBB 3.3.0-b2 prosilver changes
diff --git a/phpBB/styles/prosilver/theme/colours.css b/phpBB/styles/prosilver/theme/colours.css
index ffaa71034f..1ead493926 100644
--- a/phpBB/styles/prosilver/theme/colours.css
+++ b/phpBB/styles/prosilver/theme/colours.css
@@ -672,6 +672,11 @@ Colours and backgrounds for buttons.css
box-shadow: 0 0 10px #0075B0;
}
+.search-results li:hover,
+.search-results li.active {
@marc1706
marc1706 / language_changes_3.2.8_to_3.3.0-b2.diff
Created November 23, 2019 12:28
phpBB 3.3.0-b2 Language changes
diff --git a/phpBB/language/en/acp/attachments.php b/phpBB/language/en/acp/attachments.php
index 86430f46bd..67454f8b76 100644
--- a/phpBB/language/en/acp/attachments.php
+++ b/phpBB/language/en/acp/attachments.php
@@ -68,7 +68,6 @@ $lang = array_merge($lang, array(
'ATTACH_QUOTA_EXPLAIN' => 'Maximum drive space available for attachments for the whole board, with 0 being unlimited.',
'ATTACH_TO_POST' => 'Attach file to post',
- 'CAT_FLASH_FILES' => 'Flash files',
'CAT_IMAGES' => 'Images',