mirror of
https://github.com/weechat/weechat.git
synced 2026-06-29 06:16:40 +02:00
script: set option script.scripts.cache_expire to 1440 by default
This commit is contained in:
@@ -88,6 +88,7 @@ http://weechat.org/files/releasenotes/ReleaseNotes-devel.html[release notes]
|
||||
* rmodifier: remove plugin (replaced by trigger)
|
||||
* ruby: fix crash when trying to load a directory with /ruby load
|
||||
* ruby: add detection of Ruby 2.1
|
||||
* script: set option script.scripts.cache_expire to 1440 by default
|
||||
* script: fix scroll on script buffer in the detailed view of script
|
||||
(closes #6)
|
||||
* scripts: fix crash when a signal is received with type "int" and NULL pointer
|
||||
|
||||
@@ -176,7 +176,7 @@
|
||||
* [[option_script.scripts.cache_expire]] *script.scripts.cache_expire*
|
||||
** Beschreibung: `Ablaufdatum des lokalen Caches, in Minuten (-1 = ohne Ablaufdatum, 0 = umgehend)`
|
||||
** Typ: integer
|
||||
** Werte: -1 .. 525600 (Standardwert: `60`)
|
||||
** Werte: -1 .. 525600 (Standardwert: `1440`)
|
||||
|
||||
* [[option_script.scripts.dir]] *script.scripts.dir*
|
||||
** Beschreibung: `lokales Cache-Verzeichnis für Skripten`
|
||||
|
||||
@@ -176,7 +176,7 @@
|
||||
* [[option_script.scripts.cache_expire]] *script.scripts.cache_expire*
|
||||
** description: `local cache expiration time, in minutes (-1 = never expires, 0 = always expire)`
|
||||
** type: integer
|
||||
** values: -1 .. 525600 (default value: `60`)
|
||||
** values: -1 .. 525600 (default value: `1440`)
|
||||
|
||||
* [[option_script.scripts.dir]] *script.scripts.dir*
|
||||
** description: `local cache directory for scripts`
|
||||
|
||||
@@ -176,7 +176,7 @@
|
||||
* [[option_script.scripts.cache_expire]] *script.scripts.cache_expire*
|
||||
** description: `temps d'expiration du cache local, en minutes (-1 = n'expire jamais, 0 = expire toujours)`
|
||||
** type: entier
|
||||
** valeurs: -1 .. 525600 (valeur par défaut: `60`)
|
||||
** valeurs: -1 .. 525600 (valeur par défaut: `1440`)
|
||||
|
||||
* [[option_script.scripts.dir]] *script.scripts.dir*
|
||||
** description: `répertoire du cache local pour les scripts`
|
||||
|
||||
@@ -176,7 +176,7 @@
|
||||
* [[option_script.scripts.cache_expire]] *script.scripts.cache_expire*
|
||||
** descrizione: `local cache expiration time, in minutes (-1 = never expires, 0 = always expire)`
|
||||
** tipo: intero
|
||||
** valori: -1 .. 525600 (valore predefinito: `60`)
|
||||
** valori: -1 .. 525600 (valore predefinito: `1440`)
|
||||
|
||||
* [[option_script.scripts.dir]] *script.scripts.dir*
|
||||
** descrizione: `directory locale della cache per gli script`
|
||||
|
||||
@@ -176,7 +176,7 @@
|
||||
* [[option_script.scripts.cache_expire]] *script.scripts.cache_expire*
|
||||
** 説明: `ローカルキャッシュが無効になる時間、分単位 (-1 = 再取得しない、0 = 常に再取得)`
|
||||
** タイプ: 整数
|
||||
** 値: -1 .. 525600 (デフォルト値: `60`)
|
||||
** 値: -1 .. 525600 (デフォルト値: `1440`)
|
||||
|
||||
* [[option_script.scripts.dir]] *script.scripts.dir*
|
||||
** 説明: `スクリプトのローカルキャッシュディレクトリ`
|
||||
|
||||
@@ -176,7 +176,7 @@
|
||||
* [[option_script.scripts.cache_expire]] *script.scripts.cache_expire*
|
||||
** opis: `lokalnie zapisany czas wygaśnięcia, w minutach (-1 = nigdy nie wygasa, 0 = zawsze wygasa)`
|
||||
** typ: liczba
|
||||
** wartości: -1 .. 525600 (domyślna wartość: `60`)
|
||||
** wartości: -1 .. 525600 (domyślna wartość: `1440`)
|
||||
|
||||
* [[option_script.scripts.dir]] *script.scripts.dir*
|
||||
** opis: `lokalny katalog dla skryptów`
|
||||
|
||||
@@ -683,7 +683,7 @@ script_config_init ()
|
||||
"cache_expire", "integer",
|
||||
N_("local cache expiration time, in minutes (-1 = never expires, "
|
||||
"0 = always expire)"),
|
||||
NULL, -1, 525600, "60", NULL, 0, NULL, NULL,
|
||||
NULL, -1, 525600, "1440", NULL, 0, NULL, NULL,
|
||||
NULL, NULL, NULL, NULL);
|
||||
script_config_scripts_dir = weechat_config_new_option (
|
||||
script_config_file, ptr_section,
|
||||
|
||||
Reference in New Issue
Block a user