Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
libaacs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
VideoLAN
libaacs
Commits
6b3f05c9
Commit
6b3f05c9
authored
May 04, 2017
by
npzacs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
0.9.0 release
parent
f373aa1c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
5 deletions
+12
-5
ChangeLog
ChangeLog
+7
-0
configure.ac
configure.ac
+5
-5
No files found.
ChangeLog
View file @
6b3f05c9
2017-05-04: Version 0.9.0
- Add aacs_decrypt_bus().
- Add aacs_get_bdj_root_cert_hash().
- Add aacs_get_content_cert_id().
- Add support for unencrypted content in AACS-enabled discs.
- Improve error resilience.
- Improve support for broken discs (use on-disc backup files).
- Verify content certificate signature.
- Load and merge multiple KEYDB.cfg files.
- Fix build with gcrypt < 1.6.0.
- Fix possible crash (debug log output that includes discid)
- Fix config file path issues in Windows (non-ASCII paths)
- Fix dll exports in Windows.
- Fix resource leaks.
- Reduced memory footprint.
2015-03-13: Version 0.8.1
- Accept NULL mount / device path when application handles file system access.
...
...
configure.ac
View file @
6b3f05c9
dnl library version number
m4_define([aacs_major], 0)
m4_define([aacs_minor],
8
)
m4_define([aacs_micro],
1
)
m4_define([aacs_minor],
9
)
m4_define([aacs_micro],
0
)
m4_define([aacs_version],[aacs_major.aacs_minor.aacs_micro])
dnl shared library version (.so version)
...
...
@@ -14,9 +14,9 @@ dnl - If ABI is broken, increase current and set age and revision to 0.
dnl
dnl Library file name will be libaacs.(current-age).age.revision
m4_define([lt_current],
5
)
m4_define([lt_age],
5
)
m4_define([lt_revision],
1
)
m4_define([lt_current],
6
)
m4_define([lt_age],
6
)
m4_define([lt_revision],
0
)
dnl initilization
AC_INIT([libaacs], aacs_version, [http://www.videolan.org/developers/libaacs.html])
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment