mirror of
				https://github.com/paperless-ngx/paperless-ngx.git
				synced 2025-10-30 03:56:23 -05:00 
			
		
		
		
	fixes #134
This commit is contained in:
		| @@ -28,6 +28,7 @@ paperless-ng 0.9.7 | |||||||
|   * The ``document_retagger`` no longer removes inbox tags or tags without matching rules. |   * The ``document_retagger`` no longer removes inbox tags or tags without matching rules. | ||||||
|   * The new configuration option ``PAPERLESS_COOKIE_PREFIX`` allows you to run multiple instances of paperless on different ports. |   * The new configuration option ``PAPERLESS_COOKIE_PREFIX`` allows you to run multiple instances of paperless on different ports. | ||||||
|     This option enables you to be logged in into multiple instances by specifying different cookie names for each instance. |     This option enables you to be logged in into multiple instances by specifying different cookie names for each instance. | ||||||
|  |   * Added a small version indicator to the front end. | ||||||
|  |  | ||||||
| * Fixes | * Fixes | ||||||
|    |    | ||||||
| @@ -38,6 +39,7 @@ paperless-ng 0.9.7 | |||||||
|     Paperless now assumes A4 paper size for PDF generation if no DPI information is present. |     Paperless now assumes A4 paper size for PDF generation if no DPI information is present. | ||||||
|   * Documents with empty titles could not be opened from the table view due to the link being empty. |   * Documents with empty titles could not be opened from the table view due to the link being empty. | ||||||
|   * Fixed an issue with filenames containing special characters such as ``:`` not being accepted for upload. |   * Fixed an issue with filenames containing special characters such as ``:`` not being accepted for upload. | ||||||
|  |   * Fixed issues with thumbnail generation for plain text files. | ||||||
|  |  | ||||||
|  |  | ||||||
| paperless-ng 0.9.6 | paperless-ng 0.9.6 | ||||||
|   | |||||||
| @@ -17,6 +17,11 @@ | |||||||
| <div class="container-fluid"> | <div class="container-fluid"> | ||||||
|   <div class="row"> |   <div class="row"> | ||||||
|     <nav id="sidebarMenu" class="col-md-3 col-lg-2 d-md-block bg-light sidebar collapse" [ngbCollapse]="isMenuCollapsed"> |     <nav id="sidebarMenu" class="col-md-3 col-lg-2 d-md-block bg-light sidebar collapse" [ngbCollapse]="isMenuCollapsed"> | ||||||
|  |  | ||||||
|  |       <div style="position: absolute; bottom: 0; left: 0;" class="text-muted p-1"> | ||||||
|  |         {{versionString}} | ||||||
|  |       </div> | ||||||
|  |  | ||||||
|       <div class="sidebar-sticky pt-3"> |       <div class="sidebar-sticky pt-3"> | ||||||
|         <ul class="nav flex-column"> |         <ul class="nav flex-column"> | ||||||
|           <li class="nav-item"> |           <li class="nav-item"> | ||||||
|   | |||||||
| @@ -7,6 +7,7 @@ import { PaperlessDocument } from 'src/app/data/paperless-document'; | |||||||
| import { OpenDocumentsService } from 'src/app/services/open-documents.service'; | import { OpenDocumentsService } from 'src/app/services/open-documents.service'; | ||||||
| import { SavedViewService } from 'src/app/services/rest/saved-view.service'; | import { SavedViewService } from 'src/app/services/rest/saved-view.service'; | ||||||
| import { SearchService } from 'src/app/services/rest/search.service'; | import { SearchService } from 'src/app/services/rest/search.service'; | ||||||
|  | import { environment } from 'src/environments/environment'; | ||||||
| import { DocumentDetailComponent } from '../document-detail/document-detail.component'; | import { DocumentDetailComponent } from '../document-detail/document-detail.component'; | ||||||
|    |    | ||||||
| @Component({ | @Component({ | ||||||
| @@ -25,6 +26,8 @@ export class AppFrameComponent implements OnInit, OnDestroy { | |||||||
|     ) { |     ) { | ||||||
|   } |   } | ||||||
|  |  | ||||||
|  |   versionString = `${environment.appTitle} ${environment.version}` | ||||||
|  |  | ||||||
|   isMenuCollapsed: boolean = true |   isMenuCollapsed: boolean = true | ||||||
|  |  | ||||||
|   closeMenu() { |   closeMenu() { | ||||||
|   | |||||||
| @@ -1,5 +1,6 @@ | |||||||
| export const environment = { | export const environment = { | ||||||
|   production: true, |   production: true, | ||||||
|   apiBaseUrl: "/api/", |   apiBaseUrl: "/api/", | ||||||
|   appTitle: "Paperless-ng" |   appTitle: "Paperless-ng", | ||||||
|  |   version: "0.9.7" | ||||||
| }; | }; | ||||||
|   | |||||||
| @@ -5,7 +5,8 @@ | |||||||
| export const environment = { | export const environment = { | ||||||
|   production: false, |   production: false, | ||||||
|   apiBaseUrl: "http://localhost:8000/api/", |   apiBaseUrl: "http://localhost:8000/api/", | ||||||
|   appTitle: "DEVELOPMENT P-NG" |   appTitle: "Paperless-ng", | ||||||
|  |   version: "DEVELOPMENT" | ||||||
| }; | }; | ||||||
|  |  | ||||||
| /* | /* | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 jonaswinkler
					jonaswinkler