Skip to content
This repository was archived by the owner on Sep 10, 2023. It is now read-only.

Commit 6e68ebd

Browse files
committed
New release pack p9 4.0.10.20 / 4.9.5 (neard/neard#443)
1 parent d63447f commit 6e68ebd

File tree

8 files changed

+313
-6
lines changed

8 files changed

+313
-6
lines changed

CHANGELOG.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,24 @@
11
# Changelog
22

3+
## r11 (2020/04/04)
4+
5+
* New release pack p9 4.0.10.20 / 4.9.5 (neard/neard#443)
6+
37
## r10 (2019/10/16)
48

5-
* New release pack p8 4.0.10.20 / 4.9.1 (Issue neard/neard#423)
9+
* New release pack p8 4.0.10.20 / 4.9.1 (neard/neard#423)
610

711
## r9 (2018/10/06)
812

9-
* New release pack p7 4.0.10.20 / 4.8.3 (Issue neard/neard#394)
13+
* New release pack p7 4.0.10.20 / 4.8.3 (neard/neard#394)
1014

1115
## r8 (2017/05/21)
1216

13-
* New release pack p6 4.0.10.20 / 4.4.15.10 / 4.7.0 (Issue neard/neard#259)
17+
* New release pack p6 4.0.10.20 / 4.4.15.10 / 4.7.0 (neard/neard#259)
1418

1519
## r7 (2017/01/24)
1620

17-
* New release pack p5 4.0.10.19 / 4.4.15.10 / 4.6.6 (Issue neard/neard#208)
21+
* New release pack p5 4.0.10.19 / 4.4.15.10 / 4.6.6 (neard/neard#208)
1822

1923
## r6 (2016/10/07)
2024

Lines changed: 142 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,142 @@
1+
<?php
2+
/* vim: set expandtab sw=4 ts=4 sts=4: */
3+
/**
4+
* phpMyAdmin sample configuration, you can use it as base for
5+
* manual configuration. For easier setup you can use setup/
6+
*
7+
* All directives are explained in documentation in the doc/ folder
8+
* or at <https://docs.phpmyadmin.net/>.
9+
*
10+
* @package PhpMyAdmin
11+
*/
12+
13+
/*
14+
* This is needed for cookie based authentication to encrypt password in
15+
* cookie. Needs to be 32 chars long.
16+
*/
17+
$cfg['blowfish_secret'] = 'JnavIRZwZf9b2JYTlC8AYDhXo9HRLN1s'; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */
18+
19+
/*
20+
* Servers configuration
21+
*/
22+
$i = 0;
23+
$mysqlPort = 3306;
24+
$mysqlRootUser = 'root';
25+
$mysqlRootPwd = '';
26+
$mariadbPort = 3307;
27+
$mariadbRootUser = 'root';
28+
$mariadbRootPwd = '';
29+
30+
/**
31+
* MySQL server
32+
*/
33+
$i++;
34+
35+
$cfg['Servers'][$i]['verbose'] = 'MySQL port ' . $mysqlPort;
36+
$cfg['Servers'][$i]['port'] = $mysqlPort;
37+
$cfg['Servers'][$i]['user'] = $mysqlRootUser;
38+
$cfg['Servers'][$i]['password'] = $mysqlRootPwd;
39+
$cfg['Servers'][$i]['auth_type'] = 'cookie';
40+
$cfg['Servers'][$i]['host'] = '127.0.0.1';
41+
$cfg['Servers'][$i]['connect_type'] = 'tcp';
42+
$cfg['Servers'][$i]['compress'] = false;
43+
$cfg['Servers'][$i]['extension'] = 'mysqli';
44+
$cfg['Servers'][$i]['AllowNoPassword'] = true;
45+
46+
/**
47+
* MariaDB server
48+
*/
49+
$i++;
50+
51+
$cfg['Servers'][$i]['verbose'] = 'MariaDB port ' . $mariadbPort;
52+
$cfg['Servers'][$i]['port'] = $mariadbPort;
53+
$cfg['Servers'][$i]['user'] = $mariadbRootUser;
54+
$cfg['Servers'][$i]['password'] = $mariadbRootPwd;
55+
$cfg['Servers'][$i]['auth_type'] = 'cookie';
56+
$cfg['Servers'][$i]['host'] = '127.0.0.1';
57+
$cfg['Servers'][$i]['connect_type'] = 'tcp';
58+
$cfg['Servers'][$i]['compress'] = false;
59+
$cfg['Servers'][$i]['extension'] = 'mysqli';
60+
$cfg['Servers'][$i]['AllowNoPassword'] = true;
61+
62+
/*
63+
* End of servers configuration
64+
*/
65+
66+
/*
67+
* Directories for saving/loading files from server
68+
*/
69+
$cfg['UploadDir'] = '';
70+
$cfg['SaveDir'] = '';
71+
72+
/**
73+
* Defines whether a user should be displayed a "show all (records)"
74+
* button in browse mode or not.
75+
* default = false
76+
*/
77+
//$cfg['ShowAll'] = true;
78+
79+
/**
80+
* Number of rows displayed when browsing a result set. If the result
81+
* set contains more rows, "Previous" and "Next".
82+
* default = 30
83+
*/
84+
//$cfg['MaxRows'] = 50;
85+
86+
/**
87+
* disallow editing of binary fields
88+
* valid values are:
89+
* false allow editing
90+
* 'blob' allow editing except for BLOB fields
91+
* 'noblob' disallow editing except for BLOB fields
92+
* 'all' disallow editing
93+
* default = blob
94+
*/
95+
//$cfg['ProtectBinary'] = 'false';
96+
97+
/**
98+
* Default language to use, if not browser-defined or user-defined
99+
* (you find all languages in the locale folder)
100+
* uncomment the desired line:
101+
* default = 'en'
102+
*/
103+
//$cfg['DefaultLang'] = 'en';
104+
//$cfg['DefaultLang'] = 'de';
105+
106+
/**
107+
* default display direction (horizontal|vertical|horizontalflipped)
108+
*/
109+
//$cfg['DefaultDisplay'] = 'vertical';
110+
111+
112+
/**
113+
* How many columns should be used for table display of a database?
114+
* (a value larger than 1 results in some information being hidden)
115+
* default = 1
116+
*/
117+
//$cfg['PropertiesNumColumns'] = 2;
118+
119+
/**
120+
* Set to true if you want DB-based query history.If false, this utilizes
121+
* JS-routines to display query history (lost by window close)
122+
*
123+
* This requires configuration storage enabled, see above.
124+
* default = false
125+
*/
126+
//$cfg['QueryHistoryDB'] = true;
127+
128+
/**
129+
* When using DB-based query history, how many entries should be kept?
130+
*
131+
* default = 25
132+
*/
133+
//$cfg['QueryHistoryMax'] = 100;
134+
135+
/*
136+
* You can find more configuration options in the documentation
137+
* in the doc/ folder or at <https://docs.phpmyadmin.net/>.
138+
*/
139+
$cfg['ServerDefault'] = 1;
140+
$cfg['ProtectBinary'] = 'false';
141+
142+
?>
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
phpmyadminVersion = "4.0.10.20"
2+
phpmyadminConf = "config.inc.php"
Lines changed: 151 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,151 @@
1+
<?php
2+
/* vim: set expandtab sw=4 ts=4 sts=4: */
3+
/**
4+
* phpMyAdmin sample configuration, you can use it as base for
5+
* manual configuration. For easier setup you can use setup/
6+
*
7+
* All directives are explained in documentation in the doc/ folder
8+
* or at <https://docs.phpmyadmin.net/>.
9+
*
10+
* @package PhpMyAdmin
11+
*/
12+
13+
/**
14+
* This is needed for cookie based authentication to encrypt password in
15+
* cookie. Needs to be 32 chars long.
16+
*/
17+
$cfg['blowfish_secret'] = 'JnavIRZwZf9b2JYTlC8AYDhXo9HRLN1s'; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */
18+
19+
/**
20+
* Servers configuration
21+
*/
22+
$i = 0;
23+
$mysqlPort = 3306;
24+
$mysqlRootUser = 'root';
25+
$mysqlRootPwd = '';
26+
$mariadbPort = 3307;
27+
$mariadbRootUser = 'root';
28+
$mariadbRootPwd = '';
29+
30+
/**
31+
* MySQL server
32+
*/
33+
$i++;
34+
35+
$cfg['Servers'][$i]['verbose'] = 'MySQL port ' . $mysqlPort;
36+
$cfg['Servers'][$i]['port'] = $mysqlPort;
37+
$cfg['Servers'][$i]['user'] = $mysqlRootUser;
38+
$cfg['Servers'][$i]['password'] = $mysqlRootPwd;
39+
$cfg['Servers'][$i]['auth_type'] = 'cookie';
40+
$cfg['Servers'][$i]['host'] = '127.0.0.1';
41+
$cfg['Servers'][$i]['connect_type'] = 'tcp';
42+
$cfg['Servers'][$i]['compress'] = false;
43+
$cfg['Servers'][$i]['extension'] = 'mysqli';
44+
$cfg['Servers'][$i]['AllowNoPassword'] = true;
45+
46+
/**
47+
* MariaDB server
48+
*/
49+
$i++;
50+
51+
$cfg['Servers'][$i]['verbose'] = 'MariaDB port ' . $mariadbPort;
52+
$cfg['Servers'][$i]['port'] = $mariadbPort;
53+
$cfg['Servers'][$i]['user'] = $mariadbRootUser;
54+
$cfg['Servers'][$i]['password'] = $mariadbRootPwd;
55+
$cfg['Servers'][$i]['auth_type'] = 'cookie';
56+
$cfg['Servers'][$i]['host'] = '127.0.0.1';
57+
$cfg['Servers'][$i]['connect_type'] = 'tcp';
58+
$cfg['Servers'][$i]['compress'] = false;
59+
$cfg['Servers'][$i]['extension'] = 'mysqli';
60+
$cfg['Servers'][$i]['AllowNoPassword'] = true;
61+
62+
/**
63+
* End of servers configuration
64+
*/
65+
66+
/**
67+
* Directories for saving/loading files from server
68+
*/
69+
$cfg['UploadDir'] = '';
70+
$cfg['SaveDir'] = '';
71+
72+
/**
73+
* Whether to display icons or text or both icons and text in table row
74+
* action segment. Value can be either of 'icons', 'text' or 'both'.
75+
* default = 'both'
76+
*/
77+
//$cfg['RowActionType'] = 'icons';
78+
79+
/**
80+
* Defines whether a user should be displayed a "show all (records)"
81+
* button in browse mode or not.
82+
* default = false
83+
*/
84+
//$cfg['ShowAll'] = true;
85+
86+
/**
87+
* Number of rows displayed when browsing a result set. If the result
88+
* set contains more rows, "Previous" and "Next".
89+
* Possible values: 25, 50, 100, 250, 500
90+
* default = 25
91+
*/
92+
//$cfg['MaxRows'] = 50;
93+
94+
/**
95+
* Disallow editing of binary fields
96+
* valid values are:
97+
* false allow editing
98+
* 'blob' allow editing except for BLOB fields
99+
* 'noblob' disallow editing except for BLOB fields
100+
* 'all' disallow editing
101+
* default = 'blob'
102+
*/
103+
//$cfg['ProtectBinary'] = false;
104+
105+
/**
106+
* Default language to use, if not browser-defined or user-defined
107+
* (you find all languages in the locale folder)
108+
* uncomment the desired line:
109+
* default = 'en'
110+
*/
111+
//$cfg['DefaultLang'] = 'en';
112+
//$cfg['DefaultLang'] = 'de';
113+
114+
/**
115+
* How many columns should be used for table display of a database?
116+
* (a value larger than 1 results in some information being hidden)
117+
* default = 1
118+
*/
119+
//$cfg['PropertiesNumColumns'] = 2;
120+
121+
/**
122+
* Set to true if you want DB-based query history.If false, this utilizes
123+
* JS-routines to display query history (lost by window close)
124+
*
125+
* This requires configuration storage enabled, see above.
126+
* default = false
127+
*/
128+
//$cfg['QueryHistoryDB'] = true;
129+
130+
/**
131+
* When using DB-based query history, how many entries should be kept?
132+
* default = 25
133+
*/
134+
//$cfg['QueryHistoryMax'] = 100;
135+
136+
/**
137+
* Whether or not to query the user before sending the error report to
138+
* the phpMyAdmin team when a JavaScript error occurs
139+
*
140+
* Available options
141+
* ('ask' | 'always' | 'never')
142+
* default = 'ask'
143+
*/
144+
//$cfg['SendErrorReports'] = 'always';
145+
146+
/**
147+
* You can find more configuration options in the documentation
148+
* in the doc/ folder or at <https://docs.phpmyadmin.net/>.
149+
*/
150+
$cfg['ServerDefault'] = 1;
151+
$cfg['ProtectBinary'] = 'false';

bin/phpmyadmin4p9/4.9.5/neard.conf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
phpmyadminVersion = "4.9.5"
2+
phpmyadminConf = "config.inc.php"

bin/phpmyadmin4p9/neard.conf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
php52 = "4.0.10.20"
2+
php53 = "4.0.10.20"
3+
php55 = "4.9.5"
4+
5+
bundleRelease = "@RELEASE_VERSION@"

build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
bundle.name = phpmyadmin
2-
bundle.release = r10
2+
bundle.release = r11
33
bundle.type = apps
44
bundle.format = 7z
55

releases.properties

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@
66
4p5 = https://github.com/neard/module-phpmyadmin/releases/download/r7/neard-phpmyadmin-4p5-r7.7z
77
4p6 = https://github.com/neard/module-phpmyadmin/releases/download/r8/neard-phpmyadmin-4p6-r8.7z
88
4p7 = https://github.com/neard/module-phpmyadmin/releases/download/r9/neard-phpmyadmin-4p7-r9.7z
9-
4p8 = https://github.com/neard/module-phpmyadmin/releases/download/r10/neard-phpmyadmin-4p8-r10.7z
9+
4p8 = https://github.com/neard/module-phpmyadmin/releases/download/r10/neard-phpmyadmin-4p8-r10.7z
10+
4p9 = https://github.com/neard/module-phpmyadmin/releases/download/r11/neard-phpmyadmin-4p9-r11.7z

0 commit comments

Comments
 (0)