Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 431793b

Browse files
committed
moved changelog to separate file, updated screenshots
1 parent 882e8ff commit 431793b

File tree

2 files changed

+74
-61
lines changed

2 files changed

+74
-61
lines changed

‎README.md‎

Lines changed: 3 additions & 61 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
![](http://phpminiadmin.sourceforge.net/img/scr_select_from_table.gif)
22

3-
[other screenshots are here](http://sourceforge.net/project/screenshots.php?group_id=181023)
3+
[other screenshots are here](https://sourceforge.net/projects/phpminiadmin/#screenshots)
44

55
## How to Install
66
- Download phpminiadmin.php file
@@ -31,7 +31,7 @@ In the directory samples you'll find phpminiconfig.php for known OpenSource pack
3131
- [My website](http://osalabs.com)
3232

3333
## Change Log
34-
### changes in phpMiniAdmin 1.9.170203
34+
### changes in phpMiniAdmin 1.9.170203 (latest)
3535
- added "compact view" option. If checked - width/height of grid cells limited, so you can see more rows/columns in case your data is large. And in this mode you can double-click on cells to "expand" just that particular cell.
3636

3737
### changes in phpMiniAdmin 1.9.170117
@@ -42,63 +42,5 @@ In the directory samples you'll find phpminiconfig.php for known OpenSource pack
4242
- added ability to import from .sql or .gz file right on server, without need to upload one
4343
- fixed export, now it won't dump data for VIEWs
4444

45-
### changes in phpMiniAdmin 1.9.160705
46-
- screen appearance changes/fixes
47-
- added buttons which inserts standard "template" queries for Select, Insert, Update, Delete
48-
- disabled counting total number of records for pagination as it slows down response, especially on large datasets. Set `$IS_COUNT=true` to enable this feature back.
49-
50-
### changes in phpMiniAdmin 1.9.160630
51-
52-
- all queries now base64 encoded to bypass applications firewalls. Note, **IE10 browser or later required from now**
53-
- SHOW TABLE STATUS fixed to display views, also Comments column added
54-
- fixed Settings/Login/Logoff
55-
56-
### changes in phpMiniAdmin 1.9.150729
57-
58-
- switched to MySQLi because MySQL extension deprecated in PHP7
59-
60-
### changes in phpMiniAdmin 1.9.150108
61-
62-
- httponly cookies so your plain password cannot be stolen by javascript
63-
- export disables foreign key checks
64-
- ask for super privilege(otherwise you get a error on import)
65-
- added support for a config file with credentials
66-
67-
### changes in phpMiniAdmin 1.9.141219
68-
69-
- added: total count of records displayed for selects with pagination (example: 50 out of 104)
70-
- fixed: labels on forms, so inputs can be correctly narrated for blind users
71-
72-
### changes in phpMiniAdmin 1.9.140405
73-
74-
- fixed: couple low risk XSS vulnerabilities
75-
- fixed: CSV export in UTF-8
76-
- added: ability to quickly create new database without SQL knowledge
77-
- added: autofocus to login pwd field
78-
- added: some minor compatibility changes for PHP 4.x
79-
- changed: yellow row highlight removed if clicked again
80-
- changed: if field contains binary data (char codes < 32), only first 16 hex will be displayed (if you want to dump full content - select just one this field)
81-
82-
### changes in phpMiniAdmin 1.8.120510
83-
84-
- fixed: Undefined offset in get_rand_str
85-
- fixed: automatic relogin on XSS error
86-
- added: page navigator at the bottom
87-
- added: row counts, table sizes on the table list
88-
- added: MIT license
89-
- added: query history via browser's localStorage
90-
- added: if database empty - show databases
91-
- added: after import - show tables
92-
- changed: moved from html 4.01 to html 5
93-
- changed: simplified settings form
94-
95-
### changes in phpMiniAdmin 1.7.111025
96-
97-
- fixed: unable to relogin on XSS error
98-
- fixed: truncate button doesn't work
99-
- minor changes in text labels and css styles
100-
101-
### changes in phpMiniAdmin 1.7.110429
102-
103-
- added: import/export to/from gzip compressed files (.gz)
45+
[see older changes in changelog](changelog.md)
10446

‎changelog.md‎

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
### changes in phpMiniAdmin 1.9.170203 (latest)
2+
- added "compact view" option. If checked - width/height of grid cells limited, so you can see more rows/columns in case your data is large. And in this mode you can double-click on cells to "expand" just that particular cell.
3+
4+
### changes in phpMiniAdmin 1.9.170117
5+
- greatly optimized memory usage for large result sets (especially in export)
6+
7+
### changes in phpMiniAdmin 1.9.161116
8+
- added ability to dump exports right on server, without need to download
9+
- added ability to import from .sql or .gz file right on server, without need to upload one
10+
- fixed export, now it won't dump data for VIEWs
11+
12+
### changes in phpMiniAdmin 1.9.160705
13+
- screen appearance changes/fixes
14+
- added buttons which inserts standard "template" queries for Select, Insert, Update, Delete
15+
- disabled counting total number of records for pagination as it slows down response, especially on large datasets. Set `$IS_COUNT=true` to enable this feature back.
16+
17+
### changes in phpMiniAdmin 1.9.160630
18+
19+
- all queries now base64 encoded to bypass applications firewalls. Note, **IE10 browser or later required from now**
20+
- SHOW TABLE STATUS fixed to display views, also Comments column added
21+
- fixed Settings/Login/Logoff
22+
23+
### changes in phpMiniAdmin 1.9.150729
24+
25+
- switched to MySQLi because MySQL extension deprecated in PHP7
26+
27+
### changes in phpMiniAdmin 1.9.150108
28+
29+
- httponly cookies so your plain password cannot be stolen by javascript
30+
- export disables foreign key checks
31+
- ask for super privilege(otherwise you get a error on import)
32+
- added support for a config file with credentials
33+
34+
### changes in phpMiniAdmin 1.9.141219
35+
36+
- added: total count of records displayed for selects with pagination (example: 50 out of 104)
37+
- fixed: labels on forms, so inputs can be correctly narrated for blind users
38+
39+
### changes in phpMiniAdmin 1.9.140405
40+
41+
- fixed: couple low risk XSS vulnerabilities
42+
- fixed: CSV export in UTF-8
43+
- added: ability to quickly create new database without SQL knowledge
44+
- added: autofocus to login pwd field
45+
- added: some minor compatibility changes for PHP 4.x
46+
- changed: yellow row highlight removed if clicked again
47+
- changed: if field contains binary data (char codes < 32), only first 16 hex will be displayed (if you want to dump full content - select just one this field)
48+
49+
### changes in phpMiniAdmin 1.8.120510
50+
51+
- fixed: Undefined offset in get_rand_str
52+
- fixed: automatic relogin on XSS error
53+
- added: page navigator at the bottom
54+
- added: row counts, table sizes on the table list
55+
- added: MIT license
56+
- added: query history via browser's localStorage
57+
- added: if database empty - show databases
58+
- added: after import - show tables
59+
- changed: moved from html 4.01 to html 5
60+
- changed: simplified settings form
61+
62+
### changes in phpMiniAdmin 1.7.111025
63+
64+
- fixed: unable to relogin on XSS error
65+
- fixed: truncate button doesn't work
66+
- minor changes in text labels and css styles
67+
68+
### changes in phpMiniAdmin 1.7.110429
69+
70+
- added: import/export to/from gzip compressed files (.gz)
71+

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /