TC

TC synced commits to v2.025 at TC/arozos-mirror from mirror

6 dienas atpakaļ

TC synced commits to v2.025 at TC/arozos-mirror from mirror

  • ca9cb34dd7 Add AGI zip library and improve image loading UX

1 nedēļu atpakaļ

TC synced commits to v2.025 at TC/arozos-mirror from mirror

  • f105a00b3c Photo app compression feature - Added photo app compress file serve feature to reduce load time for large photo files
  • c748c9095e Fixed TFTP UI bug
  • ea2529f385 Replaced .system with .html file extension - Deprecated the use of .system file extension - Updated tftp icon in system settings
  • Salīdzināt šīs 3 revīzijas »

1 nedēļu atpakaļ

TC synced commits to v2.025 at TC/arozos-mirror from mirror

  • 6fc5f9f27a Added TFTP server - Added basic TFTP server function - Added user list API without icon - Added more utils for GET parameters
  • 541af30c98 Added personal homepage localization - Added location - Added hash state for system setting
  • 2785b917fc Added support for webp thumbnail generation
  • 24c763d431 Updated version number
  • e744fb87c7 Bump golang.org/x/crypto from 0.44.0 to 0.45.0 in /src (#201) Bumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.44.0 to 0.45.0. - [Commits](https://github.com/golang/crypto/compare/v0.44.0...v0.45.0) --- updated-dependencies: - dependency-name: golang.org/x/crypto dependency-version: 0.45.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Salīdzināt šīs 10 revīzijas »

1 nedēļu atpakaļ

TC synced new reference v2.025 to TC/arozos-mirror from mirror

1 nedēļu atpakaļ

TC synced commits to master at TC/arozos-mirror from mirror

  • e744fb87c7 Bump golang.org/x/crypto from 0.44.0 to 0.45.0 in /src (#201) Bumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.44.0 to 0.45.0. - [Commits](https://github.com/golang/crypto/compare/v0.44.0...v0.45.0) --- updated-dependencies: - dependency-name: golang.org/x/crypto dependency-version: 0.45.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

2 nedēļas atpakaļ

TC synced and deleted reference dependabot/go_modules/src/golang.org/x/crypto-0.45.0 at TC/arozos-mirror from mirror

2 nedēļas atpakaļ

TC synced commits to dependabot/go_modules/src/golang.org/x/crypto-0.45.0 at TC/arozos-mirror from mirror

  • 537ea96424 Bump golang.org/x/crypto from 0.44.0 to 0.45.0 in /src Bumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.44.0 to 0.45.0. - [Commits](https://github.com/golang/crypto/compare/v0.44.0...v0.45.0) --- updated-dependencies: - dependency-name: golang.org/x/crypto dependency-version: 0.45.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
  • 44fa50a2ff Updated photo viewing module to render ARW DNG and CR2 (#200) * Added ARW CR2 and DNG support Added ARW CR2 and DNG support * Centralize RAW format definitions and fix filepath.Ext issue Fixed two maintainability issues: 1. **Fixed potential panic in mediaserver.go**: - Replaced unsafe string indexing: filepath[strings.LastIndex(filepath, "."):] - Now uses filepath.Ext() which safely handles files without extensions - Prevents index out of bounds panic 2. **Centralized RAW format definitions**: Backend (Go): - Added metadata.RawImageFormats constant - Added metadata.IsRawImageFile() helper function - Updated metadata.go to use constant - Updated mediaserver.go to use helper function - Single source of truth: src/mod/filesystem/metadata/metadata.go Frontend (JavaScript): - Created src/web/Photo/constants.js with RAW_IMAGE_EXTENSIONS - Added isRawImage() helper function - Updated all files to use shared constant: * init.agi - module registration * photo.js - main photo viewer * backend/listFolder.js - folder listing * embedded/listNearbyImage.js - embedded viewer - Added script tags to index.html and embedded.html Benefits: - Single place to add new RAW formats in future - Consistent behavior across frontend and backend - No more scattered hardcoded extension lists - Safer filepath handling (no panic on edge cases) RAW formats remain: ARW, CR2, DNG, NEF, RAF, ORF * Updated backend script --------- Co-authored-by: Claude <noreply@anthropic.com>
  • 3cb383bc81 V2.024 (#198) * Removed neralnet and optimized folder thumbnail - Removed neural net and its AGI components - Improved folder rendering logic * feat(login): add locale support for login page (#197) * feat(login): add locale support for login page * refactor: make login locale self-contained --------- Co-authored-by: pi-dal <pi-dal@pi-dals-MacBook-Air.local> * Updated Manga App design - Updated Manga app design - Optimized login locale deisgn * Update viewComic.html * Add EXIF extraction to image library and Manga UI improvements - Photo app upgrade - Manga app UI upgrade - Added EXIF support in agi * Add AGI module documentation * Add zoom, pan, and hash-based photo restore Introduces zoom and pan functionality for photo viewer images, including double-click, mouse wheel, drag, and touch gestures. Adds a zoom snackbar UI and reset button. Implements hash-based restoration of photo view state, allowing direct linking to specific photos and restoring viewer state on page load or navigation. Updates UI for mobile info panel toggling and improves menu and button styling. --------- Co-authored-by: pi-dal <hi@pi-dal.com> Co-authored-by: pi-dal <pi-dal@pi-dals-MacBook-Air.local>
  • 5191409810 Merge branch 'master' of https://github.com/tobychui/arozos
  • 14fbdb9c9f Update dependencies and remove NFS server module Upgraded Go version and multiple dependencies in go.mod and go.sum for improved compatibility and security. Removed the deprecated NFS server module and related license file, added new locale JSON files, and updated several web and backend modules to reflect these changes.
  • Salīdzināt šīs 10 revīzijas »

2 nedēļas atpakaļ

TC synced new reference dependabot/go_modules/src/golang.org/x/crypto-0.45.0 to TC/arozos-mirror from mirror

2 nedēļas atpakaļ

TC synced commits to master at TC/arozos-mirror from mirror

  • 44fa50a2ff Updated photo viewing module to render ARW DNG and CR2 (#200) * Added ARW CR2 and DNG support Added ARW CR2 and DNG support * Centralize RAW format definitions and fix filepath.Ext issue Fixed two maintainability issues: 1. **Fixed potential panic in mediaserver.go**: - Replaced unsafe string indexing: filepath[strings.LastIndex(filepath, "."):] - Now uses filepath.Ext() which safely handles files without extensions - Prevents index out of bounds panic 2. **Centralized RAW format definitions**: Backend (Go): - Added metadata.RawImageFormats constant - Added metadata.IsRawImageFile() helper function - Updated metadata.go to use constant - Updated mediaserver.go to use helper function - Single source of truth: src/mod/filesystem/metadata/metadata.go Frontend (JavaScript): - Created src/web/Photo/constants.js with RAW_IMAGE_EXTENSIONS - Added isRawImage() helper function - Updated all files to use shared constant: * init.agi - module registration * photo.js - main photo viewer * backend/listFolder.js - folder listing * embedded/listNearbyImage.js - embedded viewer - Added script tags to index.html and embedded.html Benefits: - Single place to add new RAW formats in future - Consistent behavior across frontend and backend - No more scattered hardcoded extension lists - Safer filepath handling (no panic on edge cases) RAW formats remain: ARW, CR2, DNG, NEF, RAF, ORF * Updated backend script --------- Co-authored-by: Claude <noreply@anthropic.com>

2 nedēļas atpakaļ

TC synced commits to v2.024 at TC/arozos-mirror from mirror

2 nedēļas atpakaļ

TC synced new reference v2.024 to TC/arozos-mirror from mirror

2 nedēļas atpakaļ

TC synced commits to master at TC/arozos-mirror from mirror

  • 3cb383bc81 V2.024 (#198) * Removed neralnet and optimized folder thumbnail - Removed neural net and its AGI components - Improved folder rendering logic * feat(login): add locale support for login page (#197) * feat(login): add locale support for login page * refactor: make login locale self-contained --------- Co-authored-by: pi-dal <pi-dal@pi-dals-MacBook-Air.local> * Updated Manga App design - Updated Manga app design - Optimized login locale deisgn * Update viewComic.html * Add EXIF extraction to image library and Manga UI improvements - Photo app upgrade - Manga app UI upgrade - Added EXIF support in agi * Add AGI module documentation * Add zoom, pan, and hash-based photo restore Introduces zoom and pan functionality for photo viewer images, including double-click, mouse wheel, drag, and touch gestures. Adds a zoom snackbar UI and reset button. Implements hash-based restoration of photo view state, allowing direct linking to specific photos and restoring viewer state on page load or navigation. Updates UI for mobile info panel toggling and improves menu and button styling. --------- Co-authored-by: pi-dal <hi@pi-dal.com> Co-authored-by: pi-dal <pi-dal@pi-dals-MacBook-Air.local>

2 nedēļas atpakaļ

TC synced and deleted reference v2.024 at TC/arozos-mirror from mirror

2 nedēļas atpakaļ

TC synced commits to v2.024 at TC/arozos-mirror from mirror

2 nedēļas atpakaļ

TC synced commits to v2.024 at TC/arozos-mirror from mirror

1 mēnesi atpakaļ

TC synced commits to v2.024 at TC/arozos-mirror from mirror

  • 6304a646a5 Updated Manga App design - Updated Manga app design - Optimized login locale deisgn
  • 0842d24e7c feat(login): add locale support for login page (#197) * feat(login): add locale support for login page * refactor: make login locale self-contained --------- Co-authored-by: pi-dal <pi-dal@pi-dals-MacBook-Air.local>
  • Salīdzināt šīs 2 revīzijas »

1 mēnesi atpakaļ

TC synced commits to v2.024 at TC/arozos-mirror from mirror

  • 8802f298fc Removed neralnet and optimized folder thumbnail - Removed neural net and its AGI components - Improved folder rendering logic
  • 5191409810 Merge branch 'master' of https://github.com/tobychui/arozos
  • 14fbdb9c9f Update dependencies and remove NFS server module Upgraded Go version and multiple dependencies in go.mod and go.sum for improved compatibility and security. Removed the deprecated NFS server module and related license file, added new locale JSON files, and updated several web and backend modules to reflect these changes.
  • 41847816d0 Bump golang.org/x/crypto from 0.21.0 to 0.35.0 in /src (#192) Bumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.21.0 to 0.35.0. - [Commits](https://github.com/golang/crypto/compare/v0.21.0...v0.35.0) --- updated-dependencies: - dependency-name: golang.org/x/crypto dependency-version: 0.35.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Toby Chui <tobychui@users.noreply.github.com>
  • 8af262a067 Bump github.com/cloudflare/circl from 1.3.7 to 1.6.1 in /src (#193) Bumps [github.com/cloudflare/circl](https://github.com/cloudflare/circl) from 1.3.7 to 1.6.1. - [Release notes](https://github.com/cloudflare/circl/releases) - [Commits](https://github.com/cloudflare/circl/compare/v1.3.7...v1.6.1) --- updated-dependencies: - dependency-name: github.com/cloudflare/circl dependency-version: 1.6.1 dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Toby Chui <tobychui@users.noreply.github.com>
  • Salīdzināt šīs 10 revīzijas »

1 mēnesi atpakaļ

TC synced new reference v2.024 to TC/arozos-mirror from mirror

1 mēnesi atpakaļ

TC synced commits to v2.023 at TC/arozos-mirror from mirror

1 mēnesi atpakaļ