Skip to content
This repository was archived by the owner on Jul 27, 2024. It is now read-only.

Commit b1b94b3

Browse files
committed
fix: version
1 parent b90c5cd commit b1b94b3

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
</p>
66

77
Rokahon (or ローカル本) is a simple server for your local gallery, you can
8-
browse local files through apps similar to Mihon or use it as a simple REST server.
8+
browse local files through apps similar to Mihon or use it as a simple REST
9+
server.
910

1011
## Rokahon server
1112

@@ -15,6 +16,7 @@ For example, with the configuration..
1516

1617
```json
1718
{
19+
"VERSION": "0.1.0",
1820
"PORT": 1770,
1921
"CACHE": true,
2022
"LIBRARY_ROOT": [

rokahon-server/src/utils/utils.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@ export function comparePath(a: string, b: string): number {
105105
}
106106

107107
/**
108-
* Attempt to sort in numerical order in ascending order,
109-
* otherwise try to order from recent to old
108+
* Attempt to sort numerically from low to high,
109+
* otherwise from recent to old
110110
*/
111111
export function comparePathByNumOrder(a: string, b: string): number {
112112
const locale = a.localeCompare(b);

0 commit comments

Comments
 (0)