Skip to content

Commit 865ef39

Browse files
[CAP-1547] Increase title length limit to 255 characters (#106)
1 parent f8ebfe3 commit 865ef39

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

build.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ setlocal
44
set BUILD_DIR64="build64"
55
set BUILD_DIR32="build32"
66
set DEST_DIR="dist"
7-
set PACKAGE_NAME="libcaffeine-v0.6.5-windows"
7+
set PACKAGE_NAME="libcaffeine-v0.6.6-windows"
88
set BIN_DIR64="%PACKAGE_NAME%\bin64"
99
set LIB_DIR64="%PACKAGE_NAME%\lib64"
1010
set BIN_DIR32="%PACKAGE_NAME%\bin32"

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
# define constants
77
BUILD_DIR="build"
8-
PACKAGE_NAME="libcaffeine-v0.7-macos"
8+
PACKAGE_NAME="libcaffeine-v0.6.6-macos"
99
BIN_DIR="$PACKAGE_NAME/bin$(getconf LONG_BIT)"
1010
LIB_DIR="$PACKAGE_NAME/lib$(getconf LONG_BIT)"
1111

src/Policy.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ namespace caff {
3232
// Stage
3333
char constexpr defaultTitle[] = "LIVE on Caffeine!";
3434
char constexpr seventeenPlusTag[] = "[17+] ";
35-
size_t constexpr maxTitleLength = 60;
35+
size_t constexpr maxTitleLength = 255;
3636

3737

3838
// Helpers

0 commit comments

Comments
 (0)