basic-memory 0.2.6__tar.gz → 0.2.8__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of basic-memory might be problematic. Click here for more details.
- {basic_memory-0.2.6 → basic_memory-0.2.8}/.github/workflows/release.yml +3 -3
- {basic_memory-0.2.6 → basic_memory-0.2.8}/CHANGELOG.md +14 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/PKG-INFO +1 -1
- {basic_memory-0.2.6 → basic_memory-0.2.8}/installer/setup.py +14 -5
- {basic_memory-0.2.6 → basic_memory-0.2.8}/pyproject.toml +1 -1
- {basic_memory-0.2.6 → basic_memory-0.2.8}/.github/workflows/pr-title.yml +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/.github/workflows/test.yml +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/.gitignore +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/.python-version +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/CITATION.cff +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/CODE_OF_CONDUCT.md +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/CONTRIBUTING.md +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/LICENSE +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/Makefile +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/README.md +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/alembic.ini +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/basic-memory.md +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/installer/Basic.icns +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/installer/README.md +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/installer/icon.svg +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/installer/installer.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/installer/make_icons.sh +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/memory.json +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/scripts/install.sh +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/__init__.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/alembic/README +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/alembic/env.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/alembic/migrations.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/alembic/script.py.mako +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/alembic/versions/3dae7c7b1564_initial_schema.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/api/__init__.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/api/app.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/api/routers/__init__.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/api/routers/knowledge_router.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/api/routers/memory_router.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/api/routers/resource_router.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/api/routers/search_router.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/cli/__init__.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/cli/app.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/cli/commands/__init__.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/cli/commands/db.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/cli/commands/import_memory_json.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/cli/commands/mcp.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/cli/commands/status.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/cli/commands/sync.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/cli/main.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/config.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/db.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/deps.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/file_utils.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/markdown/__init__.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/markdown/entity_parser.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/markdown/markdown_processor.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/markdown/plugins.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/markdown/schemas.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/markdown/utils.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/mcp/__init__.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/mcp/async_client.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/mcp/server.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/mcp/tools/__init__.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/mcp/tools/knowledge.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/mcp/tools/memory.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/mcp/tools/notes.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/mcp/tools/search.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/mcp/tools/utils.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/models/__init__.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/models/base.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/models/knowledge.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/models/search.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/repository/__init__.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/repository/entity_repository.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/repository/observation_repository.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/repository/relation_repository.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/repository/repository.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/repository/search_repository.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/schemas/__init__.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/schemas/base.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/schemas/delete.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/schemas/discovery.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/schemas/memory.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/schemas/request.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/schemas/response.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/schemas/search.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/services/__init__.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/services/context_service.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/services/entity_service.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/services/exceptions.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/services/file_service.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/services/link_resolver.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/services/search_service.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/services/service.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/sync/__init__.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/sync/file_change_scanner.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/sync/sync_service.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/sync/utils.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/sync/watch_service.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/utils.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/tests/api/conftest.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/tests/api/test_knowledge_router.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/tests/api/test_memory_router.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/tests/api/test_resource_router.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/tests/api/test_search_router.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/tests/cli/test_import_memory_json.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/tests/cli/test_status.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/tests/cli/test_sync.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/tests/conftest.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/tests/edit_file_test.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/tests/markdown/__init__.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/tests/markdown/test_entity_parser.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/tests/markdown/test_markdown_plugins.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/tests/markdown/test_markdown_processor.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/tests/markdown/test_observation_edge_cases.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/tests/markdown/test_parser_edge_cases.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/tests/markdown/test_relation_edge_cases.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/tests/markdown/test_task_detection.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/tests/mcp/conftest.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/tests/mcp/test_tool_get_entity.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/tests/mcp/test_tool_knowledge.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/tests/mcp/test_tool_memory.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/tests/mcp/test_tool_notes.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/tests/mcp/test_tool_search.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/tests/mcp/test_tool_utils.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/tests/repository/test_entity_repository.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/tests/repository/test_observation_repository.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/tests/repository/test_relation_repository.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/tests/repository/test_repository.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/tests/schemas/test_memory_url.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/tests/schemas/test_schemas.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/tests/schemas/test_search.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/tests/services/test_context_service.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/tests/services/test_entity_service.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/tests/services/test_file_service.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/tests/services/test_link_resolver.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/tests/services/test_search_service.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/tests/sync/test_file_change_scanner.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/tests/sync/test_sync_service.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/tests/sync/test_watch_service.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/tests/test_basic_memory.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/tests/utils/test_file_utils.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/tests/utils/test_permalink_formatting.py +0 -0
- {basic_memory-0.2.6 → basic_memory-0.2.8}/uv.lock +0 -0
|
@@ -82,10 +82,10 @@ jobs:
|
|
|
82
82
|
- name: Build macOS installer
|
|
83
83
|
run: |
|
|
84
84
|
uv pip install -e ".[dev]"
|
|
85
|
-
|
|
86
|
-
uv run python setup.py bdist_mac
|
|
85
|
+
make installer-mac
|
|
87
86
|
# Remove quarantine attribute
|
|
88
|
-
|
|
87
|
+
cd installer/build
|
|
88
|
+
xattr -dr com.apple.quarantine "Basic Memory Installer.app"
|
|
89
89
|
|
|
90
90
|
- name: Zip macOS installer
|
|
91
91
|
run: |
|
|
@@ -1,6 +1,17 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
3
|
|
|
4
|
+
## v0.2.8 (2025-02-14)
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
## v0.2.7 (2025-02-14)
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
- Try to fix installer ci
|
|
12
|
+
([`230738e`](https://github.com/basicmachines-co/basic-memory/commit/230738ee9c110c0509e0a09cb0e101a92cfcb729))
|
|
13
|
+
|
|
14
|
+
|
|
4
15
|
## v0.2.6 (2025-02-14)
|
|
5
16
|
|
|
6
17
|
### Bug Fixes
|
|
@@ -8,6 +19,9 @@
|
|
|
8
19
|
- Bump project patch version
|
|
9
20
|
([`01d4672`](https://github.com/basicmachines-co/basic-memory/commit/01d46727b40c24b017ea9db4b741daef565ac73e))
|
|
10
21
|
|
|
22
|
+
- Fix installer setup.py change ci to use make
|
|
23
|
+
([`3e78fcc`](https://github.com/basicmachines-co/basic-memory/commit/3e78fcc2c208d83467fe7199be17174d7ffcad1a))
|
|
24
|
+
|
|
11
25
|
|
|
12
26
|
## v0.2.5 (2025-02-14)
|
|
13
27
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: basic-memory
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.8
|
|
4
4
|
Summary: Local-first knowledge management combining Zettelkasten with knowledge graphs
|
|
5
5
|
Project-URL: Homepage, https://github.com/basicmachines-co/basic-memory
|
|
6
6
|
Project-URL: Repository, https://github.com/basicmachines-co/basic-memory
|
|
@@ -4,7 +4,18 @@ import sys
|
|
|
4
4
|
# Build options for all platforms
|
|
5
5
|
build_exe_options = {
|
|
6
6
|
"packages": ["json", "pathlib"],
|
|
7
|
-
"excludes": [
|
|
7
|
+
"excludes": [
|
|
8
|
+
"tkinter",
|
|
9
|
+
"unittest",
|
|
10
|
+
"email",
|
|
11
|
+
"html",
|
|
12
|
+
"http",
|
|
13
|
+
"xml",
|
|
14
|
+
"pydoc",
|
|
15
|
+
"_tkinter",
|
|
16
|
+
"test"
|
|
17
|
+
],
|
|
18
|
+
"include_msvcr": False,
|
|
8
19
|
}
|
|
9
20
|
|
|
10
21
|
# Platform-specific options
|
|
@@ -14,18 +25,16 @@ if sys.platform == "win32":
|
|
|
14
25
|
"include_msvcr": True, # Include Visual C++ runtime
|
|
15
26
|
})
|
|
16
27
|
target_name = "Basic Memory Installer.exe"
|
|
17
|
-
icon = None # We'll add Windows icon later
|
|
18
28
|
else: # darwin
|
|
19
29
|
base = None # Don't use GUI base for macOS
|
|
20
30
|
target_name = "Basic Memory Installer"
|
|
21
|
-
icon = "Basic.icns"
|
|
22
31
|
|
|
23
32
|
executables = [
|
|
24
33
|
Executable(
|
|
25
34
|
script="installer.py",
|
|
26
35
|
target_name=target_name,
|
|
27
36
|
base=base,
|
|
28
|
-
icon=
|
|
37
|
+
icon="Basic.icns"
|
|
29
38
|
)
|
|
30
39
|
]
|
|
31
40
|
|
|
@@ -37,7 +46,7 @@ setup(
|
|
|
37
46
|
"build_exe": build_exe_options,
|
|
38
47
|
"bdist_mac": {
|
|
39
48
|
"bundle_name": "Basic Memory Installer",
|
|
40
|
-
"iconfile":
|
|
49
|
+
"iconfile": "Basic.icns"
|
|
41
50
|
}
|
|
42
51
|
},
|
|
43
52
|
executables=executables,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/cli/commands/import_memory_json.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/repository/observation_repository.py
RENAMED
|
File without changes
|
{basic_memory-0.2.6 → basic_memory-0.2.8}/src/basic_memory/repository/relation_repository.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|